* {
    box-sizing: border-box;
}

:root {
    --bg: #f8fafc;
    --surface: #ffffff;
    --surface-secondary: #f1f5f9;

    --text: #0f172a;
    --text-light: #475569;
    --border: rgba(15, 23, 42, 0.08);

    --primary: #7fb2ff;
    --primary-dark: #5d95ea;
    --primary-soft: #e9f2ff;

    --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

.container {
    width: min(1440px, calc(100% - 96px));
    margin: 0 auto;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 18px;
}

h1,h2,h3,p {
    margin-top: 0;
}

h1 {
    font-size: clamp(48px, 8vw, 70px);
    line-height: 0.92;
    letter-spacing: -0.07em;
    max-width: 850px;
    margin-bottom: 28px;
    color: var(--text);
}

h2 {
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -0.05em;
    max-width: 720px;
    margin-bottom: 38px;
    color: var(--text);
}

h3 {
    color: var(--text);
}

/* =========================
   HEADER
========================= */

/* Fontti koko sivulle */
body {
    font-family: 'Poppins', sans-serif;
}

/* Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding-top: 32px;
    background: transparent;
}

/* Header layout */
.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Logo alue */
.header-left {
    justify-self: start;
}

/* Logo link */
.site-header .logo {
    text-decoration: none;
    display: inline-block;

    transform: translateY(1px);
}

/* Logo text */
.site-header h2 {
    margin: 0;
    font-size: 35px;
    letter-spacing: -0.04em;
    font-weight: 500;
    color: var(--primary-dark);

    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Logo hover */
.site-header .logo:hover h2 {
    transform: translateY(-1px);
    opacity: 0.9;
}

/* Navigaatio */
.main-nav {
    justify-self: center;
}

/* Navigaation lista */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;

    list-style: none;
    margin: 0;
    padding: 0;
}

/* Menu item */
.menu-item {
    position: relative;
    white-space: nowrap;
}

/* Kaikki header-linkit */
.main-nav a {
    text-decoration: none;
}

/* Päävalikon linkit */
.menu-item > a {
    position: relative;
    display: inline-block;

    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;

    transition: color 0.2s ease;
}

/* Päävalikon hover */
.menu-item > a:hover {
    color: var(--primary-dark);
}

/* Päävalikon underline */
.menu-item > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--primary-dark);
    border-radius: 999px;

    transition: width 0.25s ease;
}

/* Päävalikon underline hover */
.menu-item > a:hover::after {
    width: 100%;
}

/* Submenu */
.sub-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    transform: translate(-50%, 10px);

    min-width: 315px;

    list-style: none;
    margin: 0;
    padding: 12px;

    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(24px);

    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 22px;

    box-shadow:
        0 24px 70px rgba(15, 23, 42, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 999;

    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        visibility 0.22s ease;
}

/* Submenun pieni nuoli */
.sub-menu::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);

    width: 14px;
    height: 14px;

    background: rgba(255, 255, 255, 0.94);
    border-left: 1px solid rgba(255, 255, 255, 0.75);
    border-top: 1px solid rgba(255, 255, 255, 0.75);
}

/* Hover-silta submenuun */
.menu-item-has-children::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);

    width: 315px;
    height: 24px;
}

/* Submenu näkyviin */
.menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translate(-50%, 0);
}

/* Submenun linkit */
.sub-menu li a {
    display: block;

    padding: 13px 16px;

    color: var(--text);
    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    border-radius: 14px;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

/* Submenu hover */
.sub-menu li a:hover {
    background: var(--surface-secondary);
    color: var(--primary-dark);

    transform: translateX(4px);
}

/* CTA nappi */
.header-cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 14px 22px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;

    box-shadow: 0 10px 30px rgba(127, 178, 255, 0.35);

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

/* CTA hover */
.header-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(127, 178, 255, 0.45);
}

/* Mobiili */
@media (max-width: 900px) {
    .site-header {
        padding: 20px;
    }

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

    .main-nav,
    .header-cta {
        display: none;
    }

    .logo img {
        height: 30px;
    }
}

/* =========================
   HERO
========================= */


/* Hero section */
.hero-full {
    position: relative;
    min-height: min(100vh, 900px);
    display: flex;
    align-items: center;
    padding: 140px 0 90px;
    overflow: hidden;
}


/* Hero layout */
.hero-full-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}


/* Hero sisältö */
.hero-content {
    position: relative;
    z-index: 2;

    max-width: 820px;

    padding-top: 30px;
}


/* Hero otsikko */
.hero-content h1 {
    margin: 0 0 26px;

    font-size: clamp(42px, 4.5vw, 68px);
    line-height: 0.92;
    letter-spacing: -0.06em;
    font-weight: 900;

    color: var(--primary-dark);
}


/* Hero korostettu sana */
.hero-content h1 span {
    display: inline-block;

    color: transparent;
    -webkit-text-stroke: 2px var(--primary-dark);

    line-height: 1;
}


/* Hero teksti */
.hero-text {
    max-width: 620px;

    margin: 0;

    font-size: 18px;
    line-height: 1.75;

    color: var(--text-light);
}


/* Hero napit */
.hero-actions {
    display: flex;
    gap: 14px;

    margin-top: 36px;
}


/* Hero button */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 26px;

    background: var(--primary);
    color: #fff;

    border-radius: 999px;
    text-decoration: none;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;

    box-shadow: 0 12px 30px rgba(127, 178, 255, 0.35);

    transition:
        background 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


/* Hero button hover */
.button:hover {
    background: var(--primary-dark);

    transform: translateY(-2px);

    box-shadow: 0 18px 40px rgba(127, 178, 255, 0.45);
}


/* Oikean puolen visual */
.hero-visual {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}


/* Visual glow */
.hero-visual::before {
    display: none;
}


