/* ===================================
   RESET AND BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #334155;
    overflow-x: hidden;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
}

h1 {
    font-size: 2.5rem;
}
h2 {
    font-size: 2rem;
}
h3 {
    font-size: 1.5rem;
}

/* ===================================
   NAVIGATION STYLES
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: #e2e8f0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: #7c3aed;
    font-weight: 800;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo h2 a {
    color: inherit;
    text-decoration: none;
}

.logo h2:hover {
    color: #6d28d9;
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #7c3aed;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, #7c3aed, #ec4899);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-btn {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    white-space: nowrap;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: none;
    border: none;
}

.hamburger:hover {
    background: rgba(124, 58, 237, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #7c3aed;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ===================================
   BUTTON STYLES
   =================================== */
.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: inherit;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
    background: linear-gradient(135deg, #6d28d9 0%, #db2777 100%);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: white;
}

.btn-learn-more,
.btn-quote {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-align: center;
    cursor: pointer;
    border: none;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-quote {
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.btn-learn-more {
    background: transparent;
    color: #7c3aed;
    border: 2px solid #7c3aed;
}

.btn-learn-more:hover {
    background: #7c3aed;
    color: white;
    transform: translateY(-2px);
}

/* ===================================
   HERO SECTION
   =================================== */
.service-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f59e0b 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.service-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.service-hero-text {
    color: white;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb i {
    font-size: 0.7rem;
}

.service-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.service-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.service-hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.service-hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.service-hero-visual {
    position: relative;
    height: 500px;
}

.service-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    z-index: 1;
}

/* ===================================
   DESIGN ARTBOARD STYLES
   =================================== */
.design-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.design-artboard {
    position: relative;
    z-index: 2;
    width: 420px;
    max-width: 100%;
    background: white;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.4s ease;
}

.design-artboard:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.design-toolbar {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 1.1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.design-controls {
    display: flex;
    gap: 0.6rem;
}

.control {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.control.red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.control.yellow {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
}

.control.green {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.control:hover {
    transform: scale(1.2);
}

.design-title {
    color: #374151;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.design-body {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.design-sidebar {
    padding: 1rem;
    border-right: 1px solid #e2e8f0;
    background: #f8fafc;
}

.design-layer {
    padding: 0.55rem 0.75rem;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 600;
    border: 2px solid transparent;
    margin-bottom: 0.5rem;
    transition: all 0.25s ease;
    cursor: default;
}

.design-layer:hover {
    background: white;
    border-color: #e2e8f0;
    transform: translateX(4px);
}

.design-layer.active {
    background: #ffffff;
    border-color: #7c3aed;
    color: #7c3aed;
}

.design-canvas {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.design-card {
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    padding: 1rem;
    display: grid;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.design-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.35);
}

.design-card.wide {
    padding: 1.2rem;
}

.design-logo-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.35);
}

.design-lines .line {
    display: block;
    height: 10px;
    border-radius: 8px;
    background: #e2e8f0;
    margin-top: 6px;
}

.design-lines .line.short {
    width: 40%;
}

.design-lines .line.long {
    width: 70%;
}

.design-color-row {
    display: flex;
    gap: 0.6rem;
}

.design-color-row .swatch {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.design-color-row .swatch.purple {
    background: #7c3aed;
}

.design-color-row .swatch.pink {
    background: #ec4899;
}

.design-color-row .swatch.amber {
    background: #f59e0b;
}

.design-color-row .swatch.slate {
    background: #64748b;
}

.design-ui {
    display: grid;
    grid-template-columns: auto auto auto 1fr;
    gap: 0.6rem;
    align-items: center;
}

.ui-pill {
    width: 56px;
    height: 14px;
    border-radius: 999px;
    background: #e2e8f0;
}

.ui-cta {
    justify-self: end;
    width: 92px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
}

.floating-design-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.design-metric {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #1e293b;
    font-size: 0.85rem;
    font-weight: 700;
    animation: float 10s ease-in-out infinite;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    min-width: 160px;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.design-metric:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.98);
}

.design-metric i {
    font-size: 1.2rem;
    color: #7c3aed;
    flex-shrink: 0;
    padding: 0.55rem 0.7rem;
    background: rgba(124, 58, 237, 0.15);
    border-radius: 999px;
}

.metric-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.metric-value {
    font-size: 1.3rem;
    font-weight: 900;
    color: #7c3aed;
    transition: color 0.3s ease;
    letter-spacing: -0.025em;
}

.metric-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1e293b;
    letter-spacing: -0.025em;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-overview {
    padding: 8rem 0;
    background: #f8fafc;
    position: relative;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.service-detailed-card {
    background: white;
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-detailed-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #7c3aed, #ec4899);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.service-detailed-card:hover::before {
    transform: scaleX(1);
}

.service-detailed-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.service-detailed-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    transition: all 0.5s ease;
    box-shadow: 0 12px 35px rgba(124, 58, 237, 0.4);
}

.service-detailed-card:hover .service-detailed-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 18px 45px rgba(124, 58, 237, 0.5);
}

.service-detailed-icon i {
    font-size: 2.2rem;
    color: white;
}

.service-detailed-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.service-detailed-card p {
    color: #64748b;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #374151;
    font-weight: 500;
    font-size: 1rem;
}

.service-features i {
    color: #10b981;
    font-size: 1rem;
    flex-shrink: 0;
}

.service-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.service-tech-stack span {
    background: #f1f5f9;
    color: #7c3aed;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-detailed-card:hover .service-tech-stack span {
    background: #7c3aed;
    color: white;
    border-color: #7c3aed;
    transform: translateY(-2px);
}

.service-actions {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process-section {
    padding: 8rem 0;
    background: white;
}

.process-timeline {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.process-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #7c3aed, #ec4899);
    transform: translateX(-50%);
    border-radius: 2px;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 5rem;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .process-content {
    text-align: right;
}

.process-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
    z-index: 2;
    border: 4px solid white;
}

.process-content {
    width: 45%;
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border: 2px solid #f1f5f9;
    transition: all 0.5s ease;
}

.process-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.3);
}

.process-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
  transition: all 0.3s ease;
}

