:root {
    --primary-cyan: #00D4E8;
    --primary-cyan-dark: #00A8B8;
    --primary-cyan-light: rgba(0, 212, 232, 0.1);
    --primary-black: #000000;
    --white: #FFFFFF;
    --light-gray: #F5F7FA;
    --medium-gray: #E2E8F0;
    --dark-gray: #2D3748;
    --text-primary: #1A202C;
    --text-secondary: #4A5568;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --container-max: 1200px;
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --card-bg-blue: #F0F9FF;
    --card-bg-blue-hover: #E6F4FF;
    --card-border-light: #D1E8F0;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-family);
    color: var(--text-primary);
    line-height: 1.7;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
/* 4. Prevent horizontal page scroll */
html, body {
  overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -50px;
    left: 0;
    background: var(--primary-cyan);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 var(--border-radius) 0;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: saturate(180%) blur(10px);
    z-index: 999;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--medium-gray);
    padding: 0.25rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    transition: height 0.3s;
}

.logo img {
    transition: var(--transition-fast);
}

.site-header.scrolled .logo img {
    transform: scale(0.95);
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-primary);
    position: relative;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-block;
    transition: color 0.2s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-cyan);
    transition: var(--transition);
    border-radius: 2px;
}
.nav-menu a:hover,
.nav-menu a:focus {
  outline: none;
}

.nav-menu a:hover::after,
.nav-menu a:focus::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--primary-cyan);
}
/* Dropdown Toggle */
/* 1. Ensure the <li> is the positioning anchor */
.dropdown {
  position: relative;
}
.dropdown-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.dropdown-toggle i {
  font-size: 0.75em;
  transition: transform 0.2s ease;
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100% ;
  left: 0;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  min-width: 220px;
  padding: 0.5rem 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  list-style: none;
  z-index: 100;
  box-sizing: border-box;
  white-space: nowrap;
  gap: 0.5rem;
}
/* 3. If the dropdown is near the right edge, flip it */
.dropdown:last-child .dropdown-menu {
  left: auto;
  right: 0;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  padding: 0.6rem 1rem;
  display: block;
  white-space: nowrap;
  color: #111827;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: #f3f4f6;
  outline: 2px solid #3b82f6;
  outline-offset: -2px;
}

/* Desktop Hover & Focus (only on devices that support hover) */
@media (hover: hover) {
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .dropdown:hover .dropdown-toggle i,
  .dropdown:focus-within .dropdown-toggle i {
    transform: rotate(180deg);
  }
}

/* JS Toggle State (for mobile/click) */
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown.open .dropdown-toggle i {
  transform: rotate(180deg);
}

/* Mobile Layout */
@media (max-width: 768px) {
  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding-left: 1rem;
  }
}

.nav-cta {
    background: var(--primary-cyan);
    color: var(--white) !important;
    padding: 0.65rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}

.nav-cta:hover,
.nav-cta:focus {
    background: var(--primary-cyan-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-cta::after {
    display: none !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    z-index: 1001;
    touch-action: manipulation;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-black);
    position: relative;
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--primary-black);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger::before { top: -8px; }
.hamburger::after { top: 8px; }

.mobile-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.mobile-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}


/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 0.95rem;
    min-height: 48px;
    min-width: 48px;
    touch-action: manipulation;
}

.btn-primary {
    background: var(--primary-cyan);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 212, 232, 0.35);
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-cyan-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 232, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-black);
    border-color: var(--primary-cyan);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--primary-cyan-light);
    color: var(--primary-cyan-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    min-height: 56px;
}

/* ===== SECTIONS ===== */
section {
    padding: 2rem 0;
    position: relative;
}

section h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--primary-black);
    position: relative;
    padding-bottom: 1rem;
    letter-spacing: -0.01em;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-cyan);
    border-radius: 3px;
}
/* ===== HERO SECTION - CATCHY & PROFESSIONAL ===== */
.hero {
    padding: 5rem 0 3rem;
    background: 
        radial-gradient(ellipse at top right, var(--card-bg-blue) 0%, transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(0, 212, 232, 0.05) 0%, transparent 60%),
        var(--white);
    overflow: hidden;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

/* Left Content */
.hero-content {
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--card-bg-blue);
    color: var(--primary-cyan-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid var(--card-border-light);
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.1s forwards;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--primary-black);
    letter-spacing: -0.02em;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.2s forwards;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-cyan-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.3s forwards;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.4s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.5s forwards;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid var(--medium-gray);
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.6s forwards;
}

.stat {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Fade in stats container */
.hero-stats.visible {
    opacity: 1;
}

.hero-stats.visible .stat {
    opacity: 1;
    transform: translateY(0);
}

.hero-stats .stat:nth-child(1) { transition-delay: 0.1s; }
.hero-stats .stat:nth-child(2) { transition-delay: 0.2s; }
.hero-stats .stat:nth-child(3) { transition-delay: 0.3s; }

/* Number styling */
.stat span {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-black);
    line-height: 1.2;
    margin-bottom: 0.25rem;
    transition: transform 0.2s ease;
}

