﻿@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
            --primary: #008a92;
            --primary-dark: #006f78;
            --primary-soft: #eafafb;
            --dark: #07111f;
            --muted: #667085;
            --border: #e8eef1;
            --panel: #ffffff;
            --footer: #0a1727;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--dark);
            background: #fff;
        }

        a {
            color: inherit;
        }

        .container,
        .navbar .container {
            max-width: 1560px;
        }

        .navbar {
            min-height: 82px;
            border-bottom: 1px solid var(--border);
            background: rgba(255, 255, 255, .94);
            backdrop-filter: blur(14px);
            z-index: 99;
        }

        .navbar-brand img {
            height: 46px;
        }

        .nav-link {
            color: #0b1220;
            font-size: 16px;
            font-weight: 700;
            margin: 0 13px;
        }

        .nav-link:hover,
        .dropdown-item:hover {
            color: var(--primary);
        }

        .btn-main {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: linear-gradient(135deg, #008b94, #00777f);
            color: #fff;
            border: 0;
            border-radius: 12px;
            padding: 15px 31px;
            font-size: 17px;
            font-weight: 800;
            box-shadow: 0 14px 32px rgba(0, 132, 140, .24);
        }

        .btn-main:hover {
            color: #fff;
            background: linear-gradient(135deg, #009aa3, #006f78);
        }

        .btn-outline-main {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            color: var(--primary-dark);
            border: 1.5px solid var(--primary);
            border-radius: 12px;
            padding: 14px 31px;
            font-size: 17px;
            font-weight: 800;
            background: #fff;
        }

        .btn-outline-main:hover {
            color: #fff;
            background: var(--primary);
        }

        .section-pad {
            padding: 92px 0;
            position: relative;
            overflow: hidden;
        }

        .section-soft {
            background: linear-gradient(180deg, #fff 0%, #f7fcfd 100%);
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--primary-dark);
            border: 1px solid rgba(0, 138, 146, .32);
            background: rgba(234, 250, 251, .72);
            border-radius: 999px;
            padding: 7px 18px;
            font-size: 15px;
            font-weight: 800;
            letter-spacing: .02em;
            text-transform: uppercase;
        }

        .eyebrow {
            color: var(--primary);
            font-size: 15px;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .section-title {
            margin: 18px auto 14px;
            max-width: 900px;
            color: var(--dark);
            font-size: clamp(40px, 4.4vw, 66px);
            line-height: 1.08;
            font-weight: 800;
            letter-spacing: -1.8px;
        }

        .section-title span,
        .accent {
            color: var(--primary);
        }

        .section-desc {
            max-width: 720px;
            margin: 0 auto;
            color: #475467;
            font-size: 20px;
            line-height: 1.65;
            font-weight: 500;
        }

        .soft-card {
            height: 100%;
            background: rgba(255, 255, 255, .94);
            border: 1px solid var(--border);
            border-radius: 18px;
            box-shadow: 0 18px 48px rgba(15, 23, 42, .07);
        }

        .icon-box {
            width: 74px;
            height: 74px;
            border-radius: 18px;
            background: linear-gradient(180deg, #eefbfc, #e5f5f6);
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            flex: 0 0 auto;
        }

        .icon-circle {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: linear-gradient(135deg, #009aa3, #00747c);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 14px 32px rgba(0, 132, 140, .2);
        }

        .check-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .check-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: #475467;
            font-size: 15px;
            font-weight: 600;
            margin-top: 13px;
        }

        .check-list i {
            color: var(--primary);
            font-size: 16px;
            margin-top: 2px;
        }

        .dot-bg::before,
        .dot-bg::after {
            content: "";
            position: absolute;
            width: 190px;
            height: 190px;
            background-image: radial-gradient(rgba(0, 138, 146, .32) 1.3px, transparent 1.3px);
            background-size: 12px 12px;
            opacity: .55;
            pointer-events: none;
        }

        .dot-bg::before {
            top: 70px;
            left: -70px;
        }

        .dot-bg::after {
            right: -55px;
            bottom: 110px;
        }

        .hero {
            position: relative;
            overflow: hidden;
            min-height: calc(100vh - 82px);
            padding: 110px 0 35px;
            background-image: url('../img/hero-bg-shapes.png');
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center top;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 1px solid rgba(0, 138, 146, .35);
            color: var(--primary-dark);
            background: rgba(255, 255, 255, .82);
            border-radius: 14px;
            padding: 12px 18px;
            font-size: 16px;
            font-weight: 800;
        }

        .flag-box {
            width: 24px;
            height: 24px;
            border-radius: 5px;
            background: #ef233c;
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 800;
        }

        .hero-title {
            max-width: 760px;
            font-size: clamp(58px, 5.2vw, 86px);
            line-height: 1.04;
            font-weight: 800;
            margin: 38px 0 28px;
        }

        .hero-title span {
            color: var(--primary);
        }

        .hero-desc {
            max-width: 690px;
            color: var(--muted);
            font-size: 24px;
            line-height: 1.7;
            font-weight: 500;
            margin-bottom: 34px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
        }

        .mini-features {
            display: flex;
            flex-wrap: wrap;
            gap: 36px;
            margin-top: 44px;
        }

        .mini-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #344054;
            line-height: 1.28;
        }

        .mini-feature i {
            color: var(--primary);
            font-size: 29px;
        }

        .mini-feature span {
            font-size: 17px;
            font-weight: 700;
        }

        .hero-visual {
            position: relative;
            min-height: 640px;
        }

        .laptop-img {
            position: absolute;
            right: -175px;
            top: 38px;
            width: 990px;
            max-width: none;
            filter: drop-shadow(0 30px 55px rgba(11, 18, 32, .18));
        }

        .floating-card {
            position: absolute;
            z-index: 4;
            display: flex;
            align-items: center;
            gap: 16px;
            background: rgba(255, 255, 255, .95);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 20px 26px;
            box-shadow: 0 20px 48px rgba(15, 23, 42, .13);
        }

        .floating-card .icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #009aa3, #00747c);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 23px;
        }

        .floating-card small {
            display: block;
            color: #667085;
            font-size: 14px;
            font-weight: 500;
        }

        .floating-card strong {
            display: block;
            color: var(--dark);
            font-size: 33px;
            line-height: 1.05;
            font-weight: 800;
        }

        .card-growth {
            top: -20px;
            right: -70px;
        }

        .card-link {
            left: -70px;
            bottom: 115px;
        }

        .card-qr {
            right: -95px;
            bottom: 75px;
        }

        .stats-box {
            position: relative;
            z-index: 5;
            max-width: 1320px;
            margin: 58px auto 0;
            background: rgba(255, 255, 255, .93);
            border: 1px solid #edf2f4;
            border-radius: 24px;
            padding: 36px 46px;
            box-shadow: 0 20px 55px rgba(15, 23, 42, .08);
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 22px;
        }

        .stat-icon {
            width: 72px;
            height: 72px;
            border-radius: 16px;
            background: var(--primary-soft);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 35px;
            flex-shrink: 0;
        }

        .stat-item strong {
            display: block;
            color: var(--dark);
            font-size: 40px;
            line-height: 1;
            font-weight: 800;
        }

        .stat-item span {
            color: #344054;
            font-size: 18px;
            font-weight: 600;
        }

        .stat-divider {
            width: 1px;
            height: 72px;
            background: #e3eaee;
            margin: auto;
        }

        .dashboard-showcase {
            padding-top: 40px;
        }

        .feature-line {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0;
            margin-top: 58px;
            padding: 28px 30px;
            border: 1px solid var(--border);
            border-radius: 18px;
            background: #fff;
            box-shadow: 0 18px 44px rgba(15, 23, 42, .06);
        }

        .feature-line-item {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 8px 24px;
            border-right: 1px solid #e2e8f0;
        }

        .feature-line-item:last-child {
            border-right: 0;
        }

        .feature-line-item i {
            color: var(--primary);
            font-size: 34px;
            width: 54px;
            height: 54px;
            border-radius: 16px;
            background: var(--primary-soft);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
        }

        .feature-line-item strong {
            display: block;
            font-size: 17px;
            font-weight: 800;
        }

        .feature-line-item span {
            color: #475467;
            font-size: 14px;
            line-height: 1.5;
        }

        .dashboard-copy {
            padding: 54px 0;
        }

        .dashboard-copy h2 {
            font-size: clamp(34px, 3.6vw, 54px);
            line-height: 1.15;
            font-weight: 800;
            margin-bottom: 28px;
        }

        .dashboard-copy p {
            color: #475467;
            font-size: 18px;
            line-height: 1.75;
            margin-bottom: 28px;
        }

        .benefit-row {
            display: flex;
            gap: 18px;
            align-items: flex-start;
            margin-top: 24px;
        }

        .benefit-row i {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            background: var(--primary-soft);
            font-size: 27px;
            flex: 0 0 auto;
        }

        .benefit-row strong {
            display: block;
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 5px;
        }

        .benefit-row span {
            color: #475467;
            font-size: 15px;
            line-height: 1.6;
        }

        .dashboard-window {
            overflow: hidden;
            border-radius: 22px;
            border: 1px solid #e2e8f0;
            background: #fff;
            box-shadow: 0 30px 80px rgba(15, 23, 42, .11);
        }

        .dash-topbar {
            height: 74px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding: 0 30px;
            border-bottom: 1px solid #edf2f4;
        }

        .dash-body {
            display: grid;
            grid-template-columns: 185px 1fr;
            min-height: 600px;
        }

        .dash-sidebar {
            padding: 24px 16px;
            border-right: 1px solid #edf2f4;
            background: linear-gradient(180deg, #f9fdfd, #fff);
        }

        .dash-logo {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 22px;
            font-weight: 800;
            margin: 0 10px 24px;
        }

        .dash-logo i {
            color: var(--primary);
        }

        .dash-menu {
            display: grid;
            gap: 8px;
        }

        .dash-menu span {
            display: flex;
            align-items: center;
            gap: 10px;
            border-radius: 10px;
            padding: 12px 14px;
            color: #344054;
            font-size: 14px;
            font-weight: 700;
        }

        .dash-menu span.active {
            background: var(--primary-soft);
            color: var(--primary-dark);
        }

        .dash-main {
            padding: 28px;
        }

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

        .metric {
            padding: 22px;
            border: 1px solid var(--border);
            border-radius: 14px;
            background: #fff;
        }

        .metric span {
            display: block;
            color: #667085;
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .metric strong {
            display: block;
            font-size: 26px;
            font-weight: 800;
        }

        .metric small {
            color: #12a66a;
            font-weight: 800;
        }

        .dash-grid {
            display: grid;
            grid-template-columns: 1.25fr .7fr .8fr;
            gap: 18px;
            margin-top: 18px;
        }

        .dash-panel {
            border: 1px solid var(--border);
            border-radius: 14px;
            background: #fff;
            padding: 22px;
        }

        .dash-panel h3 {
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 18px;
        }

        .chart {
            height: 210px;
            position: relative;
            border-bottom: 1px solid #e5edf0;
            background: repeating-linear-gradient(to top, transparent 0 51px, #eef2f4 52px 53px);
            overflow: hidden;
        }

        .chart svg,
        .mini-chart svg {
            width: 100%;
            height: 100%;
        }

        .donut {
            width: 148px;
            height: 148px;
            border-radius: 50%;
            margin: 6px auto 24px;
            background: conic-gradient(#008a92 0 55%, #25c1bf 55% 88%, #b8e7e8 88% 100%);
            position: relative;
        }

        .donut::after {
            content: "";
            position: absolute;
            inset: 32px;
            border-radius: 50%;
            background: #fff;
        }

        .progress-list {
            display: grid;
            gap: 15px;
        }

        .progress-row {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 14px;
            align-items: center;
            font-size: 13px;
            font-weight: 700;
        }

        .progress-line {
            height: 6px;
            grid-column: 1 / -1;
            background: #edf2f4;
            border-radius: 999px;
            overflow: hidden;
        }

        .progress-line span {
            display: block;
            height: 100%;
            background: linear-gradient(90deg, #008a92, #30c7c2);
        }

        .table-lite {
            width: 100%;
            font-size: 13px;
        }

        .table-lite th {
            color: #667085;
            font-weight: 800;
            padding: 11px 8px;
            border-bottom: 1px solid #edf2f4;
        }

        .table-lite td {
            padding: 12px 8px;
            border-bottom: 1px solid #edf2f4;
            font-weight: 700;
        }

        .status-pill {
            display: inline-flex;
            padding: 4px 8px;
            border-radius: 999px;
            color: #067647;
            background: #dcfae6;
            font-size: 12px;
            font-weight: 800;
        }

        .feature-card {
            padding: 34px;
        }

        .feature-card h3 {
            font-size: 27px;
            font-weight: 800;
            margin: 26px 0 12px;
        }

        .feature-card p {
            color: #475467;
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 22px;
        }

        .card-arrow {
            color: var(--primary);
            font-size: 28px;
            margin-top: 18px;
            display: inline-flex;
        }

        .cta-strip {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            margin-top: 44px;
            padding: 28px 34px;
            border: 1px solid rgba(0, 138, 146, .18);
            border-radius: 18px;
            background: linear-gradient(90deg, #effcfc, #f8ffff);
        }

        .cta-strip-content {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .how-wrap {
            position: relative;
            margin-top: 70px;
        }

        .step-line {
            position: absolute;
            top: 0;
            left: 15%;
            right: 15%;
            height: 3px;
            border-top: 3px dashed rgba(0, 138, 146, .55);
        }

        .step-card {
            padding: 58px 34px 34px;
            text-align: center;
            position: relative;
            overflow: visible;
        }

        .step-number {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            position: absolute;
            top: -32px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            background: linear-gradient(135deg, #008a92, #006f78);
            font-size: 24px;
            font-weight: 800;
            box-shadow: 0 16px 30px rgba(0, 132, 140, .22);
        }

        .step-card h3 {
            font-size: 24px;
            font-weight: 800;
            margin: 22px 0 12px;
        }

        .step-card p {
            color: #475467;
            line-height: 1.65;
            min-height: 80px;
            margin-bottom: 22px;
        }

        .mock-input {
            border: 1px solid #dce6eb;
            border-radius: 10px;
            padding: 12px;
            text-align: left;
            color: #667085;
            font-size: 13px;
        }

        .url-builder {
            display: grid;
            grid-template-columns: 1fr auto;
            margin-top: 10px;
        }

        .url-builder span {
            border: 1px solid #dce6eb;
            border-right: 0;
            border-radius: 10px 0 0 10px;
            padding: 12px;
            text-align: left;
            font-weight: 700;
        }

        .url-builder button {
            border: 0;
            color: #fff;
            background: var(--primary);
            border-radius: 0 10px 10px 0;
            padding: 0 18px;
            font-weight: 800;
        }

        .social-row,
        .brand-row {
            display: flex;
            justify-content: center;
            gap: 18px;
            flex-wrap: wrap;
        }

        .social-row i {
            width: 42px;
            height: 42px;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 23px;
            background: #0b1220;
        }

        .qr-box {
            width: 120px;
            height: 120px;
            margin: 18px auto 0;
            border-radius: 12px;
            border: 1px solid #dce6eb;
            background:
                linear-gradient(90deg, #111 12px, transparent 12px) 16px 16px / 26px 26px,
                linear-gradient(#111 12px, transparent 12px) 16px 16px / 26px 26px,
                linear-gradient(90deg, #111 9px, transparent 9px) 4px 4px / 18px 18px,
                #fff;
        }

        .mini-chart {
            height: 165px;
            margin-top: 22px;
        }

        .trust-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
            margin: 48px 0 34px;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 10px;
        }

        .trust-item strong {
            display: block;
            color: var(--primary-dark);
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 4px;
        }

        .trust-item span {
            color: #475467;
            line-height: 1.55;
        }

        .stat-card-large {
            padding: 36px;
            text-align: center;
        }

        .stat-card-large strong {
            display: block;
            color: var(--primary-dark);
            font-size: clamp(46px, 4vw, 64px);
            line-height: 1;
            font-weight: 800;
            margin: 24px 0 14px;
        }

        .stat-card-large h3 {
            font-size: 23px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .stat-card-large p {
            color: #475467;
            line-height: 1.55;
            margin: 0;
        }

        .brand-band {
            margin-top: 40px;
            padding: 26px 32px;
            text-align: center;
        }

        .brand-band small {
            display: block;
            color: #667085;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: .06em;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .brand-logo {
            font-size: 27px;
            font-weight: 800;
            color: #0b1220;
            opacity: .95;
            padding: 0 30px;
            border-right: 1px solid #e2e8f0;
            min-width: 145px;
        }

        .brand-logo:last-child {
            border-right: 0;
        }

        .local-band {
            margin-top: 34px;
            display: grid;
            grid-template-columns: 1.5fr repeat(3, 1fr);
            gap: 24px;
            align-items: center;
            padding: 28px;
            border: 1px solid rgba(0, 138, 146, .16);
            border-radius: 18px;
            background: linear-gradient(90deg, #eafafb, #f7ffff);
        }

        .local-main {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .flag-circle {
            width: 74px;
            height: 74px;
            border-radius: 50%;
            background: #e52323;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 29px;
            font-weight: 800;
            box-shadow: 0 18px 34px rgba(229, 35, 35, .17);
        }

        .local-check {
            display: flex;
            align-items: center;
            gap: 14px;
            font-weight: 800;
        }

        .local-check i {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            background: #dff7f7;
        }

        .integration-card {
            padding: 28px;
        }

        .integration-card .d-flex {
            gap: 22px;
        }

        .brand-icon {
            width: 74px;
            height: 74px;
            border-radius: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #f3f6f8;
            font-size: 37px;
            flex: 0 0 auto;
        }

        .brand-icon.google { color: #f6a400; }
        .brand-icon.meta { color: #1677f2; }
        .brand-icon.slack { color: #32c5c8; }
        .brand-icon.zapier { color: #ff6a00; }
        .brand-icon.wp { color: #21759b; }
        .brand-icon.shopify { color: #7ab55c; }

        .integration-card h3 {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .integration-card p {
            color: #475467;
            line-height: 1.65;
            min-height: 76px;
        }

        .tag-link-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            margin-top: 22px;
        }

        .small-tag {
            color: var(--primary-dark);
            background: var(--primary-soft);
            border-radius: 8px;
            padding: 7px 10px;
            font-size: 13px;
            font-weight: 800;
        }

        .text-link {
            color: var(--primary-dark);
            text-decoration: none;
            font-weight: 800;
            white-space: nowrap;
        }

        .pricing-toggle {
            display: inline-grid;
            grid-template-columns: 1fr 1fr;
            padding: 5px;
            border-radius: 999px;
            background: #fff;
            border: 1px solid #e2e8f0;
            box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
            margin-top: 28px;
        }

        .pricing-toggle span {
            min-width: 140px;
            border-radius: 999px;
            padding: 10px 26px;
            font-weight: 800;
            color: #475467;
        }

        .pricing-toggle .active {
            color: #fff;
            background: linear-gradient(135deg, #008b94, #00777f);
        }

        .price-card {
            padding: 34px 30px;
            position: relative;
        }

        .price-card.popular {
            border-color: var(--primary);
            box-shadow: 0 22px 60px rgba(0, 132, 140, .12);
        }

        .popular-ribbon {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            transform: translateY(-100%);
            background: linear-gradient(135deg, #008b94, #00777f);
            color: #fff;
            border-radius: 14px 14px 0 0;
            padding: 9px;
            font-weight: 800;
            text-align: center;
        }

        .plan-name {
            color: var(--primary-dark);
            font-weight: 800;
            letter-spacing: .04em;
            text-transform: uppercase;
        }

        .price-card h3 {
            font-size: 30px;
            font-weight: 800;
            margin: 8px 0;
        }

        .price {
            font-size: 52px;
            line-height: 1;
            font-weight: 800;
            margin: 26px 0 8px;
        }

        .price span {
            color: #667085;
            font-size: 22px;
            font-weight: 700;
        }

        .price-card .btn {
            width: 100%;
            margin: 24px 0;
        }

        .contact-card {
            padding: 28px 34px;
        }

        .contact-card h3 {
            font-size: 18px;
            font-weight: 800;
            margin: 0 0 8px;
        }

        .contact-card p,
        .contact-card a {
            color: #475467;
            font-weight: 600;
            text-decoration: none;
        }

        .contact-card a {
            color: var(--primary-dark);
            font-weight: 800;
        }

        .form-control {
            border-color: #d7e2e8;
            border-radius: 10px;
            min-height: 52px;
            padding: 14px 16px;
            font-weight: 600;
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 .2rem rgba(0, 138, 146, .12);
        }

        .support-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 290px;
            color: var(--primary);
            font-size: 148px;
            background: radial-gradient(circle at 50% 50%, #eafafb 0 42%, transparent 43%);
        }

        .map-box {
            min-height: 170px;
            border-radius: 16px;
            background:
                linear-gradient(135deg, rgba(0, 138, 146, .15), transparent 40%),
                linear-gradient(45deg, transparent 46%, rgba(0, 138, 146, .12) 47% 53%, transparent 54%),
                repeating-linear-gradient(0deg, #f1f4f5 0 1px, transparent 1px 30px),
                repeating-linear-gradient(90deg, #f1f4f5 0 1px, transparent 1px 30px),
                #fff8ec;
            position: relative;
            overflow: hidden;
        }

        .map-pin {
            position: absolute;
            left: 50%;
            top: 45%;
            transform: translate(-50%, -50%);
            color: var(--primary);
            font-size: 52px;
            filter: drop-shadow(0 10px 16px rgba(0, 132, 140, .18));
        }

        .faq-illustration {
            min-height: 330px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .bubble {
            border-radius: 32px;
            background: linear-gradient(135deg, #008a92, #00747c);
            color: #fff;
            box-shadow: 0 22px 48px rgba(0, 132, 140, .2);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 70px;
            font-weight: 800;
            position: relative;
        }

        .bubble.main {
            width: 150px;
            height: 112px;
        }

        .bubble.main::after {
            content: "";
            position: absolute;
            left: 26px;
            bottom: -24px;
            border-top: 28px solid #00747c;
            border-right: 28px solid transparent;
        }

        .bubble.sub {
            width: 136px;
            height: 86px;
            margin-left: -20px;
            margin-top: 82px;
            background: rgba(255, 255, 255, .72);
            color: var(--primary);
            border: 1px solid var(--border);
        }

        .accordion {
            --bs-accordion-border-color: var(--border);
            --bs-accordion-border-radius: 14px;
            --bs-accordion-inner-border-radius: 14px;
            --bs-accordion-btn-focus-box-shadow: 0 0 0 .2rem rgba(0, 138, 146, .12);
            --bs-accordion-active-bg: #f2fbfc;
            --bs-accordion-active-color: var(--primary-dark);
        }

        .accordion-item {
            margin-bottom: 14px;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
        }

        .accordion-button {
            font-weight: 800;
            padding: 20px 24px;
        }

        .accordion-body {
            color: #475467;
            line-height: 1.7;
            padding: 0 24px 24px;
        }

        .final-cta {
            margin-bottom: 38px;
            padding: 64px 58px;
            border: 1px solid rgba(0, 138, 146, .18);
            border-radius: 18px;
            background:
                radial-gradient(circle at 45% 35%, rgba(0, 138, 146, .1), transparent 28%),
                linear-gradient(90deg, #f0fcfc, #fff);
        }

        .final-cta h2 {
            font-size: clamp(36px, 4vw, 58px);
            line-height: 1.18;
            font-weight: 800;
            margin: 18px 0 26px;
        }

        .footer {
            color: #d6dee7;
            background: radial-gradient(circle at 8% 0%, rgba(0, 138, 146, .18), transparent 28%), var(--footer);
            border-radius: 18px;
            padding: 52px 52px 32px;
            box-shadow: 0 28px 70px rgba(7, 17, 31, .16);
        }

        .footer h3,
        .footer h4 {
            color: #fff;
            font-weight: 800;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 32px;
            font-weight: 800;
            color: #fff;
            margin-bottom: 22px;
        }

        .footer-logo i {
            color: var(--primary);
        }

        .footer p,
        .footer a,
        .footer li {
            color: #d6dee7;
            text-decoration: none;
            line-height: 1.8;
        }

        .footer ul {
            list-style: none;
            padding: 0;
            margin: 18px 0 0;
        }

        .social-circle {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            background: rgba(255, 255, 255, .08);
            margin-right: 10px;
            font-size: 20px;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            margin-top: 42px;
            padding-top: 28px;
            border-top: 1px solid rgba(255, 255, 255, .14);
        }

        .payment-row {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .payment-badge {
            color: #fff;
            border: 1px solid rgba(255, 255, 255, .28);
            border-radius: 6px;
            padding: 7px 13px;
            font-size: 19px;
            font-weight: 800;
            line-height: 1;
        }

        @media (min-width: 1400px) {
            .hero .col-lg-6:first-child {
                flex: 0 0 47%;
                max-width: 47%;
            }

            .hero .col-lg-6:last-child {
                flex: 0 0 53%;
                max-width: 53%;
            }
        }

        @media (max-width: 1399px) {
            .feature-line {
                grid-template-columns: repeat(3, 1fr);
                row-gap: 20px;
            }

            .feature-line-item:nth-child(3) {
                border-right: 0;
            }

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

            .dash-panel.links-panel {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 1199px) {
            .hero-title {
                font-size: clamp(52px, 6vw, 72px);
            }

            .laptop-img {
                right: -190px;
                width: 860px;
            }

            .stats-box {
                margin-top: -25px;
            }

            .metric-grid,
            .trust-row {
                grid-template-columns: repeat(2, 1fr);
            }

            .local-band {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 991px) {
            .navbar {
                min-height: 74px;
            }

            .navbar-brand img {
                height: 40px;
            }

            .navbar .d-flex {
                align-items: stretch !important;
                gap: 14px !important;
                padding: 18px 0 8px;
            }

            .hero {
                padding: 60px 0 35px;
                min-height: auto;
            }

            .hero-title {
                max-width: 100%;
                font-size: clamp(43px, 9vw, 62px);
            }

            .hero-desc {
                font-size: 20px;
            }

            .hero-visual {
                min-height: auto;
                margin-top: 45px;
            }

            .laptop-img {
                position: relative;
                right: auto;
                top: auto;
                width: 100%;
            }

            .floating-card {
                display: none;
            }

            .stats-box {
                margin-top: 30px;
                padding: 28px;
            }

            .stat-divider {
                display: none;
            }

            .stat-item {
                gap: 18px;
            }

            .stat-item strong {
                font-size: 34px;
            }

            .stat-item span {
                font-size: 16px;
            }

            .section-pad {
                padding: 70px 0;
            }

            .section-title {
                font-size: clamp(36px, 8vw, 54px);
            }

            .feature-line,
            .trust-row {
                grid-template-columns: 1fr;
            }

            .feature-line-item,
            .feature-line-item:nth-child(3) {
                border-right: 0;
                border-bottom: 1px solid #e2e8f0;
            }

            .feature-line-item:last-child {
                border-bottom: 0;
            }

            .dash-body {
                grid-template-columns: 1fr;
            }

            .dash-sidebar {
                display: none;
            }

            .metric-grid,
            .dash-grid {
                grid-template-columns: 1fr;
            }

            .step-line {
                display: none;
            }

            .step-card {
                margin-bottom: 48px;
            }

            .cta-strip,
            .footer-bottom,
            .final-cta {
                flex-direction: column;
                align-items: stretch;
            }

            .local-band {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 575px) {
            .hero {
                padding-top: 42px;
            }

            .hero-badge {
                font-size: 13px;
                padding: 10px 13px;
            }

            .hero-title {
                font-size: 42px;
                line-height: 1.08;
                margin: 30px 0 22px;
            }

            .hero-desc {
                font-size: 18px;
                line-height: 1.65;
            }

            .hero-actions,
            .pricing-toggle,
            .url-builder {
                grid-template-columns: 1fr;
                flex-direction: column;
            }

            .hero-actions .btn,
            .btn-main,
            .btn-outline-main {
                width: 100%;
            }

            .mini-features {
                gap: 22px;
            }

            .mini-feature {
                width: calc(50% - 12px);
            }

            .mini-feature span {
                font-size: 15px;
            }

            .stat-icon {
                width: 60px;
                height: 60px;
                font-size: 29px;
            }

            .stat-item strong {
                font-size: 31px;
            }

            .soft-card,
            .final-cta,
            .footer {
                border-radius: 14px;
            }

            .feature-card,
            .contact-card,
            .price-card,
            .integration-card,
            .final-cta,
            .footer {
                padding: 26px;
            }

            .dash-topbar {
                padding: 0 18px;
            }

            .dash-main {
                padding: 18px;
            }

            .brand-logo {
                border-right: 0;
            }

            .url-builder span,
            .url-builder button {
                border-radius: 10px;
                border: 1px solid #dce6eb;
                min-height: 46px;
            }
        }
