:root {
    --navy: #071b3a;
    --navy-soft: #10294f;
    --blue: #2476d3;
    --green: #18c48f;
    --green-dark: #11a879;
    --mint: #effff8;
    --light: #f6fbff;
    --text: #253044;
    --muted: #6d7890;
    --border: #dce8f2;
    --white: #ffffff;
    --shadow: 0 22px 70px rgba(7, 27, 58, 0.12);
    --shadow-soft: 0 14px 38px rgba(7, 27, 58, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(24,196,143,.14), transparent 32%),
        radial-gradient(circle at top right, rgba(36,118,211,.12), transparent 30%),
        #ffffff;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 24px;
    border-radius: 999px;
    font-weight: 800;
    border: 2px solid var(--green);
    transition: .2s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--green);
    color: white;
    box-shadow: 0 12px 28px rgba(24,196,143,.28);
}

.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: white;
    color: var(--green-dark);
}

.btn-secondary:hover {
    background: var(--mint);
    transform: translateY(-2px);
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(220,232,242,.8);
}

.header-inner {
    min-height: 92px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}

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

.logo-full {
    display: block;
    height: 70px;
    width: auto;
}

.main-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--muted);
    font-weight: 700;
    font-size: 15px;
}

.main-nav a:hover {
    color: var(--green-dark);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: white;
    padding: 11px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--navy);
    margin: 5px 0;
    border-radius: 99px;
    transition: .2s ease;
}

/* HERO */

.hero {
    padding: 78px 0 76px;
    text-align: center;
}

.hero-label,
.contact-label {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid #ccefe3;
    background: rgba(239,255,248,.8);
    border-radius: 999px;
    color: var(--green-dark);
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 24px;
}

.hero h1 {
    max-width: 1030px;
    margin: 0 auto 24px;
    color: var(--navy);
    font-size: clamp(46px, 7vw, 86px);
    line-height: .98;
    letter-spacing: -0.07em;
}

.hero-intro {
    max-width: 780px;
    margin: 0 auto 32px;
    color: var(--muted);
    font-size: 21px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 54px;
}

.hero-trust span {
    padding: 10px 15px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(7, 27, 58, .05);
    color: var(--navy-soft);
    font-weight: 800;
}

/* DASHBOARD PREVIEW */

.product-preview {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    background: white;
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 18px;
    box-shadow: var(--shadow);
    text-align: left;
}

.product-preview::before {
    content: "";
    position: absolute;
    inset: 70px;
    z-index: -1;
    background: linear-gradient(135deg, rgba(36,118,211,.22), rgba(24,196,143,.22));
    filter: blur(55px);
}

.browser-bar {
    height: 58px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 22px;
    background: white;
    border: 1px solid #e5eef6;
    border-bottom: none;
    border-radius: 22px 22px 0 0;
}

.browser-dots {
    display: flex;
    gap: 7px;
}

.browser-dots i {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #d7e3ef;
}

.browser-bar span {
    color: var(--muted);
    font-weight: 800;
    font-size: 14px;
}

.browser-bar strong {
    justify-self: end;
    color: var(--green-dark);
    font-size: 13px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 460px;
    border: 1px solid #e5eef6;
    border-radius: 0 0 22px 22px;
    overflow: hidden;
    background: #fbfdff;
}

.dashboard-sidebar {
    background: var(--navy);
    color: white;
    padding: 26px;
}

.dashboard-sidebar strong {
    display: block;
    margin-bottom: 22px;
    font-size: 18px;
}

.dashboard-sidebar a {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 12px 13px;
    border-radius: 12px;
    margin-bottom: 8px;
    color: rgba(255,255,255,.75);
    font-weight: 700;
}

.dashboard-sidebar a.active {
    color: white;
    background: rgba(255,255,255,.12);
}

.dashboard-main {
    padding: 28px;
}

.dashboard-top {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    margin-bottom: 22px;
}

.dashboard-top small {
    color: var(--green-dark);
    font-weight: 900;
}

.dashboard-top h2 {
    color: var(--navy);
    margin: 4px 0 0;
    font-size: 25px;
    letter-spacing: -0.04em;
}

.dashboard-top button {
    border: none;
    border-radius: 999px;
    background: var(--navy);
    color: white;
    padding: 12px 18px;
    font-weight: 800;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 22px;
}