/* Right Visual Composition */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 0.95;
}

.gradient-orb {
    position: absolute;
    width: 75%;
    height: 75%;
    background: radial-gradient(circle, rgba(0, 212, 232, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: 12%;
    left: 12%;
    filter: blur(50px);
    animation: orbFloat 10s ease-in-out infinite;
    z-index: 0;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-25px, 25px) scale(1.1); }
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 168, 184, 0.12);
    border: 1px solid var(--card-border-light);
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
}

/* Card 1: Desktop Dashboard Mockup */
.card-1 {
    width: 72%;
    height: 58%;
    top: 8%;
    left: 2%;
    z-index: 3;
    animation: cardFloat1 7s ease-in-out infinite;
}

/* Card 2: Mobile Device Mockup */
.card-2 {
    width: 38%;
    height: 55%;
    top: 28%;
    right: 0;
    z-index: 4;
    animation: cardFloat2 8s ease-in-out infinite;
}

/* Card 3: Code Snippet Card */
.card-3 {
    width: 48%;
    height: 32%;
    bottom: 4%;
    left: 18%;
    z-index: 2;
    background: #1A202C;
    border: none;
    animation: cardFloat3 9s ease-in-out infinite;
}

@keyframes cardFloat1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-12px) rotate(0deg); }
}
@keyframes cardFloat2 {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}
@keyframes cardFloat3 {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-8px) rotate(1.5deg); }
}

/* Mockup Internal Elements */
.card-mockup {
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid #E2E8F0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Browser/App Chrome */
.mockup-header {
    background: #F8FAFC;
    padding: 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E2E8F0;
    font-size: 0.65rem;
    font-weight: 700;
    color: #64748B;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: static;
    height: auto;
    width: 100%;
    box-sizing: border-box;
    gap: 0.4rem;
}

/* Window control dots */
.mockup-header::before {
    content: '';
    display: flex;
    gap: 3px;
    margin-right: 0.5rem;
}
.mockup-header::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #EF4444;
    border-radius: 50%;
    box-shadow: 10px 0 0 #F59E0B, 20px 0 0 #22C55E;
}

/* Main Content Area */
.mockup-body {
    flex: 1;
    padding: 1rem 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: static;
    height: auto;
    width: 100%;
    box-sizing: border-box;
    background: transparent;
    border-radius: 0;
}

.mockup-body {
    font-size: clamp(1.1rem, 2.8vw, 1.45rem);
    font-weight: 800;
    color: var(--primary-black);
    line-height: 1.25;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--primary-cyan-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Dashboard Chart Area */
.mockup-chart {
    height: 30%;
    min-height: 50px;
    background: linear-gradient(180deg, rgba(0, 212, 232, 0.08) 0%, rgba(0, 212, 232, 0.02) 100%);
    border-top: 1px solid #E2E8F0;
    position: static;
    display: flex;
    align-items: flex-end;
    justify-content: space-evenly;
    padding: 0.4rem 0.6rem 0.6rem;
    gap: 0.35rem;
    opacity: 1;
    border-radius: 0;
    overflow: hidden;
}

/* CSS-only animated bars */
.mockup-chart::before,
.mockup-chart::after {
    content: '';
    flex: 1;
    background: linear-gradient(180deg, var(--primary-cyan) 0%, var(--primary-cyan-dark) 100%);
    border-radius: 3px 3px 0 0;
    opacity: 0.65;
    transform-origin: bottom;
    animation: chartGrow 1.5s ease-out forwards;
}
.mockup-chart::before { height: 45%; animation-delay: 0.3s; }
.mockup-chart::after  { height: 75%; animation-delay: 0.5s; }

/* Simulate 3rd & 4th bars via box-shadow */
.mockup-chart::before {
    box-shadow: 
        calc(100% + 6px) 0 0 rgba(0, 212, 232, 0.45),
        calc(200% + 12px) 0 0 rgba(0, 212, 232, 0.3);
}

@keyframes chartGrow {
    from { transform: scaleY(0); }
    to   { transform: scaleY(1); }
}

/* Subtle hover lift to match card animations */
.card-1:hover .card-mockup {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 168, 184, 0.12);
}

/* Mobile Device Container */
.mobile-mockup {
    background: #0B1120;
    border-radius: 28px;
    padding: 12px 8px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    border: 2px solid #1E293B;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Status Bar / Notch Area */
.mockup-notch {
    width: 100%;
    height: auto;
    background: transparent;
    border-radius: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 700;
    color: #64748B;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
}

/* Phone notch cutout */
.mockup-notch::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 20px;
    background: #0B1120;
    border-radius: 0 0 14px 14px;
    border: 2px solid #1E293B;
    border-top: none;
    z-index: 2;
}

/* Screen / Terminal Area */
.mockup-screen {
    width: 100%;
    flex: 1;
    background: #0F172A;
    border-radius: 16px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #1E293B;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: clamp(0.7rem, 2.5vw, 0.85rem);
    color: #E2E8F0;
    line-height: 1.6;
    word-break: break-word;
}

