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

        :root {
            --green-light: #90EE90;
            --green: #2ECC71;
            --teal: #1ABC9C;
            --blue: #2980B9;
            --blue-dark: #1a5276;
            --dark: #070912;
            --dark-2: #0c1020;
            --dark-3: #11172a;
            --dark-card: #131a2a;
            --text: #ffffff;
            --text-muted: #a7aec4;
            --text-soft: #d9deeb;
            --border: rgba(255, 255, 255, 0.08);
            --border-strong: rgba(46, 204, 113, 0.28);
            --gradient: linear-gradient(135deg, #2ECC71, #1ABC9C, #2980B9);
            --gradient-2: linear-gradient(135deg, #90EE90, #2ECC71, #1ABC9C, #2980B9);
            --shadow-green: 0 14px 45px rgba(46, 204, 113, 0.28);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--dark);
            color: var(--text);
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: inherit;
        }

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

        ::-webkit-scrollbar-track {
            background: var(--dark);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--gradient);
            border-radius: 4px;
        }

        .skip-link {
            position: fixed;
            left: 16px;
            top: -50px;
            z-index: 2000;
            background: var(--green);
            color: #03120b;
            padding: 10px 14px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 800;
            transition: top 0.2s ease;
        }

        .skip-link:focus {
            top: 16px;
        }

        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            padding: 14px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(7, 9, 18, 0.84);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(46, 204, 113, 0.11);
            transition: all 0.3s ease;
        }

        nav.scrolled {
            padding: 9px 5%;
            background: rgba(7, 9, 18, 0.97);
        }

        .nav-logo {
            display: inline-flex;
            align-items: center;
            text-decoration: none;
        }

        .nav-logo img {
            height: 48px;
            width: auto;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 34px;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.92rem;
            font-weight: 600;
            transition: all 0.25s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            border-radius: 10px;
            transition: width 0.25s ease;
        }

        .nav-links a:hover,
        .nav-links a:focus-visible {
            color: var(--text);
        }

        .nav-links a:hover::after,
        .nav-links a:focus-visible::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--gradient) !important;
            color: white !important;
            padding: 10px 23px !important;
            border-radius: 999px !important;
            box-shadow: 0 7px 24px rgba(46, 204, 113, 0.32);
        }

        .nav-cta:hover,
        .nav-cta:focus-visible {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(46, 204, 113, 0.45);
        }

        .nav-cta::after {
            display: none !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 44px;
            height: 44px;
            border: 1px solid var(--border);
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            cursor: pointer;
        }

        .hamburger span {
            width: 22px;
            height: 2px;
            background: var(--gradient-2);
            border-radius: 99px;
            margin: 0 auto;
            transition: all 0.3s ease;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            padding: 130px 5% 84px;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg .orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(85px);
            opacity: 0.16;
            animation: float 7s ease-in-out infinite;
        }

        .orb-1 {
            width: 520px;
            height: 520px;
            background: #2ECC71;
            top: -150px;
            left: -130px;
        }

        .orb-2 {
            width: 430px;
            height: 430px;
            background: #2980B9;
            bottom: -90px;
            right: -90px;
            animation-delay: 1.8s;
        }

        .orb-3 {
            width: 300px;
            height: 300px;
            background: #1ABC9C;
            top: 47%;
            left: 52%;
            transform: translate(-50%, -50%);
            animation-delay: 3.5s;
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(46, 204, 113, 0.045) 1px, transparent 1px),
                linear-gradient(90deg, rgba(46, 204, 113, 0.045) 1px, transparent 1px);
            background-size: 64px 64px;
            mask-image: radial-gradient(circle at center, black 0%, transparent 78%);
        }

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

        .hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 980px;
        }

        .hero-mark {
            width: min(210px, 45vw);
            margin: 0 auto 24px;
            filter: drop-shadow(0 16px 34px rgba(26, 188, 156, 0.18));
        }

        .hero-badge,
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(46, 204, 113, 0.11);
            border: 1px solid rgba(46, 204, 113, 0.3);
            color: #7cf1a6;
            padding: 8px 18px;
            border-radius: 999px;
            font-size: 0.82rem;
            font-weight: 800;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }

        .hero-badge {
            margin-bottom: 28px;
            animation: fadeInDown 0.75s ease;
        }

        .hero-badge .dot {
            width: 8px;
            height: 8px;
            background: #2ECC71;
            border-radius: 50%;
            box-shadow: 0 0 0 8px rgba(46, 204, 113, 0.13);
        }

        .hero h1 {
            font-size: clamp(2.45rem, 6vw, 5.35rem);
            font-weight: 900;
            line-height: 1.05;
            margin-bottom: 24px;
            letter-spacing: -0.065em;
            animation: fadeInUp 0.75s ease 0.15s both;
        }

        .gradient-text {
            background: var(--gradient-2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: clamp(1.02rem, 2vw, 1.22rem);
            color: var(--text-soft);
            max-width: 760px;
            margin: 0 auto 38px;
            line-height: 1.75;
            animation: fadeInUp 0.75s ease 0.3s both;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.75s ease 0.45s both;
        }

        .btn-primary,
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 54px;
            padding: 15px 30px;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 800;
            font-size: 0.98rem;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: var(--gradient);
            color: white;
            box-shadow: var(--shadow-green);
        }

        .btn-primary:hover,
        .btn-primary:focus-visible {
            transform: translateY(-3px);
            box-shadow: 0 18px 46px rgba(46, 204, 113, 0.42);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.03);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.17);
        }

        .btn-secondary:hover,
        .btn-secondary:focus-visible {
            border-color: rgba(46, 204, 113, 0.62);
            color: #8ef0ad;
            transform: translateY(-3px);
        }

        .trust-strip {
            display: grid;
            grid-template-columns: repeat(4, minmax(150px, 1fr));
            gap: 16px;
            margin-top: 64px;
            animation: fadeInUp 0.75s ease 0.6s both;
        }

        .trust-card {
            background: rgba(19, 26, 42, 0.72);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 22px 18px;
            text-align: left;
            transition: all 0.3s ease;
        }

        .trust-card:hover {
            transform: translateY(-4px);
            border-color: var(--border-strong);
        }

        .trust-card strong {
            display: block;
            font-size: 1rem;
            margin-bottom: 8px;
        }

        .trust-card span {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.5;
        }

        section {
            padding: 98px 5%;
        }

        .section-header {
            margin-bottom: 56px;
        }

        .section-title {
            font-size: clamp(1.85rem, 4vw, 3.05rem);
            font-weight: 900;
            margin: 16px 0 14px;
            line-height: 1.13;
            letter-spacing: -0.035em;
        }

        .section-subtitle {
            color: var(--text-muted);
            font-size: 1.04rem;
            max-width: 670px;
            line-height: 1.75;
        }

        #services,
        #why-us,
        #contact {
            background: var(--dark-2);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(250px, 1fr));
            gap: 24px;
        }

        .service-card,
        .step-card,
        .proof-card,
        .contact-form,
        .contact-item,
        .footer-card {
            background: var(--dark-card);
            border: 1px solid var(--border);
            border-radius: 22px;
        }

        .service-card {
            padding: 34px 30px;
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
        }

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

        .service-card:hover {
            transform: translateY(-7px);
            border-color: var(--border-strong);
            box-shadow: 0 22px 58px rgba(0, 0, 0, 0.27);
        }

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

        .service-icon {
            width: 62px;
            height: 62px;
            border-radius: 18px;
            display: grid;
            place-items: center;
            font-size: 1.55rem;
            margin-bottom: 22px;
            background: rgba(46, 204, 113, 0.1);
            border: 1px solid rgba(46, 204, 113, 0.2);
        }

        .service-card h3 {
            font-size: 1.25rem;
            font-weight: 800;
            margin-bottom: 13px;
        }

        .service-card p {
            color: var(--text-muted);
            line-height: 1.72;
            font-size: 0.96rem;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 22px;
            color: #75e89f;
            font-weight: 800;
            font-size: 0.92rem;
            text-decoration: none;
        }

        .service-card:hover .service-link {
            gap: 12px;
        }

        #how-it-works {
            background: var(--dark);
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(4, minmax(180px, 1fr));
            gap: 24px;
        }

        .step-card {
            text-align: center;
            padding: 34px 24px;
            transition: all 0.3s ease;
        }

        .step-card:hover {
            transform: translateY(-6px);
            border-color: var(--border-strong);
        }

        .step-number {
            width: 58px;
            height: 58px;
            border-radius: 18px;
            background: var(--gradient);
            display: grid;
            place-items: center;
            font-size: 1.3rem;
            font-weight: 900;
            margin: 0 auto 20px;
            box-shadow: var(--shadow-green);
        }

        .step-card h3 {
            font-size: 1.1rem;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .step-card p {
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.65;
        }

        .why-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 62px;
            align-items: center;
        }

        .why-features {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .why-feature {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px;
            background: rgba(19, 26, 42, 0.78);
            border-radius: 18px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .why-feature:hover {
            border-color: var(--border-strong);
            transform: translateX(5px);
        }

        .why-feature-icon {
            width: 46px;
            height: 46px;
            min-width: 46px;
            border-radius: 14px;
            background: rgba(46, 204, 113, 0.11);
            display: grid;
            place-items: center;
            font-size: 1.18rem;
        }

        .why-feature h4 {
            font-size: 1rem;
            font-weight: 800;
            margin-bottom: 6px;
        }

        .why-feature p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.58;
        }

        .proof-card {
            padding: 32px;
            position: relative;
            overflow: hidden;
        }

        .proof-card::before {
            content: '';
            position: absolute;
            inset: -80px -70px auto auto;
            width: 220px;
            height: 220px;
            background: radial-gradient(circle, rgba(46, 204, 113, 0.19), transparent 72%);
        }

        .proof-card h3 {
            position: relative;
            font-size: 1.35rem;
            margin-bottom: 24px;
        }

        .proof-list {
            position: relative;
            list-style: none;
            display: grid;
            gap: 16px;
        }

        .proof-list li {
            display: grid;
            grid-template-columns: 32px 1fr;
            gap: 12px;
            align-items: start;
            color: var(--text-muted);
            line-height: 1.65;
        }

        .proof-list i {
            width: 32px;
            height: 32px;
            border-radius: 10px;
            display: grid;
            place-items: center;
            color: #83efa7;
            background: rgba(46, 204, 113, 0.1);
        }

        .proof-note {
            margin-top: 26px;
            padding: 18px;
            border: 1px dashed rgba(144, 238, 144, 0.25);
            border-radius: 16px;
            color: var(--text-soft);
            background: rgba(255, 255, 255, 0.025);
            line-height: 1.65;
        }

        #niches {
            background: var(--dark);
        }

        .niche-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(170px, 1fr));
            gap: 16px;
        }

        .niche-pill {
            padding: 18px 18px;
            background: rgba(19, 26, 42, 0.78);
            border: 1px solid var(--border);
            border-radius: 18px;
            color: var(--text-soft);
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: all 0.25s ease;
        }

        .niche-pill:hover {
            transform: translateY(-4px);
            border-color: var(--border-strong);
        }

        .niche-pill span {
            font-size: 1.25rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 0.9fr 1.25fr;
            gap: 58px;
            align-items: start;
        }

        .contact-info h3 {
            font-size: 1.45rem;
            font-weight: 800;
            margin-bottom: 14px;
        }

        .contact-info p {
            color: var(--text-muted);
            line-height: 1.75;
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
            padding: 17px;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            border-color: var(--border-strong);
        }

        .contact-item-icon {
            width: 46px;
            height: 46px;
            border-radius: 14px;
            background: rgba(46, 204, 113, 0.1);
            display: grid;
            place-items: center;
            color: #72e99f;
            font-size: 1.05rem;
        }

        .contact-item-text strong {
            display: block;
            font-size: 0.82rem;
            color: var(--text-muted);
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
        }

        .contact-item-text span,
        .contact-item-text a {
            font-size: 0.95rem;
            font-weight: 700;
            text-decoration: none;
        }

        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 25px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 14px;
            background: var(--dark-card);
            border: 1px solid var(--border);
            display: grid;
            place-items: center;
            color: var(--text-muted);
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .social-link:hover,
        .social-link:focus-visible {
            background: rgba(46, 204, 113, 0.1);
            border-color: rgba(46, 204, 113, 0.34);
            color: #79eca3;
            transform: translateY(-3px);
        }

        .contact-form {
            padding: 36px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            font-size: 0.8rem;
            font-weight: 800;
            color: var(--text-muted);
            margin-bottom: 8px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid rgba(255, 255, 255, 0.09);
            border-radius: 13px;
            color: white;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.25s ease;
            outline: none;
        }

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

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: rgba(46, 204, 113, 0.56);
            background: rgba(46, 204, 113, 0.04);
            box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.11);
        }

        .form-group select option {
            color: #ffffff;
            background: var(--dark-card);
        }

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

        .form-submit {
            width: 100%;
            padding: 16px;
            background: var(--gradient);
            border: none;
            border-radius: 14px;
            color: white;
            font-size: 1rem;
            font-weight: 900;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Inter', sans-serif;
            box-shadow: var(--shadow-green);
        }

        .form-submit:hover,
        .form-submit:focus-visible {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(46, 204, 113, 0.42);
        }

        .form-helper {
            margin-top: 14px;
            color: var(--text-muted);
            font-size: 0.86rem;
            line-height: 1.55;
        }

        .form-status {
            margin-top: 12px;
            color: #92f0ad;
            font-size: 0.9rem;
            min-height: 22px;
        }

        footer {
            background: var(--dark);
            border-top: 1px solid var(--border);
            padding: 60px 5% 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 44px;
        }

        .footer-brand img {
            height: 46px;
            width: auto;
            margin-bottom: 16px;
        }

        .footer-brand p {
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.72;
            max-width: 330px;
        }

        .footer-col h4 {
            font-size: 0.82rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 18px;
            color: var(--text-muted);
        }

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

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.92rem;
            transition: all 0.25s ease;
        }

        .footer-col ul li a:hover,
        .footer-col ul li a:focus-visible {
            color: #7ceda4;
            padding-left: 5px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 28px;
            border-top: 1px solid var(--border);
            flex-wrap: wrap;
            gap: 14px;
        }

        .footer-bottom p {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

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

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .reveal {
            opacity: 0;
            transform: translateY(38px);
            transition: all 0.7s ease;
        }

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

        .cursor-glow {
            position: fixed;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(46, 204, 113, 0.045) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
            transform: translate(-50%, -50%);
            transition: all 0.08s ease;
        }

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

        @media (max-width: 1050px) {
            .services-grid {
                grid-template-columns: repeat(2, minmax(250px, 1fr));
            }

            .steps-container,
            .niche-grid,
            .trust-strip {
                grid-template-columns: repeat(2, minmax(180px, 1fr));
            }

            .why-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

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

        @media (max-width: 768px) {
            nav {
                padding: 12px 5%;
            }

            .nav-logo img {
                height: 40px;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: min(78%, 340px);
                background: rgba(12, 16, 32, 0.98);
                flex-direction: column;
                justify-content: center;
                padding: 40px;
                transition: right 0.35s ease;
                border-left: 1px solid var(--border);
                box-shadow: -22px 0 60px rgba(0, 0, 0, 0.36);
            }

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

            .hamburger {
                display: flex;
                z-index: 1001;
            }

            .hamburger.open span:nth-child(1) {
                transform: translateY(7px) rotate(45deg);
            }

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

            .hamburger.open span:nth-child(3) {
                transform: translateY(-7px) rotate(-45deg);
            }

            .hero {
                padding: 118px 5% 64px;
            }

            .hero h1 {
                letter-spacing: -0.045em;
            }

            .trust-strip,
            .services-grid,
            .steps-container,
            .niche-grid,
            .form-row,
            .footer-grid {
                grid-template-columns: 1fr;
            }

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

            section {
                padding: 72px 5%;
            }

            .contact-form {
                padding: 26px;
            }

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


/* ========== MULTI-PAGE ADDITIONS ========== */
.nav-links a.active {
    color: var(--text);
}

.nav-links a.active::after {
    width: 100%;
}

.page-hero {
    min-height: 58vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 136px 5% 78px;
    background: var(--dark);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -0.055em;
    margin: 18px 0 22px;
}

.page-hero p {
    color: var(--text-soft);
    font-size: clamp(1rem, 2vw, 1.18rem);
    line-height: 1.75;
    max-width: 740px;
    margin: 0 auto;
}

.section-centered {
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.section-centered .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

.content-grid-2,
.content-grid-3 {
    display: grid;
    gap: 24px;
}

.content-grid-2 {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
}

.content-grid-3 {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
}

.feature-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 30px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
}

.feature-card .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.42rem;
    margin-bottom: 20px;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 850;
    margin-bottom: 12px;
}

.feature-card p,
.feature-card li {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.96rem;
}

.feature-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.feature-card ul li::before {
    content: '✓';
    color: #83efa7;
    font-weight: 900;
    margin-right: 8px;
}

.cta-band {
    background: radial-gradient(circle at top left, rgba(46, 204, 113, 0.15), transparent 35%), var(--dark-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cta-card {
    max-width: 980px;
    margin: 0 auto;
    background: var(--dark-card);
    border: 1px solid var(--border-strong);
    border-radius: 28px;
    padding: 46px;
    text-align: center;
    box-shadow: 0 24px 70px rgba(0,0,0,0.23);
}

.cta-card h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.12;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.cta-card p {
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto 28px;
}

.split-section {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.text-block p {
    color: var(--text-muted);
    line-height: 1.78;
    margin-bottom: 18px;
}

.contact-page #contact {
    background: var(--dark-2);
}

@media (max-width: 1050px) {
    .content-grid-3 {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
    }

    .split-section,
    .content-grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: auto;
        padding: 116px 5% 58px;
    }

    .page-hero h1 {
        letter-spacing: -0.04em;
    }

    .content-grid-3 {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 32px 24px;
    }
}
