/* 
   SV Digital One - Premium Global Stylesheet
   Theme: Elegant Navy & Premium Teal with Glassmorphism
   Author: Antigravity AI
*/

/* ============================================
   1. GLOBAL RESET & CSS VARIABLES
   ============================================ */
:root {
    --primary: #0b2c5c;
    --primary-dark: #061d3a;
    --primary-deeper: #041228;
    --primary-light: #153e77;
    --accent: #008080;
    --accent-light: #00b8b8;
    --accent-glow: #00e5ff;
    --accent-warm: #00d4aa;
    --gold: #d4a853;
    --gold-light: #f0d78c;
    --bg-light: #f6fafb;
    --bg-white: #ffffff;
    --bg-cream: #fafcfd;
    --text-dark: #1a2332;
    --text-muted: #5a6b7f;
    --text-light: #f8fafc;
    --border-color: #e4eaf0;
    --border-teal: #d5f0ef;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-shadow: 0 8px 32px rgba(11, 44, 92, 0.08);
    --shadow-sm: 0 2px 8px rgba(11, 44, 92, 0.06);
    --shadow-md: 0 8px 24px rgba(11, 44, 92, 0.08);
    --shadow-lg: 0 16px 48px rgba(11, 44, 92, 0.12);
    --shadow-xl: 0 24px 64px rgba(11, 44, 92, 0.16);
    --shadow-glow-teal: 0 0 30px rgba(0, 168, 168, 0.2);
    --shadow-glow-blue: 0 0 30px rgba(11, 44, 92, 0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   2. UTILITY CLASSES & LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 7.5rem 0;
}

.bg-alt {
    background-color: var(--bg-light);
    position: relative;
}

/* Subtle diagonal divider between sections */
.bg-alt::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom right, transparent 49.5%, var(--bg-light) 50%);
}

.hidden {
    display: none !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.revealed, .reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   3. TYPOGRAPHY & SECTION HEADERS
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-glow) 50%, var(--accent-warm) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    margin-bottom: 4.5rem;
}

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

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.08) 0%, rgba(0, 229, 255, 0.06) 100%);
    padding: 0.4rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(0, 128, 128, 0.12);
    backdrop-filter: blur(4px);
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
}

.section-title {
    font-size: 2.65rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-glow) 100%);
    margin: 0.75rem auto 1.5rem;
    border-radius: 2px;
    position: relative;
}

.section-line::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--accent-glow);
    border-radius: 50%;
}

.text-center .section-line {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   4. PREMIUM BUTTON STYLES
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.95rem 2.25rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #00b3a0 50%, var(--accent-light) 100%);
    background-size: 200% 200%;
    color: var(--text-light);
    box-shadow: 0 4px 20px rgba(0, 128, 128, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
    background-position: 100% 100%;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 168, 168, 0.45);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    margin-left: 1rem;
    position: relative;
    z-index: 1;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary);
    z-index: -1;
    transition: height 0.35s ease;
}