/* Success badge (pure CSS) */
.mockup-screen::before {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 20px;
    height: 20px;
    background: var(--primary-cyan);
    color: #0F172A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0, 212, 232, 0.4);
    animation: pulseGlow 2s ease-in-out infinite;
}

/* Subtle deployment glow */
.mockup-screen {
    background: linear-gradient(180deg, rgba(0, 212, 232, 0.06) 0%, transparent 45%), #0F172A;
    animation: screenPulse 3s ease-in-out infinite;
}

@keyframes screenPulse {
    0%, 100% { box-shadow: inset 0 0 0 rgba(0, 212, 232, 0); }
    50% { box-shadow: inset 0 0 24px rgba(0, 212, 232, 0.12); }
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 12px rgba(0, 212, 232, 0.4); }
    50% { transform: scale(1.08); box-shadow: 0 4px 18px rgba(0, 212, 232, 0.65); }
}

/* Hover lift matches hero cards */
.card-2:hover .mobile-mockup {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255,255,255,0.08);
}

.code-snippet {
    font-family: monospace;
    font-size: 0.85rem;
    color: #E2E8F0;
    line-height: 1.8;
    padding: 0.5rem;
}

.code-tag { color: #7DD3FC; }
.code-class { color: var(--primary-cyan); font-weight: 600; }

/* Hover Interactions */
.visual-wrapper:hover .card-1 { transform: translateY(-6px) scale(1.02); box-shadow: 0 12px 32px rgba(0, 168, 184, 0.18); }
.visual-wrapper:hover .card-2 { transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 32px rgba(0, 168, 184, 0.18); }
.visual-wrapper:hover .card-3 { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3); }

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        order: 2;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-badge {
        margin: 0 auto 1.5rem;
    }
    
    .visual-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 0 2.5rem;
    }
    
    .hero-grid {
        gap: 2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .stat span {
        font-size: 1.4rem;
    }
    
    .floating-card {
        padding: 0.75rem;
    }
    
    .code-snippet {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.85rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .visual-wrapper {
        max-width: 320px;
        aspect-ratio: 1 / 0.85;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .hero-badge,
    .hero-title,
    .hero-subtitle,
    .hero-description,
    .hero-actions,
    .hero-stats {
        animation: none !important;
        opacity: 1;
    }
    
    .gradient-orb,
    .floating-card,
    .hero-badge::before {
        animation: none !important;
    }
    
    .visual-wrapper:hover .card-1,
    .visual-wrapper:hover .card-2,
    .visual-wrapper:hover .card-3 {
        transform: none;
    }
}

/* ===== INTRO / ABOUT SECTION ===== */
.intro {
    background: var(--light-gray);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.intro::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-cyan-light) 0%, transparent 70%);
    opacity: 0.5;
    pointer-events: none;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 212, 232, 0.1);
    color: var(--primary-cyan-dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 212, 232, 0.2);
}

.intro-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    padding-bottom: 0;
}

.intro-content h2::after {
    left: 0;
    transform: none;
}

.intro-text {
    margin-bottom: 1.25rem;
}

.intro-text .lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.intro-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.intro-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--medium-gray);
    flex-wrap: wrap;
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-box span {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-cyan);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.stat-box {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== INTRO VISUAL / TECH GRAPHIC ===== */
.intro-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    position: relative;
}

.tech-graphic {
    position: relative;
    width: 320px;
    height: 320px;
    animation: floatGraphic 6s ease-in-out infinite;
}

@keyframes floatGraphic {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Subtle tech grid background */
.tech-graphic::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 212, 232, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 232, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    border-radius: 50%;
    z-index: 0;
}

/* Central Hub */
.hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76px;
    height: 76px;
    background: radial-gradient(circle, var(--primary-cyan) 0%, rgba(0, 212, 232, 0.2) 60%, transparent 70%);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 28px rgba(0, 212, 232, 0.35);
}

.hub::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px dashed rgba(0, 212, 232, 0.25);
    border-radius: 50%;
    animation: rotateHub 14s linear infinite;
}

@keyframes rotateHub {
    to { transform: rotate(360deg); }
}

/* Orbit Ring */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 240px;
    height: 240px;
    border: 1px solid rgba(0, 212, 232, 0.12);
    border-radius: 50%;
    z-index: 1;
}

.orbit-ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-cyan);
    transform-origin: 0 122px;
    animation: orbitDot 10s linear infinite;
}

@keyframes orbitDot {
    to { transform: rotate(360deg); }
}

/* Nodes */
.node {
    position: absolute;
    width: 22px;
    height: 22px;
    z-index: 5;
}

