:root {
    --primary: #38c8c2;
    --primary-dark: #1d9a9f;
    --primary-light: #8ffff2;
    --primary-glow: rgba(56, 200, 194, 0.24);
    --secondary: #e8edf4;
    --secondary-light: #223a62;
    --navy: #11233f;
    --dark: #060e1b;
    --accent: #ff845b;
    --accent-dark: #cc5637;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-dark: #e2e8f0;
    --text-body: #94a3b8;
    --surface: rgba(255, 255, 255, 0.06);
    --surface-light: rgba(255, 255, 255, 0.08);
    --bg-white: #0a1628;
    --bg-light: #0c1a2e;
    --bg-alt: #0e1e35;
    --border-dark: rgba(255, 255, 255, 0.08);
    --border-glass: rgba(255, 255, 255, 0.1);
    --gradient-primary: linear-gradient(135deg, #42d9d0 0%, #1d9a9f 100%);
    --gradient-hero: radial-gradient(circle at 15% 55%, rgba(56, 200, 194, 0.14), transparent 28%), radial-gradient(circle at top left, rgba(56, 200, 194, 0.25), transparent 34%), radial-gradient(circle at 85% 20%, rgba(255, 132, 91, 0.18), transparent 22%), linear-gradient(135deg, #091426 0%, #0c1a32 35%, #112645 70%, #17365e 100%);
    --gradient-accent: linear-gradient(135deg, #ff845b 0%, #ff6b3d 50%, #e84f20 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
    --font-heading: "Sora", sans-serif;
    --font-body: "Manrope", sans-serif;
    --radius-sm: 14px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --radius-2xl: 36px;
    --radius-full: 999px;
    --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 22px 50px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 38px 80px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 42px 90px rgba(0, 0, 0, 0.45);
    --shadow-glow: 0 18px 50px rgba(56, 200, 194, 0.3);
    --shadow-glow-accent: 0 18px 50px rgba(255, 132, 91, 0.25);
}

/* ===== Keyframe Animations ===== */

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(56, 200, 194, 0.3); }
    50% { box-shadow: 0 0 30px 8px rgba(56, 200, 194, 0.15); }
}

@keyframes orbit-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes orbit-spin-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes badge-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.4); }
}