.btn-secondary:hover {
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover::after {
    height: 100%;
}

/* ============================================
   5. HEADER / NAVBAR (Glassmorphic)
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0.6rem 0;
    box-shadow: 0 1px 40px rgba(11, 44, 92, 0.06);
    border-bottom: 1px solid rgba(0, 128, 128, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    display: block;
    height: 42px;
}

.nav-menu ul {
    display: flex;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary);
    padding: 0.5rem 1.1rem;
    position: relative;
    letter-spacing: 0.2px;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-glow));
    transition: var(--transition);
    border-radius: 2px;
}

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

.btn-nav-contact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--text-light) !important;
    padding: 0.55rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-left: 0.75rem;
    box-shadow: 0 4px 12px rgba(11, 44, 92, 0.2);
    border: 1px solid rgba(255,255,255,0.08);
}

.btn-nav-contact:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--text-light) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.3);
}

.btn-nav-contact::after {
    display: none;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    z-index: 10;
}

.mobile-toggle .bar {
    width: 100%;
    height: 2.5px;
    background-color: var(--primary);
    border-radius: 4px;
    transition: var(--transition);
    transform-origin: center;
}

/* ============================================
   6. HERO SECTION (Premium)
   ============================================ */
.hero-section {
    position: relative;
    padding-top: 11rem;
    padding-bottom: 4rem;
    background: linear-gradient(170deg, #ffffff 0%, #f0fafa 35%, #e8f4f8 60%, #ffffff 100%);
    overflow: hidden;
}

/* Animated mesh gradient overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 140%;
    background: radial-gradient(ellipse at 30% 50%, rgba(0, 229, 255, 0.06) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 20%, rgba(11, 44, 92, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: meshFloat 15s ease-in-out infinite alternate;
}

@keyframes meshFloat {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-30px, 20px) rotate(2deg); }
}

/* Decorative grid dots */
.hero-section::after {
    content: '';
    position: absolute;
    top: 80px;
    right: 40px;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(circle, rgba(0, 168, 168, 0.12) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 0;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.hero-bg-shapes .shape-1 {
    top: -15%;
    right: -8%;
    width: 45%;
    height: 55%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, transparent 70%);
    animation: shapeFloat1 12s ease-in-out infinite alternate;
}

.hero-bg-shapes .shape-2 {
    bottom: -20%;
    left: -12%;
    width: 45%;
    height: 65%;
    background: radial-gradient(circle, rgba(11, 44, 92, 0.06) 0%, transparent 70%);
    animation: shapeFloat2 14s ease-in-out infinite alternate;
}

@keyframes shapeFloat1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-20px, 15px) scale(1.05); }
}

@keyframes shapeFloat2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(15px, -10px) scale(1.03); }
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.badge-launch {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.06) 0%, rgba(0, 229, 255, 0.04) 100%);
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 2px;
    padding: 0.45rem 1.4rem;
    border-radius: 50px;
    margin-bottom: 1.75rem;
    border: 1px solid rgba(0, 128, 128, 0.12);
    backdrop-filter: blur(8px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    position: relative;
}

.pulse-dot::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--accent);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(3); opacity: 0; }
}

.hero-title {
    font-size: 3.75rem;
    line-height: 1.1;
    margin-bottom: 1.75rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 520px;
    line-height: 1.75;
}

.hero-dynamic-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 2.75rem;
    display: flex;
    align-items: center;
}

.typewriter {
    color: var(--accent-light);
    font-weight: 800;
    margin-left: 6px;
    border-right: 2.5px solid var(--accent);
    padding-right: 4px;
    animation: caret 0.8s infinite;
    min-width: 10px;
}

@keyframes caret {
    50% { border-color: transparent; }
}

.hero-ctas {
    display: flex;
    align-items: center;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: auto;
}

.rocket-container {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px rgba(11, 44, 92, 0.08));
}

.rocket-svg {
    width: 100%;
    height: auto;
}

/* Rocket and floating element animations */
.rocket-ship {
    animation: floatShip 5s ease-in-out infinite;
}

@keyframes floatShip {
    0% { transform: translate(180px, 80px) rotate(15deg); }
    50% { transform: translate(184px, 64px) rotate(15deg); }
    100% { transform: translate(180px, 80px) rotate(15deg); }
}

.card-growth {
    animation: floatCard1 6s ease-in-out infinite;
}

.card-leads {
    animation: floatCard2 7s ease-in-out infinite;
}

@keyframes floatCard1 {
    0% { transform: translate(320px, 280px); }
    50% { transform: translate(320px, 264px); }
    100% { transform: translate(320px, 280px); }
}

@keyframes floatCard2 {
    0% { transform: translate(40px, 240px); }
    50% { transform: translate(40px, 256px); }
    100% { transform: translate(40px, 240px); }
}

/* Hero Bottom Strip */
.hero-bottom-strip {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--text-light);
    padding: 1.75rem 0;
    margin-top: 5.5rem;
    border-top: 3px solid var(--accent);
    position: relative;
    overflow: hidden;
}

/* Animated shimmer on strip */
.hero-bottom-strip::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.05), transparent);
    animation: stripShimmer 5s infinite;
}

@keyframes stripShimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.strip-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.strip-item {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
}