/* Hero kuva */
.hero-visual img {
    width: 100%;
    max-width: 560px;
    height: auto;

    display: block;

    filter:
        drop-shadow(0 24px 40px rgba(15, 23, 42, 0.12));
}


/* Hero tausta */
.hero-bg {
    position: absolute;
    inset: 0;

    z-index: -2;

    background:
        radial-gradient(
            circle at top left,
            rgba(127, 178, 255, 0.12),
            transparent 34%
        ),

        radial-gradient(
            circle at right center,
            rgba(170, 210, 255, 0.03),
            transparent 28%
        ),

        radial-gradient(
            circle at bottom left,
            rgba(120, 160, 255, 0.05),
            transparent 32%
        ),

        linear-gradient(
            180deg,
            #f8fafc 0%,
            #f3f7fd 100%
        );
}


/* Iso blur taustalle */
.hero-bg::after {
    content: "";

    position: absolute;

    width: 760px;
    height: 760px;

    top: -240px;
    right: -180px;

    border-radius: 999px;

    background: rgba(127, 178, 255, 0.04);

    filter: blur(140px);
}


/* Tablet */
@media (max-width: 1100px) {

    .hero-full-inner {
        gap: 50px;
    }

    .hero-content h1 {
        font-size: clamp(46px, 7vw, 72px);
    }
}


/* Mobile */
@media (max-width: 900px) {

    .hero-full {
        min-height: auto;

        padding: 130px 0 70px;
    }

    .hero-full-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(42px, 12vw, 58px);

        line-height: 0.95;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-visual img {
        max-width: 360px;
    }
}

/* =========================
   SECTIONS
========================= */

.services,
.process {
    padding: 90px 0;
}

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

.card {
    background: var(--surface);
    padding: 32px;
    border-radius: 26px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.card h3 {
    font-size: 24px;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-light);
    line-height: 1.7;
}

.process-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.steps {
    display: grid;
    gap: 14px;
}

.step {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 24px;
    align-items: center;
    padding: 24px;
    background: var(--surface);
    border-radius: 24px;
    border: 1px solid var(--border);
}

.step span {
    font-weight: 800;
    color: var(--primary-dark);
}

.step p {
    margin: 0;
    font-size: 18px;
}

/* =========================
   FOOTER
========================= */

/* Footer */
.site-footer {
    padding-top: 60px;
    background: #eef4ff;
}

/* Footer grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr 1.2fr;
    gap: 42px;
}

/* Footer description */
.footer-description {
    max-width: 340px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.75;
}

.footer-brand h2 {
    font-size: 35px;
    letter-spacing: -0.04em;
    font-weight: 500;
    color: var(--text);
}

/* Footer titles */
.site-footer h4 {
    margin: 0 0 24px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
}

/* Footer lists */
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Footer list item */
.site-footer li {
    margin-bottom: 10px;

    color: var(--text);
    font-size: 15px;
    line-height: 1.45;
}

/* Footer links */
.site-footer a {
    color: var(--text);
    text-decoration: none;

    transition: color 0.2s ease, transform 0.2s ease;
}

/* Footer link hover */
.site-footer a:hover {
    color: var(--primary);
}

/* Blog links */
.footer-blogs a {
    display: inline-block;
    max-width: 280px;
}

/* Footer bottom */
.footer-bottom {
    margin-top: 50px;
    padding: 20px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer bottom layout */
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

/* Footer copyright */
.footer-bottom p {
    margin: 0;

    color: var(--text);
    font-size: 14px;
}

/* Footer legal */
.footer-legal {
    display: flex;
    gap: 24px;
}

/* Footer legal links */
.footer-legal a {
    color: var(--text);
    font-size: 14px;
}

/* Footer legal hover */
.footer-legal a:hover {
    color: var(--primary);
}

/* Tablet */
@media (max-width: 1000px) {

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

}

/* Mobile */
@media (max-width: 640px) {

    .site-footer {
        padding-top: 60px;
    }

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

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

    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }

}

/* =========================
   MOBILE
========================= */

@media (max-width: 800px) {

    nav {
        display: none;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero-grid,
    .cards,
    .process-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .button,
    .button-secondary {
        width: 100%;
    }
}

/* =========================
   PROBLEM / SALES SECTIONS
========================= */

/* Yhteinen osioiden tyyli */
.problem-section,
.sales-section {
    padding: 120px 0;
    background: var(--bg);
}

/* Grid layout */
.problem-grid,
.sales-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
}

/* Kuvien alue */
.problem-image,
.sales-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Kuvat */
.problem-image img,
.sales-image img {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
    filter: drop-shadow(0 24px 50px rgba(127, 178, 255, 0.22));
}

/* Tekstialue */
.problem-content,
.sales-content {
    max-width: 560px;
}

/* Otsikot */
.problem-content h2,
.sales-content h2 {
    margin: 0 0 24px;

    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 900;
    font-style: normal;

    color: var(--primary-dark);
}

/* Outline-tyylinen sana */
.problem-content h2 span,
.sales-content h2 span {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-dark);
}

/* Tekstit */
.problem-content p,
.sales-content p {
    max-width: 520px;
    margin: 0 0 18px;

    font-size: 17px;
    line-height: 1.75;
    color: var(--text);
}

/* Tekstilinkki */
.text-link {
    display: inline-block;

    color: var(--text);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;

    border-bottom: 2px solid var(--primary);

    transition: color 0.2s ease, transform 0.2s ease;
}

/* Tekstilinkki hover */
.text-link:hover {
    color: var(--primary-dark);
    transform: translateY(-1px);
}

/* CTA section */
.cta-section {
    padding: 140px 0;
    background: var(--bg);
}

/* CTA box */
.cta-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 90px 70px;

    border-radius: 36px;

    background: #fff;
    box-shadow: var(--shadow);
}