.node-dot {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--white);
    border: 2px solid var(--primary-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 212, 232, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.node:hover .node-dot {
    transform: scale(1.25);
    box-shadow: 0 0 18px rgba(0, 212, 232, 0.7);
}

/* Radial Positioning */
.node-1 { top: 2%; left: 50%; transform: translateX(-50%); }
.node-2 { top: 50%; right: 2%; transform: translateY(-50%); }
.node-3 { bottom: 2%; left: 50%; transform: translateX(-50%); }
.node-4 { top: 50%; left: 2%; transform: translateY(-50%); }

/* Connection Lines */
.connection {
    position: absolute;
    height: 2px;
    transform-origin: left center;
    z-index: 2;
    opacity: 0.5;
    background: linear-gradient(90deg, var(--primary-cyan), rgba(0, 212, 232, 0.2));
}

.conn-1 { top: 14%; left: 50%; width: 115px; transform: translateX(-50%) translateY(-100%) rotate(0deg); }
.conn-2 { top: 50%; left: 50%; width: 115px; transform: translateX(0) translateY(-50%) rotate(0deg); }
.conn-3 { top: 50%; left: 14%; width: 115px; transform: translateX(0) translateY(-50%) rotate(180deg); }
.conn-4 { top: 50%; left: 50%; width: 115px; transform: translateX(-50%) translateY(50%) rotate(180deg); }

/* Animated Data Packets */
.data-packet {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-cyan);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--primary-cyan);
    z-index: 6;
    opacity: 0;
}

.packet-1 {
    top: 14%;
    left: 50%;
    animation: travelUp 2.8s ease-in-out infinite;
}

.packet-2 {
    bottom: 2%;
    left: 50%;
    animation: travelDown 3.2s ease-in-out infinite 1.4s;
}

@keyframes travelUp {
    0%   { transform: translateX(-50%) translateY(0); opacity: 0; }
    15%  { opacity: 1; }
    85%  { opacity: 1; }
    100% { transform: translateX(-50%) translateY(-115px); opacity: 0; }
}

@keyframes travelDown {
    0%   { transform: translateX(-50%) translateY(0); opacity: 0; }
    15%  { opacity: 1; }
    85%  { opacity: 1; }
    100% { transform: translateX(-50%) translateY(115px); opacity: 0; }
}

/* Responsive Scaling */
@media (max-width: 768px) {
    .tech-graphic {
        width: 260px;
        height: 260px;
    }
    .hub { width: 60px; height: 60px; }
    .orbit-ring { width: 195px; height: 195px; }
    .orbit-ring::before { transform-origin: 0 99px; }
    .connection { width: 90px; }
    @keyframes travelUp { 100% { transform: translateX(-50%) translateY(-90px); opacity: 0; } }
    @keyframes travelDown { 100% { transform: translateX(-50%) translateY(90px); opacity: 0; } }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .tech-graphic,
    .hub::after,
    .orbit-ring::before,
    .data-packet {
        animation: none !important;
    }
    .node-dot { transition: none; }
}

/* Responsive */
@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .intro-content h2 {
        text-align: center;
    }

    .intro-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .intro-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .intro {
        padding: 4rem 0;
    }

    .intro-stats {
        gap: 1.5rem;
    }

    .stat-box span {
        font-size: 1.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .intro-content, .intro-visual {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
/* ===== LIGHT BLUE BACKGROUND + COMBINED ANIMATIONS ===== */



/* Base service card */
/* Services Grid */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--medium-gray);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-cyan);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 212, 232, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.icon-number {
    font-weight: 700;
    color: var(--primary-cyan);
    font-size: 1.125rem;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-black);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.service-card:nth-child(1) { transition-delay: 0.05s; }
.service-card:nth-child(2) { transition-delay: 0.1s; }
.service-card:nth-child(3) { transition-delay: 0.15s; }
.service-card:nth-child(4) { transition-delay: 0.2s; }
.service-card:nth-child(5) { transition-delay: 0.25s; }
.service-card:nth-child(6) { transition-delay: 0.3s; }
.service-card:nth-child(7) { transition-delay: 0.05s; }
.service-card:nth-child(8) { transition-delay: 0.1s; }
.service-card:nth-child(9) { transition-delay: 0.15s; }
.service-card:nth-child(10) { transition-delay: 0.2s; }
.service-card:nth-child(11) { transition-delay: 0.25s; }
.service-card:nth-child(12) { transition-delay: 0.3s; }

/* Hover state */
.service-card.visible:hover {
    transform: translateY(-8px) rotateX(3deg);
    box-shadow: 0 15px 35px rgba(0, 168, 184, 0.15);
    background: var(--card-bg-blue-hover);
    border-color: var(--primary-cyan);
}

/* ===== GRADIENT BORDER ===== */
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary-cyan), var(--primary-cyan-dark), var(--primary-cyan));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradientBorder 3s ease infinite;
    pointer-events: none;
}

.service-card.visible:hover::before {
    opacity: 1;
}

@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== GRADIENT TEXT FOR HEADINGS ===== */
.service-card h3 {
    background: linear-gradient(135deg, #1A202C 0%, #00A8B8 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card.visible:hover h3 {
    animation: gradientShift 3s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ===== GLOW BACKGROUND ===== */
.service-card .glow {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 212, 232, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    top: -140px;
    right: -140px;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card.visible:hover .glow {
    opacity: 1;
    animation: glowMove 5s ease-in-out infinite;
}

@keyframes glowMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-40px, 40px) scale(1.1); }
    50% { transform: translate(-60px, 60px) scale(0.95); }
    75% { transform: translate(-30px, 50px) scale(1.05); }
}