.strip-icon {
    color: var(--accent-glow);
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.strip-divider {
    width: 1px;
    height: 28px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* ============================================
   7. SERVICES SECTION (Glassmorphic Cards)
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.75rem 2.25rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 128, 128, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Gradient top border that scales on hover */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-glow) 50%, var(--accent-warm) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Subtle inner glow on hover */
.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg), var(--shadow-glow-teal);
    border-color: rgba(0, 168, 168, 0.15);
}

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

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--border-teal) 0%, rgba(0, 128, 128, 0.08) 100%);
    color: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--text-light);
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.3);
    transform: scale(1.08);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card:hover h3 {
    color: var(--accent);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.925rem;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* ============================================
   8. PARTNER ECOSYSTEM SECTION
   ============================================ */
.ecosystem-section {
    overflow: hidden;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.ecosystem-intro .section-title {
    margin-bottom: 1.5rem;
}

.ecosystem-intro .section-line {
    margin-left: 0;
}

.ecosystem-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.ecosystem-illus {
    display: flex;
    justify-content: flex-start;
}

.ecosystem-illus svg {
    filter: drop-shadow(0 8px 24px rgba(11, 44, 92, 0.1));
}

.ecosystem-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.partner-card {
    background: var(--bg-white);
    padding: 1.75rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Glowing left accent border */
.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent) 0%, var(--accent-glow) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.partner-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md), var(--shadow-glow-teal);
    border-color: var(--border-teal);
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
}

.partner-logo svg {
    margin-right: 10px;
}

.vyapar-logo { color: #ff4d4d; }
.pagarbook-logo { color: #1565c0; }
.gogst-logo { color: #2e7d32; }
.whatsapp-logo { color: #4caf50; }

.partner-tag {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.06), rgba(0, 229, 255, 0.04));
    color: var(--primary-light);
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    letter-spacing: 0.3px;
    transition: var(--transition);
}

.partner-card:hover .partner-tag {
    background: linear-gradient(135deg, var(--border-teal), rgba(0, 128, 128, 0.1));
    color: var(--accent);
    border-color: var(--border-teal);
}

.partner-body p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   9. PROCESS TIMELINE SECTION
   ============================================ */
.process-timeline {
    position: relative;
    max-width: 880px;
    margin: 5rem auto 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 2.35rem;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent) 0%, var(--accent-glow) 50%, var(--border-color) 100%);
    z-index: 1;
}

.timeline-step {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
    padding-left: 5.5rem;
    display: flex;
    align-items: flex-start;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    width: 4.7rem;
    height: 4.7rem;
    background: var(--bg-white);
    border: 3px solid var(--accent);
    color: var(--accent);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px rgba(0, 128, 128, 0.06);
    transition: var(--transition);
}

.timeline-step:hover .step-number {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    color: var(--text-light);
    border-color: var(--accent);
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(0, 128, 128, 0.1), 0 0 25px rgba(0, 128, 128, 0.25);
}

.step-content {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2rem 2.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    width: 100%;
}

.timeline-step:hover .step-content {
    border-color: var(--border-teal);
    box-shadow: var(--shadow-md);
    background: var(--bg-white);
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   10. BENEFITS & INDUSTRIES SECTION
   ============================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 5rem;
}

.benefits-column .section-title {
    margin-bottom: 1.25rem;
}

.benefits-column .section-line {
    margin-left: 0;
}

.benefits-intro-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.75rem;
    line-height: 1.7;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    transition: var(--transition);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    margin: -0.75rem;
}

.benefit-item:hover {
    background: rgba(0, 128, 128, 0.03);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--border-teal) 0%, rgba(0, 229, 255, 0.08) 100%);
    color: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1.25rem;
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
    box-shadow: 0 4px 16px rgba(0, 128, 128, 0.2);
    transform: scale(1.05);
}

.benefit-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

/* Stats & Industries */
.stats-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.stat-box {
    background: var(--bg-white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Subtle background gradient on stat boxes */
.stat-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 229, 255, 0.04) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-teal);
}

.stat-box:hover::before {
    opacity: 1;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.stat-label {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.3rem;
    position: relative;
    z-index: 1;
}

.industries-card {
    background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    color: var(--text-light);
    padding: 2.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border-bottom: 4px solid var(--accent);
    position: relative;
    overflow: hidden;
}

/* Decorative pattern overlay */
.industries-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(circle, rgba(0, 229, 255, 0.08) 1px, transparent 1px);
    background-size: 16px 16px;
    pointer-events: none;
}