@keyframes slide-up-fade {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scale-in {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

/* ===== Light Theme Overrides ===== */
html.light-theme {
    --primary: #1d9a9f;
    --primary-dark: #167578;
    --primary-light: #38c8c2;
    --primary-glow: rgba(29, 154, 159, 0.18);
    --secondary: #f0f4f8;
    --secondary-light: #e2e8f0;
    --navy: #1e3a5f;
    --dark: #f8fafc;
    --accent: #e06838;
    --accent-dark: #cc5637;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-dark: #1a202c;
    --text-body: #4a5568;
    --surface: rgba(0, 0, 0, 0.04);
    --surface-light: rgba(0, 0, 0, 0.06);
    --bg-white: #ffffff;
    --bg-light: #f7fafc;
    --bg-alt: #edf2f7;
    --border-dark: rgba(0, 0, 0, 0.1);
    --border-glass: rgba(0, 0, 0, 0.08);
    --gradient-primary: linear-gradient(135deg, #38c8c2 0%, #1d9a9f 100%);
    --gradient-hero: radial-gradient(circle at 15% 55%, rgba(56, 200, 194, 0.08), transparent 28%), radial-gradient(circle at top left, rgba(56, 200, 194, 0.12), transparent 34%), radial-gradient(circle at 85% 20%, rgba(255, 132, 91, 0.08), transparent 22%), linear-gradient(135deg, #f0f9ff 0%, #f7fafc 35%, #edf2f7 70%, #e2e8f0 100%);
    --gradient-accent: linear-gradient(135deg, #ff845b 0%, #ff6b3d 50%, #e84f20 100%);
    --gradient-glass: linear-gradient(135deg, rgba(0,0,0,0.04), rgba(0,0,0,0.02));
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 8px 30px rgba(29, 154, 159, 0.2);
    --shadow-glow-accent: 0 8px 30px rgba(255, 132, 91, 0.15);
}

html.light-theme body {
    background:
        radial-gradient(circle at 0% 0%, rgba(56, 200, 194, 0.06), transparent 30%),
        radial-gradient(circle at 100% 0%, rgba(255, 132, 91, 0.04), transparent 22%),
        radial-gradient(circle at 50% 100%, rgba(56, 200, 194, 0.03), transparent 35%),
        var(--bg-white);
}

html.light-theme .navbar.scrolled { background: rgba(255, 255, 255, 0.95); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
html.light-theme .nav-link:hover, html.light-theme .nav-link.active { color: var(--primary-dark); }
html.light-theme .hero-title { color: #1a202c; }
html.light-theme .hero { background: var(--gradient-hero); }
html.light-theme .btn-secondary { color: var(--primary-dark); border-color: var(--primary); }
html.light-theme .btn-secondary:hover { color: #fff; }
html.light-theme .btn-outline { color: #4a5568; border-color: rgba(0,0,0,0.15); }
html.light-theme .btn-outline:hover { background: rgba(0,0,0,0.05); color: #1a202c; }
html.light-theme .btn-white { background: rgba(0,0,0,0.04); color: #4a5568; }
html.light-theme .hero-float-card { background: rgba(255,255,255,0.9); border-color: rgba(0,0,0,0.1); }
html.light-theme .float-card-title { color: #1a202c; }
html.light-theme .bar { background: #1a202c; }
html.light-theme .gradient-text { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* Mobile nav light overrides */
@media (max-width: 768px) {
    html.light-theme .nav-links { background: rgba(255, 255, 255, 0.98); box-shadow: -10px 0 40px rgba(0,0,0,0.1); }
    html.light-theme .nav-link { color: #4a5568; border-bottom-color: rgba(0,0,0,0.06); }
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background:
        radial-gradient(circle at 0% 0%, rgba(56, 200, 194, 0.06), transparent 30%),
        radial-gradient(circle at 100% 0%, rgba(255, 132, 91, 0.04), transparent 22%),
        radial-gradient(circle at 50% 100%, rgba(56, 200, 194, 0.03), transparent 35%),
        var(--bg-white);
    overflow-x: hidden;
}

.container {
    width: min(1200px, calc(100% - 2rem));
    padding: 0;
}

.section-padding,
.section {
    padding: 6.5rem 0;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.button-row-center {
    justify-content: center;
}

.gradient-text {
    background: linear-gradient(135deg, #87fff1 0%, #3fe4d4 30%, #ffc1a3 70%, #87fff1 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 6s ease-in-out infinite;
}

.navbar {
    padding: 1.1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(7, 18, 33, 0.88);
    box-shadow: 0 12px 40px rgba(7, 18, 33, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.85rem 0;
}

.nav-container {
    width: min(1280px, calc(100% - 2rem));
    gap: 1.5rem;
}

.logo-lockup {
    width: auto;
    height: 48px;
    max-width: 210px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(1.15) drop-shadow(0 0 12px rgba(56, 200, 194, 0.35)) drop-shadow(0 0 30px rgba(56, 200, 194, 0.15));
}

.logo-lockup:hover {
    transform: scale(1.05);
    filter: brightness(1.25) drop-shadow(0 0 18px rgba(56, 200, 194, 0.5)) drop-shadow(0 0 40px rgba(56, 200, 194, 0.2));
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.3rem;
    color: #ffffff;
}

.nav-links {
    gap: 1.75rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

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

.nav-link::after {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn {
    border-radius: var(--radius-full);
    font-weight: 800;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 1;
    animation: shimmer 1.2s ease-in-out;
}

.btn-primary {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    box-shadow: 0 22px 60px rgba(56, 200, 194, 0.35);
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.btn-outline {
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-white {
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: none;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero {
    padding: 8.75rem 0 5.5rem;
    background: var(--gradient-hero);
    position: relative;
}

.hero::before {
    top: auto;
    right: auto;
    bottom: 6%;
    left: -10%;
    width: 35rem;
    height: 35rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 200, 194, 0.2), transparent 65%);
    filter: blur(10px);
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: "";
    position: absolute;
    top: 10%;
    right: -8%;
    width: 30rem;
    height: 30rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 132, 91, 0.16), transparent 60%);
    pointer-events: none;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 3rem;
}

.hero-content {
    max-width: 640px;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 40px;
    width: 280px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(56, 200, 194, 0.12) 0%, rgba(56, 200, 194, 0.04) 40%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}

.hero-badge {
    padding: 0.7rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.hero-badge-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(56, 200, 194, 0.16);
    animation: badge-pulse 2s ease-in-out infinite;
}

.hero-logo {
    width: auto;
    height: clamp(80px, 14vw, 140px);
    max-width: min(100%, 420px);
    object-fit: contain;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    filter: brightness(1.2) drop-shadow(0 0 24px rgba(56, 200, 194, 0.5)) drop-shadow(0 0 60px rgba(56, 200, 194, 0.2)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.hero-logo-wrap {
    position: relative;
    display: inline-block;
}

.hero-logo-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 180%;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(56, 200, 194, 0.15) 0%, rgba(56, 200, 194, 0.06) 35%, transparent 65%);
    pointer-events: none;
    z-index: 0;
    animation: pulse-glow 4s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1.4rem;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.78);
    max-width: 42rem;
    margin-bottom: 2rem;
}

.hero-cta {
    margin-bottom: 2.2rem;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.hero-proof-item {
    padding: 1.1rem 1.1rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.hero-proof-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
}

.hero-proof-item strong {
    display: block;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    margin-bottom: 0.25rem;
}

.hero-proof-item span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.hero-stage {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stage-shell {
    width: 100%;
    max-width: 520px;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 38px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

.hero-stage-shell:hover {
    transform: translateY(-6px);
}

.hero-stage-header,
.hero-stage-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.87rem;
}

.hero-stage-header {
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stage-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.2rem 0;
}

.hero-panel {
    padding: 1.35rem;
    border-radius: 24px;
    background: rgba(7, 18, 33, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.hero-panel:hover {
    transform: translateY(-4px);
    background: rgba(7, 18, 33, 0.6);
    border-color: rgba(56, 200, 194, 0.2);
}

.hero-panel-wide {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(56, 200, 194, 0.18), rgba(255, 255, 255, 0.08));
}

.hero-panel-wide:hover {
    background: linear-gradient(135deg, rgba(56, 200, 194, 0.24), rgba(255, 255, 255, 0.12));
}

.panel-kicker {
    display: inline-flex;
    margin-bottom: 0.7rem;
    padding: 0.35rem 0.7rem;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-panel h3 {
    font-family: var(--font-heading);
    color: #ffffff;
    font-size: 1.15rem;
    margin-bottom: 0.45rem;
}

.hero-panel p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.93rem;
}

.hero-stage-footer {
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
    display: block;
    color: #ffffff;
    font-weight: 800;
}

.metric-label {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
}

.hero-orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.hero-orbit-a {
    width: 540px;
    height: 540px;
    top: 18px;
    right: -12px;
    animation: orbit-spin 40s linear infinite;
}

.hero-orbit-b {
    width: 440px;
    height: 440px;
    bottom: 16px;
    left: 12px;
    animation: orbit-spin-reverse 35s linear infinite;
}

.trust-strip {
    position: relative;
    z-index: 2;
    margin-top: -2.3rem;
}

.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.4rem 1.6rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(16px);
}

.trust-strip-inner p {
    color: var(--text-secondary);
    font-weight: 700;
}

.trust-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.trust-tags span {
    padding: 0.65rem 0.95rem;
    border-radius: var(--radius-full);
    background: rgba(56, 200, 194, 0.1);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 800;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-tags span:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(56, 200, 194, 0.2);
}

.section-header {
    max-width: 760px;
    margin-bottom: 3.5rem;
}

.section-tag {
    padding: 0.5rem 0.95rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(56, 200, 194, 0.12), rgba(56, 200, 194, 0.06));
    color: var(--primary-dark);
    font-weight: 800;
    letter-spacing: 0.08em;
    border: 1px solid rgba(56, 200, 194, 0.15);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.services-overview {
    background: linear-gradient(180deg, rgba(56, 200, 194, 0.04) 0%, rgba(10, 22, 40, 0.6) 100%);
    position: relative;
}

.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
}

.service-card {
    padding: 2rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(56, 200, 194, 0.25);
}

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

.service-card-featured {
    background: linear-gradient(180deg, rgba(56, 200, 194, 0.08) 0%, rgba(56, 200, 194, 0.03) 100%);
    border-color: rgba(56, 200, 194, 0.18);
    grid-column: span 2;
}

.service-card-featured::before {
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.service-card-featured:hover {
    border-color: rgba(56, 200, 194, 0.4);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35), 0 0 40px rgba(56, 200, 194, 0.12);
}

.service-card-featured h3,
.service-card-featured p,
.service-card-featured .learn-more {
    color: #ffffff;
}

.service-card-featured p {
    color: rgba(255, 255, 255, 0.74);
}

.service-icon {
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(56, 200, 194, 0.15), rgba(56, 200, 194, 0.06));
    color: var(--primary);
    font-weight: 800;
    font-family: var(--font-heading);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(56, 200, 194, 0.25);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1.2;
    color: #ffffff;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.96rem;
}

.learn-more {
    color: var(--primary);
    font-weight: 800;
    transition: color 0.2s ease, gap 0.2s ease;
}

.learn-more:hover {
    color: var(--primary-light);
}

.showcase-grid,
.featured-grid,
.impact-grid,
.contact-grid,
.product-detail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
}

.showcase-cards {
    display: grid;
    gap: 1rem;
}

.showcase-card {
    padding: 1.7rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.showcase-card-primary {
    padding: 2rem;
    background: linear-gradient(180deg, rgba(56, 200, 194, 0.08) 0%, rgba(56, 200, 194, 0.03) 100%);
    color: #ffffff;
    border-color: rgba(56, 200, 194, 0.15);
}

.showcase-card-primary:hover {
    border-color: rgba(56, 200, 194, 0.35);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(56, 200, 194, 0.1);
}

.showcase-label {
    display: inline-flex;
    margin-bottom: 0.7rem;
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.showcase-card-primary .showcase-label {
    color: #8ffff2;
}

.showcase-card h3,
.product-card-body h3,
.pricing-header h3,
.solution-detail-card h3,
.product-detail-content h3,
.process-card h3,
.contact-info-card h4,
.legal-content h2,
.legal-content h3 {
    font-family: var(--font-heading);
    color: #ffffff;
}

.showcase-card-primary h3,
.impact-section .section-title,
.featured-section .section-title,
.dark-section .section-title {
    color: #ffffff;
}

.showcase-card p,
.product-card-body p,
.pricing-desc,
.solution-detail-card p,
.product-detail-content p,
.faq-answer-inner,
.legal-content p,
.process-card p {
    color: var(--text-secondary);
}

.showcase-card-primary p,
.impact-section .section-subtitle,
.featured-section .section-subtitle,
.dark-section .section-subtitle {
    color: rgba(255, 255, 255, 0.74);
}

.feature-list-compact {
    display: grid;
    gap: 0.75rem;
    margin: 1.5rem 0 2rem;
}

.feature-list-compact li,
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.check-icon,
.feat-icon {
    color: var(--primary);
    font-weight: 800;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.process-card {
    padding: 1.8rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    position: relative;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(56, 200, 194, 0.2);
}

.process-step {
    display: inline-flex;
    margin-bottom: 0.9rem;
    color: var(--primary);
    font-weight: 800;
    font-family: var(--font-heading);
    background: rgba(56, 200, 194, 0.1);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
}

.impact-section,
.featured-section {
    background: linear-gradient(180deg, rgba(8, 18, 31, 0.98) 0%, rgba(13, 29, 51, 0.96) 100%);
    position: relative;
    overflow: hidden;
}

.impact-section::before,
.featured-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 200, 194, 0.1), transparent 60%);
    pointer-events: none;
}

.impact-panel {
    display: grid;
    gap: 1rem;
    padding: 1.8rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.impact-stat {
    padding: 1.2rem 1.3rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, background 0.3s ease;
}

.impact-stat:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.1);
}

.impact-stat strong {
    display: block;
    color: #ffffff;
    font-family: var(--font-heading);
    margin-bottom: 0.3rem;
}

.impact-stat span {
    color: rgba(255, 255, 255, 0.72);
}

.testimonials-section {
    background: linear-gradient(180deg, rgba(56, 200, 194, 0.03) 0%, rgba(10, 22, 40, 0.5) 100%);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.testimonial-card,
.product-card,
.pricing-card,
.solution-detail-card,
.contact-form,
.faq-item,
.contact-info-card,
.legal-content {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.testimonial-card {
    padding: 1.9rem;
    border-radius: var(--radius-md);
}

.testimonial-author-info h4 {
    color: #ffffff;
}

.testimonial-author-info span {
    color: var(--text-muted);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    display: inline-flex;
    padding: 0.4rem 0.7rem;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #ffe4d9, #ffd4c4);
    color: #c85731;
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-secondary);
}

.testimonial-avatar {
    background: var(--gradient-primary);
    box-shadow: 0 4px 14px rgba(56, 200, 194, 0.3);
}

.cta-section {
    background: linear-gradient(135deg, #16325a 0%, #0e203b 50%, #132d54 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 200, 194, 0.12), transparent 60%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -15%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 132, 91, 0.1), transparent 60%);
    pointer-events: none;
}

.cta-section .btn-outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.28);
}

.cta-section .btn-outline:hover {
    background: #ffffff;
    color: var(--secondary);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.page-hero,
.solutions-hero {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.page-hero::before,
.solutions-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--bg-white), transparent);
    pointer-events: none;
    z-index: 1;
}

.page-hero-rich {
    padding-bottom: 5.6rem;
}

.page-hero-shell {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
}

.page-hero-shell .section-tag {
    background: rgba(56, 200, 194, 0.16);
    color: #9dfff3;
}

.page-hero h1,
.solutions-hero h1 {
    font-family: var(--font-heading);
    letter-spacing: -0.04em;
}

.page-hero p,
.solutions-hero p {
    color: rgba(255, 255, 255, 0.74);
}

.page-hero-actions {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.page-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.page-hero-stat {
    padding: 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.page-hero-stat:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
}

.page-hero-stat strong {
    display: block;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 0.2rem;
}

.page-hero-stat span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.catalog-grid,
.comparison-grid,
.contact-mini-grid {
    display: grid;
    gap: 1.25rem;
}

.catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.comparison-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-card,
.mini-card {
    padding: 1.6rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.comparison-card:hover,
.mini-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.comparison-card h3,
.mini-card strong {
    display: block;
    font-family: var(--font-heading);
    color: #ffffff;
    margin-bottom: 0.65rem;
}

.comparison-card p,
.mini-card span {
    color: var(--text-secondary);
}

.comparison-card-dark {
    background: linear-gradient(180deg, rgba(56, 200, 194, 0.08) 0%, rgba(56, 200, 194, 0.03) 100%);
    border-color: rgba(56, 200, 194, 0.16);
}

.comparison-card-dark:hover {
    border-color: rgba(56, 200, 194, 0.35);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(56, 200, 194, 0.1);
}

.comparison-card-dark h3,
.comparison-card-dark p {
    color: #ffffff;
}

.comparison-card-dark p {
    color: rgba(255, 255, 255, 0.72);
}

.comparison-card-dark .section-tag {
    background: rgba(56, 200, 194, 0.16);
    color: #9dfff3;
}

.product-card,
.pricing-card {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.product-card:hover,
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.product-card-body,
.pricing-card {
    padding: 1.6rem;
}

.product-card-body h3 {
    font-size: 1.2rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin: 1rem 0 1.25rem;
}

.product-feature-tag {
    background: rgba(56, 200, 194, 0.1);
    color: var(--primary);
    font-weight: 800;
    transition: transform 0.2s ease;
}

.product-feature-tag:hover {
    transform: scale(1.05);
}

.product-card-footer {
    border-top-color: rgba(255, 255, 255, 0.08);
}

.product-price,
.price,
.pricing-header .price {
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
}

.product-detail,
.solution-detail-card {
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.product-detail-visual,
.solution-detail-card .solution-img,
.featured-visual {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.product-detail-visual img,
.solution-detail-card .solution-img img,
.featured-visual img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-detail-visual:hover img,
.solution-detail-card:hover .solution-img img,
.featured-visual:hover img {
    transform: scale(1.05);
}

.product-detail.reverse .product-detail-visual {
    order: -1;
}

.product-tagline,
.solution-tagline {
    color: var(--primary);
    font-weight: 800;
}

.pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(56, 200, 194, 0.08) 0%, rgba(56, 200, 194, 0.03) 100%);
    border-color: rgba(56, 200, 194, 0.25);
    box-shadow: 0 28px 60px rgba(56, 200, 194, 0.12);
    position: relative;
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.pricing-card.featured:hover {
    box-shadow: 0 35px 70px rgba(56, 200, 194, 0.25);
}

.pricing-card.featured .pricing-badge {
    background: var(--gradient-primary);
}

.pricing-header {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.pricing-header .price span {
    color: var(--text-muted);
}

.product-detail {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.pricing-features {
    display: grid;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(56, 200, 194, 0.2);
}

.faq-question {
    color: #ffffff;
    font-weight: 800;
    transition: color 0.2s ease;
}

.faq-question:hover {
    background: transparent;
    color: var(--primary);
}

.contact-grid {
    align-items: start;
}

.contact-grid-enhanced {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.4rem;
}

.contact-side-stack {
    display: grid;
    gap: 1rem;
}

.contact-info-card {
    padding: 1.2rem;
    border-radius: var(--radius-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 18px;
    background: rgba(56, 200, 194, 0.12);
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.1);
}

.contact-form {
    padding: 2rem;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.form-title {
    font-family: var(--font-heading);
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.form-intro {
    color: var(--text-secondary);
    margin-bottom: 1.7rem;
}

.form-group label {
    color: #e2e8f0;
    font-weight: 800;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(56, 200, 194, 0.5);
    box-shadow: 0 0 0 4px rgba(56, 200, 194, 0.12);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-content {
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 3rem;
    border-radius: var(--radius-lg);
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--primary-light);
}

.legal-content ul,
.legal-content ol {
    color: var(--text-secondary);
}

.footer {
    background: linear-gradient(180deg, #091426 0%, #060e1c 100%);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56, 200, 194, 0.3), transparent);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.footer-logo-img {
    width: auto;
    height: 60px;
    max-width: clamp(200px, 22vw, 280px);
    object-fit: contain;
    filter: brightness(1.15) drop-shadow(0 0 18px rgba(56, 200, 194, 0.35)) drop-shadow(0 0 40px rgba(56, 200, 194, 0.12));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.footer-logo-img:hover {
    transform: scale(1.04);
    filter: brightness(1.25) drop-shadow(0 0 24px rgba(56, 200, 194, 0.5)) drop-shadow(0 0 50px rgba(56, 200, 194, 0.18));
}

.footer-social a {
    font-size: 0.85rem;
    font-weight: 800;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: var(--primary);
}

/* ===== Enhanced Scroll Animations ===== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.5s; }
.delay-4 { animation-delay: 0.7s; }

/* ===== Decorative Section Dividers ===== */

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56, 200, 194, 0.2), transparent);
}

/* ===== Enhanced Dark Sections ===== */

.dark-section {
    position: relative;
    overflow: hidden;
}

.dark-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 200, 194, 0.08), transparent 60%);
    pointer-events: none;
}

/* ===== Smooth Selection Color ===== */

::selection {
    background: rgba(56, 200, 194, 0.3);
    color: #ffffff;
}

/* ===== Enhanced Scrollbar ===== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #060e1b;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== Image Placeholder Shimmer ===== */

.product-card-image,
.product-detail-visual,
.featured-visual {
    background: linear-gradient(110deg, #0c1a2e 0%, #112645 40%, #0c1a2e 60%);
    background-size: 200% 100%;
}

/* ===== Smooth Focus Visible ===== */

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ===== Reduced motion ===== */

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

@media (max-width: 1120px) {
    .hero-grid,
    .showcase-grid,
    .featured-grid,
    .impact-grid,
    .contact-grid,
    .product-detail,
    .solution-detail-card {
        grid-template-columns: 1fr;
    }

    .hero-proof,
    .page-hero-stats,
    .catalog-grid,
    .comparison-grid,
    .services-grid,
    .pricing-grid,
    .testimonials-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-card-featured {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-detail.reverse .product-detail-visual {
        order: 0;
    }

    .solution-detail-card.reverse {
        direction: ltr;
    }
}

@media (max-width: 820px) {
    .hamburger {
        display: flex;
        z-index: 310;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        height: 100dvh;
        background: rgba(7, 18, 33, 0.98) !important;
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        align-items: flex-start;
        padding: 5.5rem 2rem 2rem;
        gap: 0.5rem;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
        z-index: 300;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links .nav-link {
        font-size: 1.15rem;
        padding: 0.75rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.8);
        transition: color 0.3s ease, padding-left 0.3s ease;
    }

    .nav-links .nav-link:hover,
    .nav-links .nav-link.active {
        color: var(--primary);
        padding-left: 0.5rem;
    }

    .nav-cta-group {
        display: none;
    }

    .hero {
        padding-top: 8rem;
        padding-bottom: 4.4rem;
    }

    .hero-proof,
    .hero-stage-grid,
    .page-hero-stats,
    .catalog-grid,
    .comparison-grid,
    .contact-mini-grid,
    .services-grid,
    .pricing-grid,
    .testimonials-grid,
    .process-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-stage-footer,
    .trust-strip-inner,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .legal-content {
        padding: 2rem;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(1200px, calc(100% - 1.2rem));
    }

    .section-padding,
    .section {
        padding: 4.5rem 0;
    }

    .button-row,
    .hero-cta,
    .cta-buttons,
    .footer-bottom-links {
        flex-direction: column;
        align-items: stretch;
    }

    .button-row .btn,
    .hero-cta .btn,
    .cta-buttons .btn {
        width: 100%;
    }

    .service-card,
    .pricing-card,
    .testimonial-card,
    .process-card,
    .product-detail,
    .solution-detail-card,
    .contact-form,
    .legal-content {
        padding: 1.45rem;
    }

    .hero-orbit {
        display: none;
    }
}