/* ===== SHIMMER EFFECT ===== */
.service-card .shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.7s ease;
    pointer-events: none;
    z-index: 1;
}

.service-card.visible:hover .shimmer {
    left: 100%;
}

/* ===== ICON & NUMBER ANIMATIONS ===== */
.service-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    background: rgba(0, 212, 232, 0.15);
}

.service-card.visible:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-cyan-dark));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s;
}

.service-card.visible:hover .service-icon::before {
    animation: iconPulse 1.5s ease-out;
}

@keyframes iconPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}

.icon-number {
    display: inline-block;
    font-variant-numeric: tabular-nums;
    transition: transform 0.3s ease;
}

.service-card.visible .icon-number {
    animation: numberPop 0.6s ease;
}

@keyframes numberPop {
    0% { transform: scale(0) rotate(-180deg); opacity: 0; }
    50% { transform: scale(1.3) rotate(10deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* ===== CIRCUIT LINE ===== */
.service-card::after {
    content: '';
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-cyan), transparent);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.5s ease;
    z-index: 1;
}

.service-card.visible:hover::after {
    opacity: 0.5;
    transform: scaleX(1);
    animation: circuitPulse 2s ease-in-out infinite;
}

@keyframes circuitPulse {
    0%, 100% { transform: scaleX(1); opacity: 0.5; }
    50% { transform: scaleX(0.7); opacity: 0.7; }
}

/* ===== FLOATING ANIMATION ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.service-card.visible:nth-child(odd) {
    animation: float 5s ease-in-out infinite;
}

.service-card.visible:nth-child(even) {
    animation: float 5s ease-in-out infinite 2.5s;
}

.service-card.visible:hover {
    animation-play-state: paused;
}

/* ===== CONTENT STYLES ===== */
.service-card p {
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    color: #4A5568;
    line-height: 1.7;
}

.service-card.visible:hover p {
    transform: translateX(3px);
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
    .service-card {
        transform: none !important;
        animation: none !important;
        background: var(--card-bg-blue);
        border: 1px solid var(--card-border-light);
    }
    
    .service-card.visible {
        opacity: 1;
        transform: none !important;
    }
    
    .service-card.visible:hover {
        transform: translateY(-4px) !important;
        background: var(--card-bg-blue-hover);
        box-shadow: 0 8px 20px rgba(0, 168, 184, 0.12);
    }
    
    .service-card::before,
    .service-card .glow,
    .service-card .shimmer,
    .service-card::after {
        display: none;
    }
    
    .service-card h3 {
        background: #1A202C;
        -webkit-background-clip: unset;
        -webkit-text-fill-color: unset;
        background-clip: unset;
    }
    
    .service-icon::before {
        display: none;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .service-card {
        opacity: 1;
        transform: none;
        transition: box-shadow 0.3s ease, background 0.3s ease;
    }
    
    .service-card.visible {
        opacity: 1;
        transform: none;
    }
    
    .service-card h3,
    .service-card::before,
    .service-card::after,
    .service-card .glow,
    .icon-number,
    .service-icon {
        animation: none !important;
    }
    
    .service-card.visible:hover {
        transform: translateY(-4px);
    }
}
/* ===== WHY CHOOSE US SECTION ===== */
.why-choose {
    background: linear-gradient(180deg, var(--white) 0%, var(--light-gray) 100%);
}

.section-intro,
.section-conclusion {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.feature-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary-cyan);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.35s ease, 
                border-color 0.35s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

/* Subtle cyan glow overlay on hover */
.feature-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(0, 212, 232, 0.2) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

/* Hover State: Zoom + Depth */
.feature-item:hover {
    transform: scale(1.025);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary-cyan-dark);
    z-index: 2;
}

.feature-item:hover::after {
    opacity: 1;
}

/* Typography inside cards */
.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--primary-black);
    line-height: 1.4;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    /* Reduce zoom on touch devices for better UX */
    .feature-item:hover {
        transform: scale(1.01);
    }
}

/* ===== ACCESSIBILITY: REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    .feature-item {
        transition: box-shadow 0.3s ease, border-color 0.3s ease;
    }
    .feature-item:hover {
        transform: none;
        box-shadow: var(--shadow-md);
    }
    .feature-item::after {
        opacity: 0.3;
    }
}


/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    position: relative;
    transition: var(--transition);
    border: 1px solid transparent;
}

.testimonial-card:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.25rem;
    font-size: 4rem;
    color: var(--primary-cyan);
    opacity: 0.15;
    line-height: 1;
    font-family: Georgia, serif;
    font-weight: bold;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-top: 2rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 700;
    color: var(--primary-cyan);
    display: block;
    font-size: 0.9rem;
}

/* ===== FAQ ===== */
.faq {
    background: var(--light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--medium-gray);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-cyan);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    min-height: 56px;
    touch-action: manipulation;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-cyan);
    transition: var(--transition);
    font-weight: 300;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item[open] {
    border-color: var(--primary-cyan);
    box-shadow: var(--shadow-md);
}