.process-step:nth-child(even) .process-icon {
  margin-left: auto;
  margin-right: 0;
}

.process-content:hover .process-icon {
  transform: scale(1.1) rotate(5deg);
}

.process-icon i {
  font-size: 1.8rem;
  color: white;
}

.process-content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #1e293b;
}

.process-content p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.process-deliverables {
  list-style: none;
  margin-bottom: 2rem;
}

.process-deliverables li {
  color: #374151;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
  font-weight: 500;
}

.process-deliverables li::before {
  content: "•";
  color: #7c3aed;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.process-duration {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  color: #7c3aed;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-block;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.process-content:hover .process-duration {
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  color: white;
  border-color: transparent;
}

/* ===================================
   BENEFITS SECTION
   =================================== */
.business-benefits-section {
  padding: 8rem 0;
  background: #f8fafc;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3.5rem;
}

.benefit-card {
  background: white;
  padding: 3.5rem;
  border-radius: 28px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #ec4899);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  background: #f8fafc;
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(124, 58, 237, 0.2);
  border-color: rgba(124, 58, 237, 0.3);
}

.benefit-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 3rem;
  transition: all 0.5s ease;
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.4);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.2) rotate(15deg);
  box-shadow: 0 20px 50px rgba(124, 58, 237, 0.5);
}

.benefit-icon i {
  font-size: 2.5rem;
  color: white;
}

.benefit-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  color: #1e293b;
}

.benefit-card p {
  color: #64748b;
  line-height: 1.9;
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.benefit-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem;
  background: #f8fafc;
  border-radius: 20px;
  border: 2px solid #e2e8f0;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.benefit-stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.benefit-card:hover .benefit-stat::before {
  opacity: 1;
}

.benefit-stat .stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: #7c3aed;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  letter-spacing: -0.025em;
}

.benefit-card:hover .benefit-stat .stat-number {
  color: white;
  transform: scale(1.15);
}