.stats div {
    background: white;
    border: 1px solid #e3edf6;
    border-radius: 18px;
    padding: 18px;
}

.stats strong {
    display: block;
    color: var(--navy);
    font-size: 28px;
    margin-bottom: 4px;
}

.stats span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.requests {
    background: white;
    border: 1px solid #e3edf6;
    border-radius: 18px;
    overflow: hidden;
}

.request-head,
.request-row {
    display: grid;
    grid-template-columns: 1.5fr .8fr 1fr 1fr;
    gap: 12px;
    align-items: center;
}

.request-head {
    padding: 14px 20px;
    background: #f8fbfe;
    color: var(--muted);
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.request-row {
    padding: 17px 20px;
    border-top: 1px solid #edf3f8;
    font-size: 14px;
}

.status {
    display: inline-flex;
    width: max-content;
    padding: 7px 11px;
    border-radius: 999px;
    font-style: normal;
    font-weight: 900;
    font-size: 12px;
}

.status.waiting {
    color: #986b00;
    background: #fff4d9;
}

.status.approved {
    color: #087352;
    background: #dcfff2;
}

.status.question {
    color: #1457a4;
    background: #e3f0ff;
}

/* SECTIONS */

.section {
    padding: 86px 0;
}

.section-light {
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 58px;
}

.section-heading span {
    display: inline-block;
    color: var(--green-dark);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 12px;
    font-size: 13px;
}

.section-heading h2 {
    color: var(--navy);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.05em;
    margin: 0 0 16px;
}

.section-heading p {
    color: var(--muted);
    line-height: 1.65;
    font-size: 18px;
    margin: 0;
}

/* WORKFLOW */

.workflow {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    position: relative;
}

.workflow::before {
    content: "";
    position: absolute;
    top: 58px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    opacity: .35;
    z-index: 0;
}

.workflow article {
    position: relative;
    z-index: 1;
    text-align: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 24px 16px;
    box-shadow: var(--shadow-soft);
}

.workflow article::after {
    content: "›";
    position: absolute;
    top: 37px;
    right: -18px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: white;
    background: var(--green);
    font-size: 30px;
    line-height: 1;
    font-weight: 300;
    z-index: 3;
}

.workflow article:last-child::after {
    display: none;
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 22px;
    background: linear-gradient(135deg, #f0f7ff, #effff8);
    border: 1px solid #dceef0;
    font-size: 31px;
}

.workflow h3 {
    color: var(--navy);
    margin: 0 0 9px;
    font-size: 17px;
}

.workflow p {
    color: var(--muted);
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* FEATURES */

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.features article {
    background: white;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.features article div {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--mint);
    color: var(--green-dark);
    font-size: 24px;
    margin-bottom: 20px;
}

.features h3 {
    color: var(--navy);
    font-size: 21px;
    margin: 0 0 10px;
}

.features p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* PRICING */

.pricing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.price-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-rows: 32px 38px 104px 105px 65px 1fr auto;
    transition: .22s ease;
}

.price-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
}

.price-card.featured {
    border: 2px solid var(--green);
    background: linear-gradient(180deg, #f2fff9 0%, white 58%);
    transform: translateY(-10px);
}

.price-card.featured:hover {
    transform: translateY(-16px);
}

.badge,
.badge-placeholder {
    min-height: 32px;
}

.badge {
    width: max-content;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--green);
    color: white;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.price-card h3 {
    color: var(--navy);
    font-size: 23px;
    margin: 0;
}

.price-card > p {
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
    font-size: 15px;
}

.price {
    color: var(--navy);
    font-size: 50px;
    font-weight: 900;
    line-height: .95;
    letter-spacing: -0.05em;
    margin: 0;
    align-self: end;
}

.price span {
    display: block;
    color: var(--muted);
    font-size: 15px;
    letter-spacing: 0;
    font-weight: 700;
    margin-top: 12px;
}

.included {
    color: var(--green-dark);
    font-weight: 900;
    line-height: 1.45;
    margin: 0;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 34px;
}

.price-card li {
    margin-bottom: 14px;
    color: var(--text);
    line-height: 1.4;
}

.price-card li::before {
    content: "✓";
    color: var(--green);
    font-weight: 900;
    margin-right: 8px;
}

.price-card .btn {
    width: 100%;
}

.pricing-note {
    text-align: center;
    color: var(--muted);
    line-height: 1.6;
    margin-top: 34px;
}

/* FAQ */

.faq {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.faq details {
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px 24px;
    box-shadow: 0 8px 24px rgba(7, 27, 58, 0.05);
}

.faq summary {
    cursor: pointer;
    color: var(--navy);
    font-weight: 900;
    font-size: 18px;
}

.faq p {
    color: var(--muted);
    line-height: 1.6;
    margin: 14px 0 0;
}

/* CONTACT */

.contact-section {
    padding-top: 40px;
}

.contact-card {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 36px;
    background: var(--navy);
    color: white;
    border-radius: 30px;
    padding: 44px;
    box-shadow: var(--shadow);
}

.contact-card h2 {
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: -0.05em;
    margin: 0 0 18px;
}

.contact-card p {
    color: rgba(255,255,255,.75);
    line-height: 1.65;
    font-size: 17px;
    margin: 0 0 24px;
}

.contact-items {
    display: grid;
    gap: 14px;
}

.contact-items a,
.contact-items span {
    color: rgba(255,255,255,.9);
    font-weight: 800;
}

.contact-card form {
    background: white;
    border-radius: 24px;
    padding: 28px;
    display: grid;
    gap: 15px;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 15px 16px;
    outline: none;
}

input:focus,
textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(24,196,143,.12);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

/* FOOTER */

footer {
    padding: 36px 0;
    color: var(--muted);
    border-top: 1px solid var(--border);
    background: white;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .header-inner {
        grid-template-columns: auto auto;
    }

    .header-cta {
        display: none;
    }

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

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

    .workflow::before,
    .workflow article::after {
        display: none;
    }

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

@media (max-width: 900px) {
    .header-inner {
        min-height: 78px;
    }

    .logo-full {
        height: 58px;
    }

    .menu-toggle {
        display: block;
        justify-self: end;
    }

    .main-nav {
        position: fixed;
        left: 4%;
        right: 4%;
        top: 86px;
        display: none;
        grid-template-columns: 1fr;
        gap: 0;
        background: white;
        border: 1px solid var(--border);
        border-radius: 22px;
        padding: 12px;
        box-shadow: var(--shadow);
        z-index: 200;
    }

    .main-nav.open {
        display: grid;
    }

    .main-nav a {
        padding: 16px;
        border-radius: 14px;
        color: var(--navy);
    }

    .main-nav a:hover {
        background: var(--mint);
    }

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

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

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

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

    .dashboard-sidebar {
        display: none;
    }

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

@media (max-width: 650px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .site-header {
        position: sticky;
    }

    .header-inner {
        min-height: 66px;
    }

    .logo-full {
        height: 46px;
        max-width: 220px;
        object-fit: contain;
    }

    .main-nav {
        top: 76px;
    }

    .hero {
        padding: 48px 0 58px;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -0.055em;
    }

    .hero-intro {
        font-size: 17px;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .hero-trust {
        margin-bottom: 34px;
    }

    .product-preview {
        padding: 8px;
        border-radius: 22px;
    }

    .product-preview::before {
        display: none;
    }

    .browser-bar {
        display: none;
    }

    .dashboard-grid {
        border-radius: 18px;
    }

    .dashboard-main {
        padding: 16px;
    }

    .dashboard-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-top button {
        display: none;
    }

    .stats,
    .request-row,
    .workflow,
    .features,
    .pricing {
        grid-template-columns: 1fr;
    }

    .request-head {
        display: none;
    }

    .request-row {
        gap: 7px;
    }

    .status {
        margin-top: 4px;
    }

    .section {
        padding: 62px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .section-heading p {
        font-size: 16px;
    }

    .workflow article,
    .features article {
        padding: 24px;
    }

    .price-card,
    .price-card.featured,
    .price-card:hover,
    .price-card.featured:hover {
        display: flex;
        flex-direction: column;
        transform: none;
    }

    .badge-placeholder {
        display: none;
    }

    .price {
        font-size: 44px;
        margin: 20px 0;
    }

    .included {
        margin-bottom: 6px;
    }

    .price-card .btn {
        margin-top: auto;
    }

    .contact-section {
        padding-top: 20px;
    }

    .contact-card {
        padding: 24px;
        border-radius: 24px;
    }

    .contact-card h2 {
        font-size: 32px;
    }

    .contact-card form {
        padding: 20px;
    }

    .footer-inner {
        display: grid;
    }
}