.faq-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--medium-gray);
    padding-top: 1rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ===== FINAL CTA ===== */
.cta-final {
    background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-cyan-dark) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 30%);
    pointer-events: none;
}

.cta-final .container {
    position: relative;
    z-index: 2;
}

.cta-final h2 {
    color: var(--white);
}

.cta-final h2::after {
    background: var(--white);
}

.cta-description {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.98;
    line-height: 1.8;
}

.cta-final .btn-primary {
    background: var(--white);
    color: var(--primary-cyan);
}

.cta-final .btn-primary:hover,
.cta-final .btn-primary:focus {
    background: var(--light-gray);
    color: var(--primary-cyan-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand img {
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
    transition: var(--transition-fast);
}

.footer-brand img:hover {
    transform: scale(1.03);
}

.footer-brand p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--white);
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-cyan);
    border-radius: 2px;
}

.footer-links ul li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: var(--medium-gray);
    font-size: 0.95rem;
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-links a:hover,
.footer-links a:focus {
    color: var(--primary-cyan);
    transform: translateX(3px);
}

.footer-contact p {
    color: var(--medium-gray);
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--medium-gray);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.social-links a:hover,
.social-links a:focus {
    color: var(--primary-cyan);
    background: rgba(0, 212, 232, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--medium-gray);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: var(--medium-gray);
    margin-left: 0.5rem;
}

.footer-bottom a:hover,
.footer-bottom a:focus {
    color: var(--primary-cyan);
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 3.5rem;
        --spacing-xl: 5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-lg);
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0.25rem;
        width: 100%;
    }

    .nav-menu a {
        padding: 0.875rem 1rem;
        font-size: 1.05rem;
        width: 100%;
        border-radius: var(--border-radius);
    }

    .nav-menu a:hover,
    .nav-menu a:focus {
        background: var(--light-gray);
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .mobile-toggle {
        display: block;
        padding: 0.875rem;
        min-width: 48px;
        min-height: 48px;
    }

    section {
        padding: var(--spacing-lg) 0;
    }

    section h2 {
        margin-bottom: 2rem;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .feature-item {
        padding: 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-links ul,
    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .footer-bottom p {
        order: 2;
    }

    .footer-bottom a {
        margin: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 0.95rem 2rem;
        font-size: 1rem;
    }
    
    section h2 {
        font-size: 1.4rem;
    }
    
    .service-card,
    .testimonial-card,
    .feature-item {
        padding: 1.25rem;
    }
    
    .faq-item summary {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .faq-item p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* ===== ACCESSIBILITY & FOCUS STATES ===== */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--primary-cyan);
    outline-offset: 3px;
    border-radius: 6px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .service-card,
    .feature-item,
    .testimonial-card,
    .btn {
        transform: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
        --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.4);
    }
    
    .service-card,
    .testimonial-card,
    .feature-item {
        border-width: 2px;
    }
}

/* ===== SUBTLE ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.intro-content,
.services-grid > *,
.features-grid > *,
.testimonials-grid > * {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: calc(var(--i, 0) * 0.1s);
}

/* Stagger animation delays via inline style or JS */
.services-grid > *:nth-child(1) { --i: 1; }
.services-grid > *:nth-child(2) { --i: 2; }
.services-grid > *:nth-child(3) { --i: 3; }
.services-grid > *:nth-child(4) { --i: 4; }
.services-grid > *:nth-child(5) { --i: 5; }
.services-grid > *:nth-child(6) { --i: 6; }

/* ===== MOBILE STICKY CTA ===== */
@media (max-width: 768px) {
    .mobile-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 0.75rem 1rem;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 998;
        display: flex;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .mobile-cta .btn {
        flex: 1;
        max-width: 200px;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        min-height: 44px;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .site-header,
    .mobile-toggle,
    .cta-final,
    .site-footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    section {
        padding: 1rem 0;
        page-break-inside: avoid;
    }
}

/* ======================================WEB DESIGN PAGE======================================*/
/* Service page hero with dark overlay */
.service-hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), 
                url('../assets/images/web-design-hero.jpg') center/cover no-repeat;
    min-height: 65vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding: 4rem 0;
}

.service-hero h1 {
    color: var(--white) !important;
    -webkit-text-fill-color: white !important;
    margin-bottom: 1rem;
}

.service-hero p {
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin: 0 auto 2rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
}

/* Service card icon styling */
.service-card i {
    font-size: 2rem;
    color: var(--primary-cyan);
    margin-bottom: 1rem;
    display: block;
}

/* Why choose list items */
.feature-item p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
}

.feature-item i {
    margin-top: 3px;
    flex-shrink: 0;
}

/* Testimonial image styling */
.testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 2px solid var(--primary-cyan);
}