.benefit-stat .stat-label {
  font-size: 1.1rem;
  color: #64748b;
  font-weight: 600;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  text-align: center;
}

.benefit-card:hover .benefit-stat .stat-label {
  color: rgba(255, 255, 255, 0.95);
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */
.why-choose-us {
  padding: 8rem 0;
  background: #f8fafc;
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-choose-text h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #1e293b;
  letter-spacing: -0.025em;
}

.why-choose-text p {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 3.5rem;
  line-height: 1.8;
}

.why-choose-features {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.why-feature {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.why-feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
  transition: all 0.3s ease;
}

.why-feature:hover .why-feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-feature-icon i {
  font-size: 1.8rem;
  color: white;
}

.why-feature-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #1e293b;
}

.why-feature-content p {
  color: #64748b;
  line-height: 1.7;
  margin: 0;
  font-size: 1.05rem;
}

.achievement-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.achievement-card {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.5s ease;
  border: 2px solid transparent;
}

.achievement-card:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  color: white;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.4);
}

.achievement-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.4s ease;
}

.achievement-card:hover .achievement-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.achievement-icon i {
  font-size: 1.8rem;
  color: white;
}

.achievement-card h3 {
  font-size: 3rem;
  font-weight: 900;
  color: #7c3aed;
  margin-bottom: 0.8rem;
  transition: color 0.4s ease;
  letter-spacing: -0.025em;
}

.achievement-card:hover h3 {
  color: white;
}

.achievement-card p {
  color: #64748b;
  font-weight: 600;
  transition: color 0.4s ease;
  margin: 0;
  font-size: 1.05rem;
}

.achievement-card:hover p {
  color: rgba(255, 255, 255, 0.95);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f59e0b 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content h2 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  color: white;
  letter-spacing: -0.025em;
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 3.5rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 4rem;
}

.cta-contact-info {
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: center;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  font-size: 1.1rem;
}

.cta-contact-item i {
  color: white;
  font-size: 1.4rem;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
  padding: 8rem 0;
  background: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 3rem;
}

.service-card {
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  text-align: center;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #ec4899);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(124, 58, 237, 0.2);
  border-color: rgba(124, 58, 237, 0.3);
}

.service-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
  transition: all 0.5s ease;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.5);
}

.service-icon i {
  font-size: 2.2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #1e293b;
}

.service-card p {
  color: #64748b;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.service-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about {
  padding: 8rem 0;
  background: white;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #1e293b;
  letter-spacing: -0.025em;
}

.about-text p {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 16px;
  transition: all 0.4s ease;
}

.feature:hover {
  background: #7c3aed;
  color: white;
  transform: translateX(8px);
}

.feature i {
  color: #7c3aed;
  font-size: 1.4rem;
  transition: color 0.4s ease;
}

.feature:hover i {
  color: white;
}

.feature span {
  font-weight: 600;
  color: #1e293b;
  transition: color 0.4s ease;
  font-size: 1.1rem;
}

.feature:hover span {
  color: white;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.stat {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #f8fafc;
  border-radius: 20px;
  transition: all 0.5s ease;
  border: 2px solid transparent;
}

.stat:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  color: white;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.4);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: #7c3aed;
  margin-bottom: 0.8rem;
  transition: color 0.4s ease;
  letter-spacing: -0.025em;
}

.stat:hover .stat-number {
  color: white;
}

.stat p {
  color: #64748b;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.4s ease;
}

.stat:hover p {
  color: rgba(255, 255, 255, 0.95);
}

/* ===================================
   PORTFOLIO SECTION
   =================================== */
.portfolio {
  padding: 8rem 0;
  background: #f8fafc;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.portfolio-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  transition: all 0.5s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.portfolio-item:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f59e0b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
  padding: 2.5rem;
  text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: white;
}