/* CTA teksti */
.cta-box p {
    max-width: 620px;

    margin: 0 auto 44px;

    text-align: center;

    font-size: 18px;
    line-height: 1.7;

    color: var(--text-light);
}

/* CTA otsikko */
.cta-box h2 {
    max-width: 900px;

    margin: 0 auto 18px;

    text-align: center;

    font-size: clamp(38px, 5vw, 68px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 900;

    color: var(--primary-dark);
}


/* CTA outlined sana */
.cta-box h2 span {
    color: transparent;

    -webkit-text-stroke: 2px var(--primary-dark);
}

@media (max-width: 900px) {

    .cta-box {
        padding: 55px 28px;
    }

}

/* Mobiili */
@media (max-width: 900px) {
    .problem-section,
    .sales-section {
        padding: 80px 0;
    }

    .problem-grid,
    .sales-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .problem-content h2,
    .sales-content h2 {
        font-size: clamp(40px, 12vw, 58px);
    }

    .sales-image {
        order: -1;
    }

    .cta-box {
        padding: 45px 24px;
    }
}

/* =========================
   PROMISE SECTION
========================= */

/* Promise section */
.promise-section {
    padding: 120px 0;
    background: var(--primary-soft);
}

/* Promise heading */
.promise-heading {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

/* Promise title */
.promise-heading h2 {
    margin: 0 auto;

    max-width: 820px;

    text-align: center;

    color: var(--primary-dark);
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    font-weight: 900;
}

/* Promise grid */
.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

/* Promise card */
.promise-card {
    padding: 36px 30px;
    text-align: center;

    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 28px;

    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Promise card hover */
.promise-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.1);
}

.promise-card:hover .promise-icon svg {
    animation-duration: 1.6s;
}

/* Promise icon */
.promise-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
}

.promise-icon svg {
    width: 65px;
    height: 65px;
    stroke-width: 2.2;
}

.promise-card:nth-child(1):hover .promise-icon svg {
    animation: gemSpin 0.9s ease-in-out;
}

.promise-card:nth-child(2):hover .promise-icon svg {
    animation: checkBounce 0.7s ease;
}

.promise-card:nth-child(3):hover .promise-icon svg {
    animation: trendTilt 0.9s ease-in-out;
}
/* GEM animation */
@keyframes gemSpin {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }

    20% {
        transform: rotate(-8deg) scale(1.04);
    }

    40% {
        transform: rotate(8deg) scale(1.06);
    }

    60% {
        transform: rotate(-4deg) scale(1.03);
    }

    80% {
        transform: rotate(4deg) scale(1.04);
    }
}

/* CHECK animation */
@keyframes checkBounce {
    0%, 100% {
        transform: scale(1) translateY(0);
    }

    20% {
        transform: scale(1.12) translateY(-4px);
    }

    40% {
        transform: scale(0.96) translateY(0);
    }

    60% {
        transform: scale(1.06) translateY(-2px);
    }
}

/* TREND animation */
@keyframes trendTilt {
    0%, 100% {
        transform: rotate(0deg) translateX(0);
    }

    25% {
        transform: rotate(-4deg) translateX(-2px);
    }

    50% {
        transform: rotate(4deg) translateX(3px);
    }

    75% {
        transform: rotate(-2deg) translateX(-1px);
    }
}

/* Promise card title */
.promise-card h3 {
    margin: 0 auto 16px;
    max-width: 280px;

    color: var(--primary-dark);
    font-size: 21px;
    line-height: 1.25;
    font-weight: 800;
}