.industries-card h3 {
    color: var(--text-light);
    font-size: 1.45rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.industries-card > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 1;
}

.industries-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    position: relative;
    z-index: 1;
}

.ind-tag {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    padding: 0.45rem 1.1rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: var(--transition);
    cursor: default;
    backdrop-filter: blur(4px);
}

.ind-tag:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 168, 168, 0.3);
}

/* ============================================
   11. TESTIMONIALS SECTION
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2.75rem 2.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Quote decoration */
.testimonial-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 128, 128, 0.04);
    position: absolute;
    top: -20px;
    left: 12px;
    line-height: 1;
    pointer-events: none;
    transition: var(--transition);
}

.testimonial-card:hover::before {
    color: rgba(0, 128, 128, 0.08);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-teal);
}

.testimonial-card .stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.testimonial-card .quote {
    font-style: italic;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2.25rem;
    position: relative;
    z-index: 1;
}

.client-info {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.client-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #ff4d4d, #ff6b6b);
    color: var(--text-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 0.85rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(255, 77, 77, 0.2);
}

.client-avatar.font-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    box-shadow: 0 4px 10px rgba(0, 128, 128, 0.2);
}

.client-avatar.font-blue {
    background: linear-gradient(135deg, #1565c0, #1e88e5);
    box-shadow: 0 4px 10px rgba(21, 101, 192, 0.2);
}

.client-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.1rem;
}

.client-info p {
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* ============================================
   12. CONTACT & FORM SECTION
   ============================================ */
.contact-section {
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
}

.contact-info-column .section-title {
    margin-bottom: 1.5rem;
}

.contact-info-column .section-line {
    margin-left: 0;
}

.contact-intro {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.75rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    margin: -0.5rem;
}

.detail-item:hover {
    background: rgba(0, 128, 128, 0.03);
}

.detail-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--border-teal) 0%, rgba(0, 128, 128, 0.06) 100%);
    color: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1.25rem;
    transition: var(--transition);
}

.detail-item:hover .detail-icon {
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.15);
}

.detail-label {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.detail-link {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
}

.detail-link:hover {
    color: var(--accent);
}

.detail-text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    color: var(--primary);
}

.qr-block {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    max-width: 380px;
}

.qr-placeholder {
    margin-right: 1.25rem;
    flex-shrink: 0;
}

.qr-text .qr-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 0.15rem;
}

.qr-text .qr-subtitle {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Contact Form (Premium Glassmorphic) */
.contact-form-column {
    position: relative;
}

.form-wrapper {
    background: var(--bg-white);
    padding: 3rem 2.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

/* Gradient top accent */
.form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-glow) 50%, var(--accent-warm) 100%);
}

/* Decorative corner glow */
.form-wrapper::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.form-wrapper h3 {
    font-size: 1.65rem;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 1;
}

.form-wrapper > p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.25rem;
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 1.35rem;
    position: relative;
    z-index: 1;
}

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

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 0.45rem;
}

.form-group label .required {
    color: #ff4d4d;
}

.form-group label .sub-label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1.1rem;
    font-family: var(--font-body);
    font-size: 0.925rem;
    border: 1.5px solid var(--border-color);
    background-color: var(--bg-cream);
    border-radius: var(--radius-sm);
    outline: none;
    transition: var(--transition);
    color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.08);
    background-color: #ffffff;
}

.form-group.invalid input,
.form-group.invalid textarea {
    border-color: #ff4d4d;
    box-shadow: 0 0 0 4px rgba(255, 77, 77, 0.08);
}

.form-group .error-msg {
    display: none;
    color: #ff4d4d;
    font-size: 0.75rem;
    margin-top: 0.4rem;
    font-weight: 500;
}