.portfolio-overlay p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.portfolio-tags {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.portfolio-tags span {
  background: rgba(255, 255, 255, 0.25);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
  padding: 8rem 0;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  border-radius: 20px;
  transition: all 0.4s ease;
  background: #f8fafc;
  border: 2px solid transparent;
}

.contact-item:hover {
  background: white;
  border-color: #7c3aed;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.2);
}

.contact-item i {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.4s ease;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-item:hover i {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.contact-item div h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #1e293b;
}

.contact-item div p {
  color: #7c3aed;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-item div span {
  color: #64748b;
  font-size: 1rem;
}

/* ===================================
   FORM STYLES
   =================================== */
.contact-form,
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: white;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border: 2px solid #f1f5f9;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.form-group label {
  font-weight: 600;
  color: #374151;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1.2rem 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  font-size: 1rem;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7c3aed;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin: 1.5rem 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  font-size: 1rem;
  color: #64748b;
  line-height: 1.7;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #7c3aed;
  margin: 0;
}

/* ===================================
   QUOTE SECTION
   =================================== */
.quote-section {
  padding: 6rem 0 8rem;
  background: #f8fafc;
}

.quote-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.quote-info h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #1e293b;
  font-weight: 800;
}

.quote-info p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.quote-benefits {
  margin: 3rem 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  transition: all 0.4s ease;
}

.benefit-item:hover {
  transform: translateX(8px);
  border-color: #7c3aed;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.15);
}

.benefit-item i {
  color: #10b981;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.benefit-item span {
  font-weight: 500;
  color: #374151;
  font-size: 1.05rem;
}

.contact-info-quote {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  margin-top: 2.5rem;
  border: 2px solid #e2e8f0;
}

.contact-info-quote h3 {
  margin-bottom: 2rem;
  color: #1e293b;
  font-size: 1.3rem;
}

.contact-info-quote .contact-item {
  background: transparent;
  padding: 1.2rem 0;
  margin-bottom: 1.2rem;
}

.contact-info-quote .contact-item:last-child {
  margin-bottom: 0;
}

.contact-info-quote .contact-item div span {
  display: block;
  font-weight: 600;
  color: #7c3aed;
}

.contact-info-quote .contact-item div small {
  color: #64748b;
  font-size: 0.9rem;
}

.quote-form h3 {
  margin-bottom: 2.5rem;
  color: #1e293b;
  font-size: 1.8rem;
  font-weight: 700;
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 1.5rem;
}

/* ===================================
   SUCCESS MODAL
   =================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  animation: fadeIn 0.4s ease;
}

.modal-overlay.show {
  display: flex;
}

.modal-content {
  background: white;
  padding: 4rem;
  border-radius: 24px;
  max-width: 550px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.5s ease;
}

.success-icon {
  font-size: 4.5rem;
  color: #10b981;
  margin-bottom: 2rem;
  animation: bounce 1.2s ease;
}

.modal-content h2 {
  color: #1e293b;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 800;
}

.modal-content p {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.next-steps {
  text-align: left;
  margin: 2.5rem 0;
}

.next-steps h3 {
  color: #1e293b;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.next-steps ul {
  list-style: none;
  padding: 0;
}

.next-steps li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  color: #64748b;
}

.next-steps li i {
  color: #7c3aed;
  width: 24px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: #1e293b;
  color: white;
  padding: 6rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 2rem;
  color: white;
  font-weight: 700;
}

.footer-section h3 {
  font-size: 1.8rem;
}

.footer-section p {
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 1rem;
}

.footer-section ul li a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 1.05rem;
}

.footer-section ul li a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-links a {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.4s ease;
  font-size: 1.3rem;
}

.social-links a:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.5);
}

.contact-info-footer p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #94a3b8;
}

.contact-info-footer i {
  color: #7c3aed;
  width: 24px;
}

.footer-bottom {
  border-top: 1px solid #334155;
  padding-top: 2.5rem;
  text-align: center;
  color: #94a3b8;
  font-size: 1rem;
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-to-top {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
  font-size: 1.3rem;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(124, 58, 237, 0.5);
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-8px);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-25px);
  }
}

@keyframes businessFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(1deg);
  }
  50% {
    transform: translateY(-25px) rotate(0deg);
  }
  75% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

/* ===================================
   AOS ANIMATION CLASSES
   =================================== */