/* Promise card text */
.promise-card p {
    margin: 0 auto;
    max-width: 330px;

    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* Promise action */
.promise-action {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

/* Promise button */
.promise-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 26px;

    color: var(--primary-dark);
    background: #fff;

    border: 2px solid var(--primary-dark);
    border-radius: 999px;

    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;

    box-shadow: 0 12px 30px rgba(127, 178, 255, 0.22);

    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

/* Promise button hover */
.promise-button:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.promise-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Mobile */
@media (max-width: 900px) {
    .promise-section {
        padding: 80px 0;
    }

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

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

    .promise-heading {
        margin-bottom: 45px;
    }
}

@media (max-width: 560px) {
    .promise-grid--4 {
        grid-template-columns: 1fr;
    }
}

/* =========================
   PRICING PAGE
========================= */

.pricing-page {
    padding: 170px 0 100px;
    background: var(--primary-soft);
}

.pricing-heading {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.pricing-heading h1,
.pricing-heading h2 {
    margin: 0 0 18px;
    color: var(--primary-dark);
    font-size: clamp(44px, 6vw, 82px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.pricing-heading p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--text);
    font-size: 17px;
    line-height: 1.7;
}

.pricing-heading.small {
    text-align: center;
}

.pricing-heading.small h2 {
    margin: 0 auto 18px;

    max-width: 900px;

    text-align: center;

    font-size: clamp(38px, 5vw, 68px);
}

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

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;

    min-height: 620px;
    padding: 34px 28px 28px;

    background: rgba(255, 255, 255, 0.72);
    border: 2px solid var(--primary);
    border-radius: 26px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);

    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    background: #fff;
    box-shadow: 0 28px 70px rgba(127, 178, 255, 0.22);
}

.pricing-card.featured {
    background: #fff;
    border-color: var(--primary-dark);
    box-shadow: 0 28px 70px rgba(127, 178, 255, 0.24);
}

.badge {
    position: absolute;
    top: 15px;
    right: 28px;

    padding: 8px 12px;
    border-radius: 999px;

    background: var(--primary);
    color: #fff;

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pricing-card h3 {
    margin: 0 0 12px;
    color: var(--primary-dark);
    font-size: 18px;
    font-weight: 900;
}

.price {
    color: var(--primary-dark);
    font-size: clamp(42px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.vat {
    display: block;
    margin-top: 8px;

    color: var(--primary-dark);
    font-size: 18px;
    font-weight: 800;
}

.pricing-desc {
    margin: 16px 0 0;
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
}

.pricing-line {
    width: 100%;
    height: 3px;
    margin: 26px 0;

    background: var(--primary);
    border-radius: 999px;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.pricing-card li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 28px;

    color: var(--text);
    font-size: 15px;
    line-height: 1.5;
}

.pricing-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;

    color: var(--primary-dark);
    font-weight: 900;
}

.pricing-button {
    margin-top: auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    padding: 15px 22px;

    background: var(--primary-dark);
    color: #fff;
    text-decoration: none;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;

    box-shadow: 0 14px 34px rgba(127, 178, 255, 0.35);

    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-button:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(127, 178, 255, 0.45);
}

/* Scroll reveal */
.reveal-card {
    opacity: 0;
    transform: translateY(40px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* delay */
.reveal-card:nth-child(2) {
    transition-delay: 0.12s;
}

.reveal-card:nth-child(3) {
    transition-delay: 0.24s;
}

/* =========================
   AFTER LAUNCH
========================= */

.after-launch {
    padding: 110px 0;
    background: var(--bg);
}

.after-launch-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.after-launch h2 {
    max-width: 620px;
    margin: 0;

    color: var(--primary-dark);
    font-size: clamp(38px, 5vw, 70px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.after-launch p {
    max-width: 620px;
    margin: 0;

    color: var(--text-light);
    font-size: 18px;
    line-height: 1.8;
}

.pricing-card li.pricing-plus::before {
    content: "+";
    top: -2px;

    color: var(--primary);
    font-size: 18px;
    font-weight: 900;
}

/* =========================
   MAINTENANCE PRICING
========================= */

.maintenance-pricing {
    padding: 110px 0;
    background: var(--surface);
}

.maintenance-card {
    min-height: 500px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        min-height: auto;
    }

    .after-launch-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .pricing-page {
        padding: 140px 0 70px;
    }

    .pricing-card {
        padding: 28px 22px 24px;
    }

    .price {
        font-size: 42px;
    }

    .after-launch,
    .maintenance-pricing {
        padding: 80px 0;
    }
}

/* =========================
   BLOG PAGE
========================= */

/* Blog page */
.blog-page {
    padding: 170px 0 110px;
    background: var(--primary-soft);
}

/* Blog heading */
.blog-heading {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

/* Blog title */
.blog-heading h1 {
    margin: 0 0 18px;

    color: var(--primary-dark);
    font-size: clamp(44px, 6vw, 82px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 900;
}

/* Blog intro */
.blog-heading p {
    max-width: 660px;
    margin: 0 auto;

    color: var(--text);
    font-size: 17px;
    line-height: 1.7;
}

/* Blog grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    overflow: hidden;

    background: rgba(255, 255, 255, 0.76);
    border: 2px solid var(--primary);
    border-radius: 28px;

    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.06);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.blog-card.reveal-card {
    opacity: 0;
    transform: translateY(40px);
}

.blog-card.reveal-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.blog-card.reveal-card.visible:hover {
    transform: translateY(-6px);
}

.blog-grid .blog-card.reveal-card:nth-child(3n + 1) {
    transition-delay: 0s;
}

.blog-grid .blog-card.reveal-card:nth-child(3n + 2) {
    transition-delay: 0.12s;
}

.blog-grid .blog-card.reveal-card:nth-child(3n + 3) {
    transition-delay: 0.24s;
}

/* Blog card hover */
.blog-card:hover {
    transform: translateY(-6px);
    background: #fff;
    box-shadow: 0 28px 70px rgba(127, 178, 255, 0.22);
}

/* Blog image link */
.blog-card-image {
    display: block;
    height: 230px;

    overflow: hidden;
    background: var(--surface-secondary);
}

/* Blog image */
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    display: block;

    transition: transform 0.35s ease;
}

/* Blog image hover */
.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

/* Blog placeholder */
.blog-card-placeholder {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(circle at top left, rgba(127, 178, 255, 0.35), transparent 35%),
        linear-gradient(135deg, var(--surface) 0%, var(--primary-soft) 100%);
}

/* Blog placeholder text */
.blog-card-placeholder span {
    color: var(--primary-dark);
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

/* Blog content */
.blog-card-content {
    padding: 28px;
}

/* Blog meta */
.blog-meta {
    margin-bottom: 14px;

    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Blog card title */
.blog-card h2 {
    margin: 0 0 14px;

    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.04em;
    font-weight: 900;
}

/* Blog title link */
.blog-card h2 a {
    color: var(--text);
    text-decoration: none;

    transition: color 0.2s ease;
}

/* Blog title hover */
.blog-card h2 a:hover {
    color: var(--primary-dark);
}

/* Blog excerpt */
.blog-card p {
    margin: 0 0 24px;

    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* Read more */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--primary-dark);
    text-decoration: none;

    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;

    transition: color 0.2s ease, transform 0.2s ease;
}

/* Read more arrow */
.blog-read-more::after {
    content: "→";
    margin-left: 8px;

    transition: transform 0.2s ease;
}

/* Read more hover */
.blog-read-more:hover {
    color: var(--primary);
}

/* Read more arrow hover */
.blog-read-more:hover::after {
    transform: translateX(4px);
}

/* Pagination */
.blog-pagination {
    margin-top: 60px;

    display: flex;
    justify-content: center;
}

/* Pagination links */
.blog-pagination .nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Pagination items */
.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 42px;
    height: 42px;
    padding: 0 14px;

    background: #fff;
    color: var(--text);
    text-decoration: none;

    border: 1px solid var(--border);
    border-radius: 999px;

    font-size: 14px;
    font-weight: 800;

    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

/* Current page */
.blog-pagination .current {
    background: var(--primary-dark);
    color: #fff;
    border-color: var(--primary-dark);
}

/* Empty state */
.blog-empty {
    max-width: 680px;
    margin: 0 auto;

    padding: 60px 40px;

    text-align: center;
    background: #fff;

    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

/* Empty title */
.blog-empty h2 {
    margin: 0 0 12px;

    color: var(--text);
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -0.04em;
}

/* Empty text */
.blog-empty p {
    margin: 0;

    color: var(--text-light);
    font-size: 17px;
}

/* Tablet */
@media (max-width: 1000px) {

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

}

/* Mobile */
@media (max-width: 640px) {

    .blog-page {
        padding: 140px 0 80px;
    }

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

    .blog-card-image {
        height: 210px;
    }

    .blog-card-content {
        padding: 24px;
    }

}

/* =========================
   SINGLE POST
========================= */

.single-post-page {
    background: var(--bg);
}

.single-hero {
    padding: 170px 0 70px;
    background: var(--primary-soft);
}

.single-hero-inner {
    max-width: 920px;
    text-align: center;
}

.single-meta {
    margin-bottom: 18px;

    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.single-hero h1 {
    margin: 0 auto 24px;

    color: var(--primary-dark);
    font-size: clamp(42px, 6vw, 78px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.single-excerpt {
    max-width: 680px;
    margin: 0 auto;

    color: var(--text-light);
    font-size: 18px;
    line-height: 1.8;
}

.single-featured-image {
    padding: 50px 0 0;
    background: var(--bg);
}

.single-featured-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;

    border-radius: 32px;
    box-shadow: var(--shadow);
}

.single-content-section {
    padding: 90px 0 120px;
}

.single-content-grid {
    display: grid;
    grid-template-columns: 220px minmax(0, 760px);
    gap: 50px;
    align-items: start;

    max-width: 1080px;
    margin: 0 auto;
}

.single-content-section .container {
    width: 100%;
}

.single-sidebar {
    position: sticky;
    top: 120px;
}

.single-sidebar-box {
    padding: 24px;

    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.single-sidebar-box span {
    display: block;
    margin-bottom: 8px;

    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.single-sidebar-box p {
    margin: 0;

    color: var(--text);
    font-size: 15px;
    font-weight: 700;
}

.back-to-blog {
    display: inline-flex;
    margin-bottom: 18px;

    color: var(--primary-dark);
    text-decoration: none;

    font-size: 14px;
    font-weight: 800;

    transition: color 0.2s ease, transform 0.2s ease;
}

.back-to-blog:hover {
    color: var(--primary);
    transform: translateX(-3px);
}

.single-content {
    padding: 44px;

    background: #fff;
    border: 1px solid var(--border);
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.single-content > *:first-child {
    margin-top: 0;
}

.single-content h2 {
    margin: 48px 0 18px;

    color: var(--text);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.single-content h3 {
    margin: 34px 0 14px;

    color: var(--primary-dark);
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 900;
}

.single-content p {
    margin: 0 0 22px;

    color: var(--text-light);
    font-size: 18px;
    line-height: 1.85;
    font-weight: 500;
}

.single-content ul,
.single-content ol {
    margin: 0 0 28px;
    padding-left: 24px;

    color: var(--text-light);
    font-size: 18px;
    line-height: 1.8;
}

.single-content li {
    margin-bottom: 10px;
}

.single-content a {
    color: var(--primary-dark);
    font-weight: 700;
}

.single-content blockquote {
    margin: 42px 0;
    padding: 28px 32px;

    background: var(--primary-soft);
    border-left: 5px solid var(--primary);
    border-radius: 22px;

    color: var(--text);
    font-size: 20px;
    line-height: 1.7;
    font-weight: 700;
}

.single-content img {
    max-width: 100%;
    height: auto;

    border-radius: 22px;
    box-shadow: var(--shadow);
}

/* Mobile */
@media (max-width: 900px) {
    .single-hero {
        padding: 140px 0 60px;
    }

    .single-content-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .single-sidebar {
        position: static;
    }

    .single-content {
        padding: 30px 24px;
    }

    .single-content p,
    .single-content ul,
    .single-content ol {
        font-size: 16px;
    }
}

/* =========================
   CONTACT PAGE
========================= */

.contact-page {
    padding: 170px 0 110px;
    background: var(--primary-soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
    align-items: center;
}

.contact-content h1 {
    margin: 0 0 24px;

    color: var(--primary-dark);

    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
    letter-spacing: -0.03em;

    font-weight: 900;

    white-space: nowrap;
}

.contact-content h1 span {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-dark);
}

.contact-content p {
    max-width: 620px;
    margin: 0 0 36px;

    color: var(--text);
    font-size: 18px;
    line-height: 1.75;
}

.contact-form {
    max-width: 700px;
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 18px;

    color: var(--text);
    background: rgba(255, 255, 255, 0.65);

    border: 2px solid var(--primary);
    border-radius: 16px;

    font-family: inherit;
    font-size: 15px;
    font-weight: 600;

    outline: none;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea {
    min-height: 170px;
    resize: vertical;
    margin-bottom: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: #fff;
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 4px rgba(127, 178, 255, 0.22);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    margin: 6px 0 24px;

    color: var(--text-light);
    font-size: 13px;
    line-height: 1.5;
    font-weight: 600;
}

.form-check input {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    margin-top: 2px;
}

.contact-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 30px;

    background: var(--primary-dark);
    color: #fff;

    border: none;
    border-radius: 999px;

    font-family: inherit;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.06em;

    cursor: pointer;
    box-shadow: 0 14px 34px rgba(127, 178, 255, 0.35);

    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form button:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(127, 178, 255, 0.45);
}

.contact-side {
    display: grid;
    gap: 22px;
}

.contact-card {
    position: relative;
    padding: 46px;

    background: #fff;
    border: 1px solid var(--border);
    border-radius: 34px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.contact-label {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;

    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-card h2 {
    position: relative;
    margin: 0 0 18px;

    color: var(--primary-dark);

    letter-spacing: -0.04em;
    line-height: 1;
}

.contact-card p {
    position: relative;
    margin: 0 0 28px;

    color: var(--text-light);
    font-size: 17px;
    line-height: 1.75;
}

.contact-card ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-card li {
    position: relative;
    margin-bottom: 14px;
    padding-left: 28px;

    color: var(--text-light);
    font-size: 15px;
    font-weight: 700;
}

.contact-card li::before {
    content: "✓";
    position: absolute;
    left: 0;

    color: var(--primary-dark);
    font-weight: 900;
}

.contact-info-box {
    padding: 30px;

    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: var(--shadow);
}

.contact-info-box h3 {
    margin: 0 0 16px;

    color: var(--primary-dark);
    font-size: 20px;
    font-weight: 900;
}

.contact-info-box a {
    display: block;
    margin-bottom: 10px;

    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;

    transition: color 0.2s ease;
}

.contact-info-box a:hover {
    color: var(--primary-dark);
}

@media (max-width: 900px) {
    .contact-page {
        padding: 140px 0 80px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

/* =========================
   SERVICE HERO
========================= */

.service-hero {
    position: relative;
    overflow: hidden;

    min-height: min(82vh, 800px);
    display: flex;
    align-items: center;

    padding: 150px 0 90px;

    background:
        radial-gradient(circle at top left, rgba(127, 178, 255, 0.30), transparent 34%),
        radial-gradient(circle at right center, rgba(170, 210, 255, 0.22), transparent 28%),
        radial-gradient(circle at bottom left, rgba(120, 160, 255, 0.12), transparent 32%),
        linear-gradient(180deg, #f8fafc 0%, #f3f7fd 100%);
}

.service-hero::before {
    content: "";

    position: absolute;
    width: 760px;
    height: 760px;

    top: -240px;
    right: -180px;

    border-radius: 999px;
    background: rgba(127, 178, 255, 0.14);
    filter: blur(140px);

    pointer-events: none;
}

.service-hero .hero-bg {
    display: none;
}

.service-hero .hero-full-inner {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 80px;
}

.service-hero .hero-content {
    max-width: 820px;
    padding-top: 30px;
}

.service-hero h1 {
    margin: 0 0 26px;

    color: var(--primary-dark);
    font-size: clamp(48px, 5vw, 78px);
    line-height: 0.92;
    letter-spacing: -0.06em;
    font-weight: 900;
}

.service-hero h1 span {
    display: inline-block;

    color: transparent;
    -webkit-text-stroke: 2px var(--primary-dark);
}

.service-hero .hero-text {
    max-width: 620px;

    color: var(--text-light);
    font-size: 18px;
    line-height: 1.75;
    font-weight: 500;
}

.service-hero .hero-actions {
    margin-top: 36px;
}

.service-hero .hero-visual {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 460px;
}

.service-hero .hero-visual::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    border-radius: 999px;
    background: rgba(127, 178, 255, 0.22);
    filter: blur(90px);

    z-index: -1;
}

.service-hero .hero-visual img {
    width: 100%;
    max-width: 560px;
    height: 100%;
    object-fit: contain;
    object-position: center center;

    display: block;
    margin: 0;

    filter: drop-shadow(0 24px 40px rgba(15, 23, 42, 0.12));
}

/* Reverse sales layout */
.sales-grid.reverse .sales-content {
    order: 2;
}

.sales-grid.reverse .sales-image {
    order: 1;
}

/* Tablet */
@media (max-width: 1000px) {
    .service-hero {
        min-height: auto;
        padding: 130px 0 70px;
    }

    .service-hero .hero-full-inner {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: left;
    }

    .service-hero .hero-content {
        max-width: 100%;
        padding-top: 0;
    }

    .service-hero .hero-text {
        margin: 0;
    }

    .service-hero .hero-actions {
        justify-content: flex-start;
    }

    .service-hero .hero-visual {
        order: -1;
        max-width: 420px;
        margin: 0 auto;
        height: 340px;
    }

    .service-hero .hero-visual img {
        max-width: 360px;
    }
}

/* Mobile */
@media (max-width: 700px) {
    .service-hero {
        padding: 125px 0 70px;
    }

    .service-hero h1 {
        font-size: clamp(42px, 12vw, 58px);
        line-height: 0.95;
    }

    .service-hero .hero-text {
        font-size: 16px;
    }

    .service-hero .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .service-hero .hero-actions .button {
        width: 100%;
    }

    .sales-grid.reverse .sales-content,
    .sales-grid.reverse .sales-image {
        order: initial;
    }
}

/* Included */
.section-heading.included-heading {
    max-width: 100%;
    margin: 0 auto 64px;
    text-align: center;
}

.section-heading.included-heading h2 {
    max-width: none;
    margin: 0 auto;
    text-align: center;
    color: var(--primary-dark);
}

.included-section {
    padding: 120px 0;
    background: var(--bg);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}

.included-card {
    position: relative;

    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 245px;

    padding: 34px 30px 32px;

    background: transparent;
    border: 1px solid var(--border);
    border-radius: 28px;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.included-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.55);
    border-color: var(--primary);
    box-shadow: 0 24px 70px rgba(17, 24, 39, 0.08);
}

.included-icon {
    display: flex;
    align-items: center;

    margin-bottom: 22px;

    color: var(--primary);
}

.included-icon svg {
    width: 34px;
    height: 34px;

    stroke: var(--primary);
    stroke-width: 2.2;
}

.included-card h3 {
    margin: 0 0 12px;

    color: var(--primary-dark);
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.included-card p {
    margin: 0;

    color: var(--text-light);
    font-size: 15.5px;
    line-height: 1.7;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 980px) {
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .included-section {
        padding: 80px 0;
    }

    .included-heading {
        margin-bottom: 44px;
    }

    .included-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .included-card {
        min-height: auto;
        padding: 28px 24px;
    }

    .included-icon svg {
        width: 30px;
        height: 30px;
    }
}

/* FAQ */
.faq-section {
    padding: 120px 0;
    background: var(--primary-soft);
}

.faq-section .section-heading {
    margin: 0 auto 64px;
    text-align: center;
}

.faq-section .section-heading h2 {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--primary-dark);
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;

    align-items: start;

    max-width: 1120px;
    margin: 0 auto;
}

.faq-item {
    overflow: hidden;

    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(127, 178, 255, 0.28);
    border-radius: 24px;

    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.05);

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.faq-item:hover,
.faq-item[open] {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 24px 70px rgba(127, 178, 255, 0.16);
}

.faq-item summary {
    position: relative;

    padding: 24px 66px 24px 26px;

    cursor: pointer;
    list-style: none;

    color: var(--primary-dark);
    font-size: 17px;
    line-height: 1.35;
    font-weight: 850;
    letter-spacing: -0.025em;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";

    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary-soft);
    color: var(--primary-dark);

    border: 1px solid rgba(127, 178, 255, 0.35);
    border-radius: 999px;

    font-size: 23px;
    font-weight: 700;
    line-height: 1;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.faq-item[open] summary::after {
    content: "−";
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
    margin: 0;
    padding: 0 26px 26px;

    color: var(--text-light);
    font-size: 15.5px;
    line-height: 1.75;
    font-weight: 500;

    animation: faqOpen 0.25s ease;
}

@keyframes faqOpen {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 800px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .faq-item summary {
        padding: 22px 58px 22px 22px;
        font-size: 16.5px;
    }

    .faq-item p {
        padding: 0 22px 24px;
    }
}

/* =========================
   QUOTE PAGE
========================= */

.quote-page {
    background: var(--primary-soft);
}

/* Hero */
.quote-hero {
    padding: 180px 0 24px;
}

.quote-hero-inner {
    max-width: 1240px;
}

.quote-hero h1 {
    margin: 0 0 14px;

    color: var(--primary-dark);
    font-size: 56px;
    line-height: 1;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.quote-hero p {
    max-width: 620px;
    margin: 0;

    color: var(--text-light);
    font-size: 17px;
    line-height: 1.7;
    font-weight: 500;
}

/* Section */
.quote-form-section {
    padding: 0 0 80px;
}

.quote-form-wrap {
    max-width: 1320px;
}

/* Layout */
.quote-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 820px) 360px;
    gap: 40px;
    align-items: flex-start;
}

/* Form */
.quote-form {
    padding: 46px;
    background:
        linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.94) 100%);

    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 34px;

    box-shadow:
        0 24px 70px rgba(17, 24, 39, 0.10),
        0 4px 12px rgba(17, 24, 39, 0.04);

    backdrop-filter: blur(12px);
}   

.quote-block {
    margin-bottom: 46px;
}

.quote-block > label:not(:first-of-type) {
    margin-top: 28px;
}

.quote-block:last-of-type {
    margin-bottom: 34px;
}

.quote-block h2 {
    margin: 0 0 22px;

    color: var(--primary-dark);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.quote-divider {
    height: 1px;
    width: 100%;
    margin: 10px 0 42px;

    background: rgba(17, 24, 39, 0.08);
    border-radius: 999px;
}

/* Inputs */
.quote-form label {
    display: block;

    color: var(--text);
    font-size: 14px;
    font-weight: 800;
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form textarea {
    font-family: inherit;
    width: 100%;
    margin-top: 10px;
    padding: 16px 18px;

    background: #fff;

    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 16px;

    color: var(--text);
    font-size: 15px;
    font-weight: 500;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease,
        background 0.2s ease;
}

.quote-form textarea {
    resize: vertical;
    min-height: 160px;
}

.quote-form input:focus,
.quote-form textarea:focus {
    background: #fff;
    border-color: var(--primary);

    box-shadow:
        0 0 0 4px rgba(80, 70, 255, 0.10),
        0 10px 24px rgba(80, 70, 255, 0.10);

    transform: translateY(-1px);
}

.quote-form ::placeholder {
    color: rgba(17, 24, 39, 0.42);
}

/* Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Option buttons */
.option-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.option-grid label {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 16px;

    background: #fff;

    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 999px;

    color: var(--text);
    font-size: 13px;
    font-weight: 850;
    line-height: 1;

    cursor: pointer;
    user-select: none;

    box-shadow: 0 8px 22px rgba(17, 24, 39, 0.04);

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.option-grid label:hover {
    transform: translateY(-2px);

    background: var(--primary-soft);
    border-color: var(--primary);

    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
}

.option-grid label:has(input:checked) {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.option-grid input {
    width: 14px;
    height: 14px;
    margin: 0;

    accent-color: var(--primary);
}

/* Submit */
.quote-submit {
    width: 100%;
    justify-content: center;

    border: none;
    cursor: pointer;

    padding: 18px 24px;

    border-radius: 18px;

    font-size: 15px;
    font-weight: 900;
    letter-spacing: -0.02em;

    box-shadow: 0 18px 40px rgba(80, 70, 255, 0.22);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.quote-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 50px rgba(80, 70, 255, 0.30);
}

/* Success */
.quote-success {
    margin-bottom: 28px;
    padding: 28px 30px;

    background: #fff;

    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 24px;

    box-shadow: 0 20px 50px rgba(17, 24, 39, 0.08);
}

.quote-success h2 {
    margin: 0 0 8px;

    color: var(--primary-dark);
    font-size: 28px;
    letter-spacing: -0.04em;
}

.quote-success p {
    margin: 0;

    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

/* Process box */
.quote-process {
    position: sticky;
    top: 110px;
    padding: 42px 38px;
    background: #fff;
    height: fit-content;
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-radius: 34px;
    min-height: unset;
    box-shadow:
        0 24px 70px rgba(17, 24, 39, 0.10),
        0 4px 12px rgba(17, 24, 39, 0.04);
}

.quote-process h2 {
    margin-bottom: 42px;

    color: var(--primary-dark);
    font-size: 30px;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.process-steps {
    display: grid;
    gap: 26px;
}

.process-step {
    position: relative;

    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 16px;
}

.process-step:not(:last-child)::after {
    content: "";

    position: absolute;
    left: 20px;
    top: 48px;

    width: 2px;
    height: calc(100% + 2px);

    background: rgba(80, 70, 255, 0.18);
}

.process-step span {
    position: relative;
    z-index: 1;

    display: grid;
    place-items: center;

    width: 42px;
    height: 42px;

    background: var(--primary);
    border-radius: 50%;

    color: #fff;
    font-size: 14px;
    font-weight: 900;

    box-shadow: 0 10px 24px rgba(80, 70, 255, 0.25);
}

.process-step h3 {
    margin: 0 0 6px;

    color: var(--primary-dark);
    font-size: 16px;
    font-weight: 900;
}

.process-step p {
    margin: 0;

    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Tablet */
@media (max-width: 1050px) {

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

    .quote-process {
        position: static;
        order: -1;
    }
}

@media (max-width: 900px) {

    .quote-form {
        padding: 38px 28px;
    }

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

/* Mobile */
@media (max-width: 640px) {

    .quote-hero {
        padding: 130px 0 60px;
    }

    .quote-form-section {
        padding: 60px 0 90px;
    }

    .quote-form {
        padding: 28px 18px;
        border-radius: 26px;
    }

    .quote-process {
        padding: 28px 20px;
        border-radius: 26px;
    }

    .quote-process h2 {
        font-size: 26px;
    }

    .option-grid {
        display: grid;
        grid-template-columns: 1fr;
    }

    .option-grid label {
        width: 100%;
        line-height: 1.25;
    }
}

.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-slider {
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.hero-slide {
    display: none;
}

.hero-slide.active {
    display: block;
    animation: slideInFromRight 0.55s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.hero-slide.leaving {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    animation: slideOutToLeft 0.55s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

@keyframes slideInFromRight {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
}

@keyframes slideOutToLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
}

.hero-slide img {
    width: 100%;
    display: block;
}

.hero-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    width: 100%;
}

.hero-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    background: var(--border);
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.hero-dot.active {
    background: var(--primary-dark);
}

/* =========================
   PROMISE INTRO TEXT
========================= */

.promise-intro {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.75;
}

/* =========================
   SEO AUDIT SECTION
========================= */

.seo-audit-section {
    padding: 120px 0;
    background: var(--surface);
}

.seo-audit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.seo-audit-content h2 {
    margin: 0 0 24px;
    color: var(--primary-dark);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.02;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.seo-audit-content h2 span {
    display: block;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-dark);
}

.seo-audit-content p {
    margin: 0 0 28px;
    color: var(--text-light);
    font-size: 17px;
    line-height: 1.75;
}

.seo-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: grid;
    gap: 12px;
}

.seo-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    font-size: 16px;
    font-weight: 600;
}

.seo-checklist li svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    stroke: var(--primary-dark);
    stroke-width: 2.5;
}

/* Score widget */
.seo-score-widget {
    background: #fff;
    border-radius: 28px;
    padding: 44px 40px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--border);
}

.seo-score-top {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.seo-score-circle {
    position: relative;
    width: 160px;
    height: 160px;
}

.seo-ring {
    width: 160px;
    height: 160px;
    transform: rotate(-90deg);
}

.seo-ring-bg {
    fill: none;
    stroke: var(--primary-soft);
    stroke-width: 10;
}

.seo-ring-fill {
    fill: none;
    stroke: var(--primary-dark);
    stroke-width: 10;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.2s ease;
}

.seo-score-number {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.seo-num {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.06em;
    color: var(--primary-dark);
}

.seo-denom {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-light);
    margin-top: 2px;
}

/* Progress bars */
.seo-bars {
    display: grid;
    gap: 18px;
}

.seo-bar-item {
    display: grid;
    gap: 8px;
}

.seo-bar-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.seo-bar-label span:last-child {
    color: var(--primary-dark);
    font-size: 13px;
}

.seo-bar-track {
    height: 8px;
    background: var(--primary-soft);
    border-radius: 999px;
    overflow: hidden;
}

.seo-bar-fill {
    height: 100%;
    background: var(--primary-dark);
    border-radius: 999px;
}

@media (max-width: 900px) {
    .seo-audit-section {
        padding: 80px 0;
    }

    .seo-audit-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .seo-score-widget {
        padding: 34px 28px;
    }
}

/* =========================
   SEO PROCESS SECTION
========================= */

.seo-process-section {
    padding: 120px 0;
    background: var(--bg);
}

.seo-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}

/* Connecting dashed line between cards */
.seo-process-grid::before {
    content: "";
    position: absolute;
    top: 66px;
    left: calc(16.66% + 14px);
    right: calc(16.66% + 14px);
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--primary) 0px,
        var(--primary) 8px,
        transparent 8px,
        transparent 18px
    );
    z-index: 0;
    pointer-events: none;
}

.seo-process-card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 28px 36px;

    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.05);

    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.seo-process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(127, 178, 255, 0.18);
    border-color: var(--primary);
}

.seo-process-number {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--primary-dark);
    color: #fff;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 24px;
    flex: 0 0 auto;
    box-shadow: 0 8px 24px rgba(93, 149, 234, 0.4);
}

.seo-process-card h3 {
    margin: 0 0 10px;
    color: var(--primary-dark);
    font-size: 19px;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.seo-process-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .seo-process-section {
        padding: 80px 0;
    }

    .seo-process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .seo-process-grid::before {
        display: none;
    }
}