.testimonial-card .quote {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.testimonial-card .author {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-cyan);
    display: block;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--primary-cyan);
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .current {
    color: var(--white);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .dropdown-menu {
        display: none;
        background: var(--white);
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-md);
        margin-top: 0.5rem;
        padding: 0.5rem 0;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        display: block;
        padding: 0.5rem 1.5rem;
        color: var(--text-primary);
    }
    
    .dropdown-menu a:hover {
        background: var(--light-gray);
        color: var(--primary-cyan);
    }
}

@media (max-width: 768px) {
    .service-hero {
        min-height: auto;
        padding: 4rem 0;
        text-align: center;
    }
    
    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .breadcrumb {
        justify-content: flex-start;
    }
}
/* ===== CHECKLIST STYLES (Matches Landing Page Design) ===== */
.checklist {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.checklist li {
    position: relative;
    padding-left: 1.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

/* Cyan checkmark using pure CSS */
.checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    background: var(--primary-cyan);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: 14px;
    mask-size: 14px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

/* Subtle hover lift on checklist items */
.checklist li:hover::before {
    transform: scale(1.1);
}

/* Optional: Add subtle glow on hover */
.service-card:hover .checklist li::before {
    box-shadow: 0 0 0 3px rgba(0, 212, 232, 0.15);
}

/* Responsive adjustment */
@media (max-width: 480px) {
    .checklist li {
        font-size: 0.9rem;
        padding-left: 1.6rem;
    }
    
    .checklist li::before {
        width: 16px;
        height: 16px;
        top: 3px;
        -webkit-mask-size: 12px;
        mask-size: 12px;
    }
}
/* ======================================ABOUT US PAGE======================================*/
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}
.mv-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary-cyan);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.commitment-section { background: var(--light-gray); }
.looking-ahead-section { background: var(--white); }
@media (max-width: 768px) {
    .mission-vision-grid { grid-template-columns: 1fr; }
    .about-hero { padding: 5rem 0 3rem; text-align: center; }
    .about-hero .hero-actions { justify-content: center; }
    .breadcrumb { justify-content: center; }
}
/* ===== PROCESS / HOW WE WORK SECTION ===== */
.process-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

/* Dashed Connector Line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--primary-cyan) 0px,
        var(--primary-cyan) 8px,
        transparent 8px,
        transparent 14px
    );
    opacity: 0.25;
    z-index: 0;
    animation: linePulse 4s ease-in-out infinite;
}

@keyframes linePulse {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 0.45; }
}

.process-step {
    position: relative;
    background: var(--card-bg-blue);
    border: 1px solid var(--card-border-light);
    border-radius: var(--border-radius-lg);
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    z-index: 1;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(20px);
}

.process-step.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal delays */
.process-step:nth-child(1) { transition-delay: 0.1s; }
.process-step:nth-child(2) { transition-delay: 0.2s; }
.process-step:nth-child(3) { transition-delay: 0.3s; }
.process-step:nth-child(4) { transition-delay: 0.4s; }
.process-step:nth-child(5) { transition-delay: 0.5s; }

.process-step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-cyan);
    background: var(--white);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-cyan);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    margin: -3.5rem auto 1.25rem;
    position: relative;
    z-index: 2;
    border: 3px solid var(--white);
    box-shadow: 0 4px 12px rgba(0, 212, 232, 0.3);
    transition: var(--transition);
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 212, 232, 0.5);
}

.process-step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary-black);
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1024px) {
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
    .process-step:nth-child(4),
    .process-step:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Vertical connector line */
    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 24px;
        right: auto;
        width: 2px;
        height: 100%;
        background: repeating-linear-gradient(
            180deg,
            var(--primary-cyan) 0px,
            var(--primary-cyan) 8px,
            transparent 8px,
            transparent 14px
        );
    }
    
    .process-step {
        text-align: left;
        padding-left: 3.5rem;
        padding-top: 1.5rem;
    }
    
    .step-number {
        margin: -3.5rem 0 0 -3.5rem;
        position: absolute;
        left: 0;
        top: 0;
    }
    
    .process-step.visible {
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .process-step {
        opacity: 1;
        transform: none;
        transition: box-shadow 0.3s ease, border-color 0.3s ease;
    }
    .process-timeline::before {
        animation: none;
    }
}
/* ===== ABOUT HERO IMAGE STYLING ===== */
.about-hero .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--card-border-light);
    background: var(--light-gray);
    transition: var(--transition);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-wrapper:hover {
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-cyan);
}

.image-wrapper:hover img {
    transform: scale(1.03);
}

/* Cyan accent corner for brand consistency */
.image-accent {
    position: absolute;
    top: -1px;
    right: -1px;
    width: 36px;
    height: 36px;
    background: var(--primary-cyan);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    z-index: 2;
    opacity: 0.9;
}

/* Responsive stacking */
@media (max-width: 1024px) {
    .about-hero .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .about-hero .hero-visual {
        order: -1;
        min-height: auto;
    }
    
    .image-wrapper {
        max-width: 420px;
        margin: 0 auto;
    }
    
    .breadcrumb {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .image-wrapper {
        max-width: 100%;
        border-radius: var(--border-radius);
    }
}
/* ===== WHO WE ARE SECTION ===== */
.who-we-are {
    background: var(--white);
    padding: 5rem 0;
}

.who-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 212, 232, 0.1);
    color: var(--primary-cyan-dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 212, 232, 0.2);
}
 .who-accent{
        margin-top:20%;
    }