[data-aos] {
  opacity: 0;
  transition: all 0.8s ease;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(40px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-40px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(40px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/* ===================================
   CONTENT WRITING SPECIFIC STYLES
   =================================== */
.content-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-editor {
  position: relative;
  z-index: 2;
  width: 400px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transform: perspective(1000px) rotateY(5deg) rotateX(-5deg);
  transition: all 0.4s ease;
}

.content-editor:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.editor-header {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 2px solid #e2e8f0;
}

.editor-controls {
  display: flex;
  gap: 0.6rem;
}

.editor-title {
  color: #374151;
  font-size: 1rem;
  font-weight: 700;
}

.editor-toolbar {
  background: #f1f5f9;
  padding: 1rem;
  display: flex;
  gap: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.toolbar-group {
  display: flex;
  gap: 1rem;
}

.toolbar-group i {
  color: #64748b;
  font-size: 1rem;
  padding: 0.6rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.toolbar-group i:hover {
  background: #e2e8f0;
  color: #7c3aed;
}

.editor-content {
  padding: 2rem;
  background: white;
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

.content-line {
  margin-bottom: 1.2rem;
  color: #374151;
  font-size: 1rem;
}

.content-line.title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2rem;
}

.cursor {
  color: #7c3aed;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.content-metric {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #1e293b;
  font-size: 0.85rem;
  font-weight: 700;
  animation: float 10s ease-in-out infinite;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  min-width: 140px;
  transition: all 0.4s ease;
}

.content-metric:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.content-metric i {
  font-size: 1.8rem;
  color: #7c3aed;
  flex-shrink: 0;
  padding: 0.6rem;
  background: rgba(124, 58, 237, 0.15);
  border-radius: 50%;
}

.metric-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.metric-value {
  font-size: 1.3rem;
  font-weight: 900;
  color: #7c3aed;
  transition: color 0.3s ease;
  letter-spacing: -0.025em;
}

.metric-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
  transition: color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Content Introduction Section */
.content-intro-section {
  padding: 8rem 0;
  background: white;
}

.content-intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

/* Content Types Section */
.content-types-section {
  padding: 8rem 0;
  background: #f8fafc;
}

.content-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.content-type-card {
  background: white;
  padding: 3.5rem;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.content-type-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #ec4899);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.content-type-card:hover::before {
  transform: scaleX(1);
}

.content-type-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(124, 58, 237, 0.2);
  border-color: rgba(124, 58, 237, 0.3);
}

.content-type-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  transition: all 0.5s ease;
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.content-type-card:hover .content-type-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 15px 40px rgba(124, 58, 237, 0.5);
}

.content-type-icon i {
  font-size: 2.2rem;
  color: white;
}

.content-type-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #1e293b;
}

.content-type-card p {
  color: #64748b;
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.content-features {
  list-style: none;
  margin-bottom: 2.5rem;
}

.content-features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: #374151;
  font-weight: 500;
}

.content-features i {
  color: #10b981;
  font-size: 1rem;
}

.content-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.content-specs span {
  background: #f1f5f9;
  color: #7c3aed;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.content-type-card:hover .content-specs span {
  background: #7c3aed;
  color: white;
  border-color: #7c3aed;
}

/* Content Benefits Section */
.content-benefits-section {
  padding: 8rem 0;
  background: #f8fafc;
}

/* Content Tools Section */
.content-tools-section {
  padding: 8rem 0;
  background: white;
}

.tools-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 3.5rem;
}

.tools-category {
  background: #f8fafc;
  padding: 3.5rem;
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  border: 2px solid #f1f5f9;
  transition: all 0.5s ease;
}

.tools-category:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(124, 58, 237, 0.2);
  border-color: rgba(124, 58, 237, 0.3);
  background: white;
}

.tools-category h3 {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  color: #1e293b;
}

.tools-category h3 i {
  color: #7c3aed;
  font-size: 1.4rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
}

.tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 16px;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.tool-item:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(124, 58, 237, 0.4);
}