.form-group.invalid .error-msg {
    display: block;
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1rem;
    margin-top: 0.5rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding: 0.5rem 0.5rem 0.5rem 2.2rem;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.83rem;
    font-weight: 500;
    color: var(--text-dark);
    user-select: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.checkbox-container:hover {
    background: rgba(0, 128, 128, 0.04);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0.5rem;
    height: 1.15rem;
    width: 1.15rem;
    background-color: var(--bg-cream);
    border: 1.5px solid var(--border-color);
    border-radius: 5px;
    transition: var(--transition);
}

.checkbox-container:hover input ~ .checkmark {
    border-color: var(--accent);
}

.checkbox-container input:checked ~ .checkmark {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(0, 128, 128, 0.25);
}

.checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark::after {
    display: block;
}

.checkbox-container .checkmark::after {
    left: 5px;
    top: 1.5px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Premium Submit Button */
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, #00b3a0 50%, var(--accent-light) 100%);
    background-size: 200% 200%;
    color: var(--text-light);
    font-size: 1rem;
    box-shadow: 0 6px 24px rgba(0, 128, 128, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
    margin-top: 1.25rem;
    position: relative;
    padding: 1rem 2rem;
    letter-spacing: 0.3px;
}

.btn-submit:hover {
    background-position: 100% 100%;
    box-shadow: 0 8px 32px rgba(0, 168, 168, 0.4);
    transform: translateY(-2px);
}

.spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #ffffff;
    animation: spin 0.8s linear infinite;
    position: absolute;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Alerts */
.form-alert {
    padding: 0.95rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
}

.form-alert.success {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-alert.error {
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ============================================
   13. FOOTER SECTION
   ============================================ */
.main-footer {
    background: linear-gradient(170deg, var(--primary-deeper) 0%, var(--primary-dark) 50%, var(--primary) 100%);
    color: var(--text-light);
    padding: 5.5rem 0 2.5rem 0;
    border-top: 3px solid var(--accent);
    position: relative;
    overflow: hidden;
}

/* Footer decorative dots */
.main-footer::before {
    content: '';
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 160px;
    height: 160px;
    background-image: radial-gradient(circle, rgba(0, 229, 255, 0.06) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    pointer-events: none;
}

.footer-container {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand .logo-svg {
    height: 35px;
}

.footer-tagline {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(90deg, var(--accent-glow), var(--accent-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
}

.footer-links h4, .footer-solutions h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.65rem;
}

.footer-links h4::after, .footer-solutions h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-glow));
    border-radius: 1px;
}

.footer-links ul, .footer-solutions ul {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a, .footer-solutions a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover, .footer-solutions a:hover {
    color: var(--accent-glow);
    padding-left: 6px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-motto {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    background: linear-gradient(90deg, var(--accent-glow), var(--accent-warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
}

/* ============================================
   14. RESPONSIVE MEDIA QUERIES
   ============================================ */

@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-container,
    .ecosystem-grid,
    .benefits-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .rocket-container {
        max-width: 360px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ecosystem-intro .section-line {
        margin-left: auto;
    }
    
    .benefits-column .section-line {
        margin-left: auto;
    }
    
    .contact-info-column .section-line {
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .section-padding {
        padding: 5rem 0;
    }
    
    .bg-alt::before {
        display: none;
    }
    
    .main-header {
        padding: 0.75rem 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.06);
        border-top: 1px solid var(--border-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .nav-menu.open {
        max-height: 420px;
    }
    
    .nav-menu ul {
        flex-direction: column;
        padding: 1.75rem 2rem;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .nav-link {
        padding: 0.35rem 0;
        width: 100%;
    }
    
    .nav-link::after {
        left: 0;
        transform: none;
    }
    
    .nav-link:hover::after, .nav-link.active::after {
        width: 35px;
    }
    
    .btn-nav-contact {
        margin-left: 0;
        width: 100%;
        text-align: center;
        margin-top: 0.75rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section::after {
        display: none;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-line {
        left: 1.75rem;
    }
    
    .timeline-step {
        padding-left: 4.25rem;
    }
    
    .step-number {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.1rem;
    }
    
    .stats-card-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
    }
    
    .btn-secondary {
        margin-left: 0;
    }
    
    .form-row, .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-wrapper {
        padding: 2.25rem 1.5rem;
    }
    
    .stats-card-grid {
        grid-template-columns: 1fr;
    }
    
    .strip-container {
        justify-content: center;
    }
    
    .strip-divider {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