.who-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    padding-bottom: 0;
}

.who-content h2::after {
    left: 0;
    transform: none;
}

.who-text {
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-cyan);
}

.who-text .lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.who-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Accent Card */
.accent-card {
    background: var(--card-bg-blue);
    border: 1px solid var(--card-border-light);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.accent-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-cyan);
}

.circuit-deco {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--primary-cyan-light) 0%, transparent 70%);
    opacity: 0.4;
    pointer-events: none;
}

.accent-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.accent-card blockquote {
    margin: 0;
    padding: 0;
    border: none;
}

.accent-card blockquote p {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.accent-card blockquote p::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -15px;
    font-size: 3rem;
    color: var(--primary-cyan);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .who-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
   
    
    .who-content h2 {
        text-align: center;
    }
    
    .who-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .who-text {
        padding-left: 0;
        border-left: none;
        border-top: 3px solid var(--primary-cyan);
        padding-top: 1.5rem;
    }
    
    .section-tag {
        margin: 0 auto 1rem;
    }
}

@media (max-width: 480px) {
    .who-we-are {
        padding: 4rem 0;
    }
    
    .who-text .lead {
        font-size: 1.05rem;
    }
    
    .accent-card {
        padding: 1.5rem;
    }
}
/* ===== INDUSTRIES SECTION ===== */
.industries-section {
    padding: 2rem 0;
    background: var(--light-gray);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin: 3rem 0;
}

.industry-card {
    background: var(--white);
    padding: 1.75rem 1.25rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--medium-gray);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(20px);
}

.industry-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Top accent bar reveal on hover */
.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-cyan);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-cyan);
}

.industry-card:hover::before {
    transform: scaleX(1);
}

.industry-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-cyan);
    margin-bottom: 0.6rem;
    opacity: 0.25;
    transition: opacity 0.3s ease;
    font-family: monospace;
}

.industry-card:hover .industry-number {
    opacity: 1;
}

.industry-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

/* Staggered animation delays */
.industry-card:nth-child(1) { transition-delay: 0.05s; }
.industry-card:nth-child(2) { transition-delay: 0.1s; }
.industry-card:nth-child(3) { transition-delay: 0.15s; }
.industry-card:nth-child(4) { transition-delay: 0.2s; }
.industry-card:nth-child(5) { transition-delay: 0.25s; }
.industry-card:nth-child(6) { transition-delay: 0.3s; }
.industry-card:nth-child(7) { transition-delay: 0.35s; }
.industry-card:nth-child(8) { transition-delay: 0.4s; }
.industry-card:nth-child(9) { transition-delay: 0.45s; }
.industry-card:nth-child(10) { transition-delay: 0.5s; }

/* Responsive Grid */
@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
    .industry-card {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.25rem;
    }
    .industry-number {
        margin: 0;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .industry-card {
        opacity: 1;
        transform: none;
        transition: box-shadow 0.3s ease, border-color 0.3s ease;
    }
    .industry-card.visible {
        opacity: 1;
        transform: none;
    }
    .industry-card::before {
        transform: scaleX(1);
        transition: none;
    }
}
/* ===== COMMITMENT SECTION ===== */
.commitment-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.commitment-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: start;
}

.commitment-content h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    padding-bottom: 0;
}

.commitment-content h2::after {
    left: 0;
    transform: none;
}

.commitment-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.commitment-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top:10%;
}

.value-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary-cyan);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(15px);
}

.value-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.value-card:nth-child(1) { transition-delay: 0.1s; }
.value-card:nth-child(2) { transition-delay: 0.2s; }
.value-card:nth-child(3) { transition-delay: 0.3s; }
.value-card:nth-child(4) { transition-delay: 0.4s; }

.value-card:hover {
    transform: translateY(-4px) translateX(4px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary-cyan-dark);
}

.value-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--primary-black);
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* ===== LOOKING AHEAD SECTION ===== */
.looking-ahead-section {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.future-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.future-content h2 {
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.closing-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Subtle decorative gradient orb */
.future-accent {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-cyan-light) 0%, transparent 70%);
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
    animation: accentFloat 8s ease-in-out infinite;
}

@keyframes accentFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 20px); }
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1024px) {
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .commitment-content h2 {
        text-align: center;
    }
    
    .commitment-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .section-tag {
        margin: 0 auto 1rem;
    }
}

@media (max-width: 768px) {
    .commitment-values {
        grid-template-columns: 1fr;
    }
    
    .looking-ahead-section {
        padding: 4rem 0;
    }
    
    .lead-text,
    .closing-text {
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .value-card {
        opacity: 1;
        transform: none;
        transition: box-shadow 0.3s ease, border-color 0.3s ease;
    }
    .value-card.visible {
        opacity: 1;
        transform: none;
    }
    .future-accent {
        animation: none;
    }
}