.tool-item i {
  font-size: 3rem;
  color: #7c3aed;
  transition: color 0.3s ease;
}

.tool-item:hover i {
  color: white;
}

.tool-item span {
  font-weight: 600;
  font-size: 1rem;
  color: #374151;
  transition: color 0.3s ease;
  text-align: center;
}

.tool-item:hover span {
  color: white;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
    gap: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-container,
  .service-hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-title,
  .service-hero h1 {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.15rem;
  }

  .hero-buttons,
  .service-hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .about-content,
  .contact-content,
  .quote-content,
  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-grid,
  .services-detailed-grid,
  .content-types-grid,
  .benefits-grid,
  .business-intro-grid,
  .content-intro-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-stats,
  .achievement-cards {
    grid-template-columns: 1fr 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-detailed-card,
  .content-type-card,
  .benefit-card,
  .intro-card {
    padding: 2.5rem 2rem;
  }

  .service-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .btn-learn-more,
  .btn-quote {
    width: 100%;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .hero-visual,
  .service-hero-visual {
    height: 300px;
  }

  .quote-hero h1 {
    font-size: 2.5rem;
  }

  .scroll-to-top {
    width: 50px;
    height: 50px;
    bottom: 2rem;
    right: 2rem;
  }

  .service-hero-stats {
    justify-content: center;
    gap: 2rem;
  }

  .process-timeline::before {
    left: 30px;
  }

  .process-step {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 80px;
  }

  .process-step:nth-child(even) .process-content {
    text-align: left;
  }

  .process-number {
    left: 30px;
    transform: translateX(-50%);
  }

  .process-content {
    width: 100%;
  }

  .process-step:nth-child(even) .process-icon {
    margin-left: 0;
    margin-right: auto;
  }

  .tools-categories {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .tools-category {
    padding: 2.5rem;
  }

  .tools-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
  }

  .cta-content h2 {
    font-size: 2.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .cta-contact-info {
    flex-direction: column;
    gap: 2rem;
  }

  .business-dashboard,
  .content-editor {
    width: 340px;
  }

  .dashboard-content {
    padding: 2rem;
    gap: 1.5rem;
  }

  .metric-card {
    padding: 1.2rem;
  }

  .metric-card .metric-icon {
    width: 50px;
    height: 50px;
  }

  .metric-card .metric-icon i {
    font-size: 1.2rem;
  }

  .metric-card .metric-value {
    font-size: 1.5rem;
  }

  .metric-card .metric-label {
    font-size: 0.85rem;
  }

  .business-metric,
  .content-metric {
    min-width: 130px;
    padding: 1rem;
    font-size: 0.8rem;
  }

  .business-metric i,
  .content-metric i {
    font-size: 1.4rem;
    padding: 0.4rem;
  }

  /* Ensure all sections are visible on tablets */
  .service-hero,
  .services-overview,
  .process-section,
  .business-benefits-section,
  .portfolio,
  .content-tools-section,
  .why-choose-us,
  .cta-section,
  .footer {
    overflow: visible;
    min-height: auto;
  }

  /* Fix any potential hidden content */
  .floating-design-elements,
  .floating-business-elements {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }

  .design-metric,
  .business-metric {
    position: static !important;
    margin: 0.5rem auto;
    display: block;
    width: fit-content;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title,
  .service-hero h1 {
    font-size: 2.2rem;
  }

  .section-header h2 {
    font-size: 1.9rem;
  }

  .about-stats,
  .achievement-cards {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-detailed-card,
  .contact-form,
  .quote-form {
    padding: 2rem 1.5rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .modal-content {
    padding: 2.5rem 2rem;
    margin: 1rem;
  }

  .service-hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .content-type-card,
  .tools-category,
  .benefit-card,
  .intro-card {
    padding: 2rem 1.5rem;
  }

  .process-content {
    padding: 2.5rem 2rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .business-dashboard,
  .content-editor {
    width: 300px;
  }

  .dashboard-content,
  .editor-content {
    padding: 1.5rem;
  }

  .content-line {
    font-size: 0.9rem;
  }

  .content-line.title {
    font-size: 1.1rem;
  }

  .business-metric,
  .content-metric {
    padding: 0.8rem;
    min-width: 110px;
    gap: 0.8rem;
  }

  .business-metric i,
  .content-metric i {
    font-size: 1.2rem;
    padding: 0.3rem;
  }

  .metric-value {
    font-size: 1.1rem;
  }

  .metric-label {
    font-size: 0.7rem;
  }

  .benefit-icon,
  .intro-icon {
    width: 70px;
    height: 70px;
  }

  .benefit-icon i,
  .intro-icon i {
    font-size: 1.8rem;
  }

  .benefit-card h3,
  .intro-card h3 {
    font-size: 1.3rem;
  }

  .benefit-card p,
  .intro-card p {
    font-size: 1rem;
  }

  .benefit-stat {
    padding: 1.5rem;
  }

  .benefit-stat .stat-number {
    font-size: 2.2rem;
  }

  .benefit-stat .stat-label {
    font-size: 0.9rem;
  }

  /* Ensure all sections are fully visible on mobile */
  .service-hero,
  .services-overview,
  .process-section,
  .business-benefits-section,
  .portfolio,
  .content-tools-section,
  .why-choose-us,
  .cta-section,
  .footer {
    overflow: visible;
    min-height: auto;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Fix floating elements positioning */
  .floating-design-elements,
  .floating-business-elements,
  .content-metrics {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }

  .design-metric,
  .business-metric,
  .content-metric {
    position: static !important;
    margin: 0.5rem auto;
    display: block;
    width: fit-content;
    max-width: 100%;
  }

  /* Ensure text is readable */
  .service-hero-subtitle,
  .service-hero p,
  .benefit-card p,
  .process-content p {
    line-height: 1.6;
    word-wrap: break-word;
  }

  /* Fix button layouts */
  .service-hero-buttons,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .service-hero-buttons .btn-primary,
  .service-hero-buttons .btn-secondary,
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Additional Mobile Optimizations */
@media (max-width: 360px) {
  .business-dashboard,
  .content-editor {
    width: 260px;
  }

  .business-metric,
  .content-metric {
    position: relative !important;
    margin: 1rem auto;
    display: block;
    width: fit-content;
  }

  .floating-business-elements,
  .content-metrics {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
  }

  .service-hero-visual {
    height: auto;
    padding: 2rem 0;
  }

  /* Ensure all sections are fully visible on very small screens */
  .service-hero,
  .services-overview,
  .process-section,
  .business-benefits-section,
  .portfolio,
  .content-tools-section,
  .why-choose-us,
  .cta-section,
  .footer {
    overflow: visible;
    min-height: auto;
    padding-left: 10px;
    padding-right: 10px;
  }

  /* Fix any potential text overflow */
  .service-hero h1,
  .section-header h2,
  .benefit-card h3,
  .process-content h3 {
    word-wrap: break-word;
    hyphens: auto;
  }

  /* Ensure buttons are properly sized */
  .btn-primary,
  .btn-secondary,
  .btn-quote,
  .btn-learn-more {
    min-height: 48px;
    font-size: 0.9rem;
    padding: 0.875rem 1.25rem;
  }
}

/* Print Styles */
@media print {
  .business-metric,
  .content-metric,
  .floating-elements,
  .floating-business-elements,
  .hero-bg-pattern {
    display: none;
  }

  .business-dashboard,
  .content-editor {
    box-shadow: none;
    border: 2px solid #e2e8f0;
    transform: none;
  }

  .benefit-card,
  .content-type-card,
  .intro-card,
  .service-detailed-card {
    break-inside: avoid;
    box-shadow: none;
    border: 1px solid #e2e8f0;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .business-dashboard,
  .content-editor {
    border: 3px solid #000;
  }

  .metric-card,
  .business-metric,
  .content-metric {
    border: 2px solid #000;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .business-dashboard,
  .content-editor {
    transform: none;
  }

  .business-metric,
  .content-metric {
    animation: none;
  }
}

/* ===================================
     GRAPHIC DESIGN SPECIFIC STYLES
     =================================== */
.design-visual-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.design-artboard {
  position: relative;
  z-index: 2;
  width: 420px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: all 0.4s ease;
}

.design-artboard:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.design-toolbar {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 2px solid #e2e8f0;
}

.design-controls {
  display: flex;
  gap: 0.6rem;
}

.design-title {
  color: #374151;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.design-body {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.design-sidebar {
  padding: 1rem;
  border-right: 1px solid #e2e8f0;
  background: #f8fafc;
}

.design-layer {
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #475569;
  font-weight: 600;
  border: 2px solid transparent;
  margin-bottom: 0.5rem;
  transition: all 0.25s ease;
  cursor: default;
}

.design-layer:hover {
  background: white;
  border-color: #e2e8f0;
  transform: translateX(4px);
}

.design-layer.active {
  background: #ffffff;
  border-color: #7c3aed;
  color: #7c3aed;
}

.design-canvas {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.design-card {
  background: white;
  border: 2px solid #f1f5f9;
  border-radius: 16px;
  padding: 1rem;
  display: grid;
  gap: 0.8rem;
  transition: all 0.3s ease;
}

.design-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.35);
}

.design-card.wide {
  padding: 1.2rem;
}

.design-logo-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.35);
}

.design-lines .line {
  display: block;
  height: 10px;
  border-radius: 8px;
  background: #e2e8f0;
  margin-top: 6px;
}

.design-lines .line.short {
  width: 40%;
}

.design-lines .line.long {
  width: 70%;
}

.design-color-row {
  display: flex;
  gap: 0.6rem;
}

.design-color-row .swatch {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.design-color-row .swatch.purple {
  background: #7c3aed;
}

.design-color-row .swatch.pink {
  background: #ec4899;
}

.design-color-row .swatch.amber {
  background: #f59e0b;
}

.design-color-row .swatch.slate {
  background: #64748b;
}

.design-ui {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  gap: 0.6rem;
  align-items: center;
}

.ui-pill {
  width: 56px;
  height: 14px;
  border-radius: 999px;
  background: #e2e8f0;
}

.ui-cta {
  justify-self: end;
  width: 92px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.35);
}

.floating-design-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.design-metric {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(25px);
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #1e293b;
  font-size: 0.85rem;
  font-weight: 700;
  animation: float 10s ease-in-out infinite;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  min-width: 160px;
  transition: all 0.4s ease;
  transform-style: preserve-3d;
}

.design-metric:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.98);
}

.design-metric i {
  font-size: 1.2rem;
  color: #7c3aed;
  flex-shrink: 0;
  padding: 0.55rem 0.7rem;
  background: rgba(124, 58, 237, 0.15);
  border-radius: 999px;
}

/* Responsive adjustments for design artboard to match existing breakpoints */
@media (max-width: 768px) {
  .design-artboard {
    width: 340px;
  }
  .design-body {
    grid-template-columns: 100px 1fr;
  }
  .design-metric {
    min-width: 130px;
    padding: 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .design-artboard {
    width: 300px;
  }
  .design-canvas {
    padding: 1rem;
    gap: 0.8rem;
  }
  .ui-cta {
    width: 80px;
    height: 30px;
  }
  .design-metric {
    padding: 0.8rem;
    min-width: 110px;
    gap: 0.8rem;
  }
}

@media (max-width: 360px) {
  .design-artboard {
    width: 260px;
  }
  .floating-design-elements {
    position: static;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
  }
  .design-metric {
    position: relative !important;
    margin: 0.5rem auto;
    display: block;
    width: fit-content;
  }
}

/* Additional Performance and Accessibility Improvements */
.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.service-detailed-card,
.benefit-card,
.process-step,
.portfolio-item,
.achievement-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Focus styles for better accessibility */
*:focus {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
}

/* Better button hover states on touch devices */
@media (hover: none) {
  .btn-primary:hover,
  .btn-secondary:hover,
  .btn-quote:hover,
  .btn-learn-more:hover {
    transform: none;
  }
}