/* ── Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.quick-call-line {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 10px;
    margin-top: 0px;
    margin-bottom: 10px;
    padding: 10px 16px;
    border: 1px solid rgba(27, 108, 242, 0.16);
    border-radius: 10px;
    background: #f8fbff;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    flex-wrap: wrap;
}

.quick-call-line span {
    color: var(--text-light);
}

.quick-call-line a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand);
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.quick-call-line a::before {
    content: "☎";
    font-size: 14px;
    line-height: 1;
}

.quick-call-line a:hover {
    color: var(--brand-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 480px) {
    .quick-call-line {
        flex-direction: column;
        gap: 4px;
        padding: 14px;
        font-size: 13px;
    }

    .quick-call-line a {
        font-size: 15px;
    }
}

:root {
    --brand: #1b6cf2;
    --brand-dark: #1453bf;
    --brand-light: #e8f0fe;
    --brand-glow: #4d94ff;
    --accent: #0dbf6e;
    --accent-light: #e6f9f0;
    --dark: #0f172a;
    --text: #334155;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --bg: #ffffff;
    --bg-off: #f8fafc;
    --bg-warm: #fafbff;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.1);
    --shadow-xl: 0 16px 48px rgba(15, 23, 42, 0.12);
    --font-display: "Plus Jakarta Sans", sans-serif;
    --font-body: "DM Sans", sans-serif;
    --max-w: 1200px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: var(--brand);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--brand-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--dark);
    line-height: 1.25;
    font-weight: 700;
}

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    display: block;
}

/* ── Navbar ── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
}

.header-container,
.navbar-inner {
    width: min(1684px, calc(100% - 48px));
    margin: 0 auto;
}

.top-strip {
    height: 58px;
    background: #000;
    color: #fff;
    font-family: var(--font-display);
}

.top-strip-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.top-announcement,
.top-msg,
.top-contact,
.top-contact a,
.top-link,
.top-phone {
    display: flex;
    align-items: center;
}

.top-announcement {
    gap: 10px;
    min-width: 0;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    height: 24px;
    padding: 0 10px;
    border-radius: 2px;
    background: #54f0cd;
    color: #000;
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
}

.top-msg {
    gap: 12px;
    min-width: 0;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
}

.top-title {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-link {
    gap: 12px;
    color: #54f0cd;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
}

.top-link:hover {
    color: #7ff7dd;
}

.top-contact {
    gap: 18px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
}

.top-contact a {
    gap: 6px;
    color: #fff;
}

.top-contact a:hover {
    color: #54f0cd;
}

.top-strip svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
}

.top-phone {
    gap: 7px;
}

.phone-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 4px 1px;

    color: #fff;
}

.navbar {
    position: relative;
    background: #fff;
    border-bottom: 1px solid #dfe8f4;
    transition: box-shadow var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.navbar-inner {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 38px;
}

.navbar .navbar-inner {
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo img {
    width: 150px;
    max-width: 150px;
    height: auto;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--brand);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    gap: 45px;
    margin-left: 60px;
    list-style: none;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    color: #171d2b;
    white-space: nowrap;
    transition: color var(--transition);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links a:hover {
    color: var(--brand);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 237px;
    height: 52px;
    padding: 0 30px;
    border-radius: 11px;
    background: #000;
    color: #fff;
    font-family: var(--font-display);
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
    transition:
        background var(--transition),
        transform var(--transition);
}

.header-cta:hover {
    color: #fff;
    background: #111;
    transform: translateY(-1px);
}

.nav-links .header-cta,
.nav-links .header-cta:hover {
    color: #fff;
    font-size: 16px;
}

.navbar .btn-primary {
    flex: 0 0 auto;
    font-size: 16px;
    white-space: nowrap;
}

.nav-mobile-cta {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14.5px;
    padding: 11px 24px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 2px 8px rgba(27, 108, 242, 0.25);
}

.btn-primary:hover {
    background: var(--brand-dark);
    color: #fff;
    box-shadow: 0 4px 16px rgba(27, 108, 242, 0.35);
    transform: translateY(-1px);
}

section[id] {
    scroll-margin-top: 150px;
}

.btn-outline {
    background: transparent;
    color: var(--brand);
    border: 1.5px solid var(--brand);
}

.btn-outline:hover {
    background: var(--brand-light);
    color: var(--brand-dark);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    padding: 8px 16px;
}

.btn-ghost:hover {
    color: var(--brand);
    background: var(--brand-light);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 15.5px;
    border-radius: 12px;
}

.btn-dark {
    background: var(--dark);
    color: #fff;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.2);
}

.btn-dark:hover {
    background: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.25);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    position: relative;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    position: absolute;
    left: 7px;
    transition: all 0.3s;
}

.hamburger span:nth-child(1) {
    top: 11px;
}

.hamburger span:nth-child(2) {
    top: 17px;
}

.hamburger span:nth-child(3) {
    top: 23px;
}

/* ── Hero ── */
.hero {
    padding: 188px 0 120px;
    overflow: hidden;
    background: linear-gradient(170deg,
            #fafbff 0%,
            #f0f5ff 40%,
            #ffffff 100%);
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
            rgba(27, 108, 242, 0.06) 0%,
            transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle,
            rgba(13, 191, 110, 0.04) 0%,
            transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 13.5px;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    font-family: var(--font-display);
}

.hero-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--brand), var(--brand-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 17px;
    color: var(--text-light);
    line-height: 26px;
    margin-bottom: 28px;
    max-width: 520px;
}

.hero-points {
    list-style: none;
    margin-bottom: 32px;
}

.hero-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text);
    margin-bottom: 10px;
}

.hero-points li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--accent);
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 34px;
    padding: 8px 0;
    max-width: 560px;
}

.founder-avatars {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-left: 2px;
}

.founder-avatar {
    width: 52px;
    height: 52px;
    margin-left: -10px;
    border: 3px solid #fff;
    border-radius: 14px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent),
        var(--avatar-bg);
    box-shadow:
        0 8px 18px rgba(15, 23, 42, 0.16),
        0 0 0 1px rgba(15, 23, 42, 0.04);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 60px;
    height: 60px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;

    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
}

/* Mobile */
@media (max-width: 576px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px;
    }

    .whatsapp-float img {
        width: 100%;
        height: 1005;
    }
}

.founder-avatar:first-child {
    margin-left: 0;
}

.hero-proof-content {
    min-width: 0;
}

.hero-rating-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.hero-stars {
    color: #ffb400;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
}

.hero-rating {
    color: var(--dark);
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.1;
}

.hero-reviews {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.hero-founder-count {
    color: var(--dark);
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
}

/* ── Estimate Card ── */
.estimate-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.estimate-card h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.estimate-card .subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.service-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 28px;
    background: var(--bg-off);
    border-radius: 10px;
    padding: 4px;
}

.service-tab {
    flex: 1;
    padding: 9px 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-light);
    transition: all var(--transition);
    border: none;
    background: none;
    font-family: var(--font-display);
}

.service-tab.active {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 2px 8px rgba(27, 108, 242, 0.25);
}

.service-tab:hover:not(.active) {
    color: var(--text);
    background: var(--border-light);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.service-item {
    padding: 12px;
    border-radius: 10px;
    transition: background var(--transition);
}

.service-item:hover {
    background: var(--bg-off);
}

.service-item h4 {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.service-item .price {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--brand);
}

.service-item .desc {
    font-size: 12px;
    color: var(--text-lighter);
    margin-top: 2px;
}

.estimate-divider {
    height: 1px;
    background: var(--border);
    margin: 4px 0 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--bg);
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(27, 108, 242, 0.1);
}

.form-group textarea {
    min-height: 94px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-lighter);
}

.estimate-btn {
    width: 100%;
    padding: 14px;
    margin-top: 8px;
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.estimate-btn:hover {
    background: var(--brand-dark);
    box-shadow: 0 4px 16px rgba(27, 108, 242, 0.35);
    transform: translateY(-1px);
}

.estimate-link {
    text-align: center;
    margin-top: 12px;
    font-size: 13.5px;
    color: var(--text-light);
}

.estimate-link a {
    font-weight: 500;
}

/* ── Trust Bar ── */
.trust-bar {
    padding: 0 0 56px;
    border-bottom: 1px solid var(--border);

    position: relative;
}

.trust-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    align-items: center;
    gap: 0;
    margin: -68px auto 34px;
    padding: 30px 38px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow:
        0 22px 56px rgba(15, 23, 42, 0.08),
        0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.trust-panel::before,
.trust-panel::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    height: 28px;
    border: 1px solid var(--border);
    border-bottom: 0;
    border-radius: 22px 22px 0 0;
    pointer-events: none;
}

.trust-panel::before {
    top: -18px;
    opacity: 0.62;
}

.trust-panel::after {
    top: -10px;
    opacity: 0.42;
}

.trust-panel-title {
    color: var(--dark);
    font-family: var(--font-display);
    font-size: 23px;
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: 0;
    padding-right: 30px;
}

.trust-metric {
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 28px;
    border-left: 1px solid rgba(148, 163, 184, 0.48);
}

.trust-value {
    color: #080b12;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 14px;
}

.trust-caption {
    color: #8d8f98;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.2;
}

.trust-cloud-heading {
    text-align: center;
    padding: 42px 0 8px;
}

.trust-cloud-title {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.trust-cloud-subtitle {
    margin: 10px auto 0;
    max-width: 560px;
    color: #64748b;
    font-size: 16px;
}

.logo-cloud {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.92);
    max-width: 100vw;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 64px;
    min-width: max-content;
    padding: 0 48px;
    animation: logo-scroll 28s linear infinite;
    overflow: hidden;
}

.logo-cloud:hover .logo-track {
    animation-play-state: paused;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 64px;
}

.client-logo {
    display: block;
    max-height: 54px;
    width: auto;
    opacity: 0.55;
    filter: grayscale(1);
    transition:
        opacity 0.25s ease,
        filter 0.25s ease,
        transform 0.25s ease;
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0);
    transform: translateY(-2px);
}

.logo-track img:last-child {
    margin-right: 0;
}

.client-logo.small {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.05;
}

.client-logo .logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 4px solid currentColor;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 900;
}

.client-logo .logo-mark.hex {
    border-radius: 50%;
}

.client-logo .logo-mark.flag {
    border: 0;
    border-radius: 0;
    font-size: 32px;
}

.client-logo .logo-mark.plus {
    border-radius: 4px;
    font-size: 24px;
}

@keyframes logo-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ── Section Styles ── */
.partner-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-off) 100%);
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    max-width: 980px;
    margin: 0 auto;
}

.partner-card {
    min-height: 126px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.partner-card:hover {
    transform: translateY(-3px);
    border-color: rgba(27, 108, 242, 0.28);
    box-shadow: var(--shadow-md);
}

.partner-card img {
    width: 100%;
    max-width: 174px;
    max-height: 72px;
    object-fit: contain;
}

.partner-card.is-wide img {
    max-width: 210px;
}

.partner-card.is-badge img {
    max-width: 86px;
    max-height: 86px;
}

.section {
    padding: 80px 0;
}

.section-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 14px;
    text-align: center;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    text-align: center;
    max-width: 720px;
    margin: 0px auto 14px;
    margin-bottom: 14px;
    letter-spacing: -0.015em;
}

.section-desc {
    font-size: 17px;
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

/* ── How It Works Steps ── */
.how-section {
    background: var(--bg);
}

.steps-timeline {
    max-width: 780px;
    margin: 0 auto;
    position: relative;
}

.steps-timeline::before {
    content: "";
    position: absolute;
    left: 23px;
    top: 48px;
    bottom: 48px;
    width: 2px;
    background: linear-gradient(to bottom,
            var(--brand-light),
            var(--brand),
            var(--brand-light));
}

.step-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(27, 108, 242, 0.25);
}

.step-content {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 32px;
    flex: 1;
    transition: box-shadow var(--transition);
}

.step-content:hover {
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 19px;
    margin-bottom: 10px;
}

.step-content h3 svg {
    color: var(--brand);
}

.step-content p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.step-checks {
    list-style: none;
    margin-top: 14px;
}

.step-checks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: var(--text);
    margin-bottom: 8px;
}

.step-checks li svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* ── What We Build Cards ── */
.build-section {
    background: var(--bg-off);
}

.build-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.build-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.build-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--brand-glow));
    opacity: 0;
    transition: opacity var(--transition);
}

.build-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: transparent;
}

.build-card:hover::before {
    opacity: 1;
}

.build-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--brand);
}

.build-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.build-card p {
    font-size: 14.5px;
    color: var(--text-light);
    line-height: 1.65;
}

/* ── AI Features ── */
.features-section {
    background: var(--bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all var(--transition);
    background: var(--bg);
}

.feature-item:hover {
    border-color: var(--brand-light);
    background: var(--bg-warm);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--brand);
}

.feature-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ── Comparison Cards (Who Is This For) ── */
.compare-section {
    background: var(--bg-off);
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}

.compare-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    position: relative;
}

.compare-card.highlighted {
    border-color: var(--brand);
    box-shadow:
        0 0 0 3px rgba(27, 108, 242, 0.08),
        var(--shadow-md);
}

.compare-badge {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 12px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 16px;
}

.compare-card.highlighted .compare-badge {
    background: var(--brand-light);
    color: var(--brand);
}

.compare-card:not(.highlighted) .compare-badge {
    background: var(--accent-light);
    color: var(--accent);
}

.compare-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.compare-card>p {
    font-size: 14.5px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.65;
}

.compare-list {
    list-style: none;
}

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.5;
}

.compare-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.compare-card.highlighted .compare-list li svg {
    color: var(--brand);
}

.compare-card:not(.highlighted) .compare-list li svg {
    color: var(--accent);
}

.compare-cta {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* ── Contact Form Section ── */
.form-section {
    background: var(--bg);
}

.form-wrapper {
    max-width: 780px;
    margin: 0 auto;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.form-step-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-lighter);
    margin-bottom: 8px;
}

.form-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group textarea {
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--bg);
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
    outline: none;
    resize: vertical;
    min-height: 120px;
}

.form-group textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(27, 108, 242, 0.1);
}

.form-group textarea::placeholder {
    color: var(--text-lighter);
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}

.checkbox-tag {
    padding: 7px 16px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition);
    user-select: none;
    display: inline-block;
}

.checkbox-tag:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.checkbox-tag.active {
    background: var(--brand-light);
    border-color: var(--brand);
    color: var(--brand);
    font-weight: 600;
}

.form-submit-btn {
    width: 100%;
    padding: 16px;
    margin-top: 24px;
    background: var(--dark);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit-btn:hover {
    background: #1e293b;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.2);
}

.form-note {
    text-align: center;
    margin-top: 14px;
    font-size: 13px;
    color: var(--text-lighter);
}

/* ── FAQ ── */
.faq-section {
    background: var(--bg-off);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--brand);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    color: var(--text-lighter);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.35s ease,
        padding 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 0 22px;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ── CTA Banner ── */
.cta-banner {
    padding: 80px 0;
    background: var(--bg);
}

.cta-inner {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: var(--radius-xl);
    padding: 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle,
            rgba(27, 108, 242, 0.15) 0%,
            transparent 70%);
}

.cta-inner::after {
    content: "";
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle,
            rgba(13, 191, 110, 0.1) 0%,
            transparent 70%);
}

.cta-inner h2 {
    font-size: 34px;
    color: #fff;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.cta-inner p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-white {
    background: #fff;
    color: var(--dark);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.btn-white:hover {
    background: #f8fafc;
    color: var(--dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-ghost-white {
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ── Footer ── */
.footer {
    padding: 48px 0 10px;
    border-top: 1px solid var(--border-light);
    background: linear-gradient(170deg,
            #fafbff 0%,
            #f0f5ff 40%,
            #ffffff 100%);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}

.footer-tagline {
    font-size: 13.5px;
    color: var(--text-lighter);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-right a {
    font-size: 13.5px;
    color: var(--text-light);
    font-weight: 500;
}

.footer-right .btn-primary {
    color: #fff;
}

/* ── Why Choose Us ── */
.why-section {
    background: var(--bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    padding: 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
    background: var(--bg);
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--brand-light);
}

.why-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.why-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--brand-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--brand);
}

/* ── Tech Stack ── */
.tech-section {
    background: var(--bg-off);
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.tech-tag {
    padding: 10px 20px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    background: var(--bg);
    transition: all var(--transition);
}

.tech-tag:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-light);
}

/* ── Footer Conversion Details ── */
.footer-details {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.footer-card {
    padding: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.footer-card h4 {
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-card p,
.footer-card a,
.footer-card li {
    font-size: 13.5px;
    color: var(--text-light);
    line-height: 1.65;
}

.footer-card ul {
    list-style: none;
    display: grid;
    gap: 7px;
}

.footer-map {
    width: 100%;
    height: 138px;
    margin-top: 12px;
    border: 0;
    border-radius: 10px;
    overflow: hidden;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    color: var(--dark);
    font-size: 12.5px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .footer-details {
        grid-template-columns: 1fr;
    }
}

/* ── Animations ── */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.6s,
        transform 0.6s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Added landing page content sections ── */
.hero-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 30px;
    max-width: 560px;
}

.hero-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 10px 14px;
    border: 1px solid rgba(27, 108, 242, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--dark);
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 800;
    box-shadow: var(--shadow-sm);
}

.service-link {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    color: var(--brand);
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 700;
}

.ai-section-cta,
.pricing-note,
.form-reassurance {
    max-width: 780px;
    margin: 34px auto 0;
    padding: 22px 26px;
    border: 1px solid rgba(27, 108, 242, 0.14);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
    text-align: center;
    color: var(--text);
}

.ai-section-cta a,
.pricing-note a,
.form-reassurance a {
    font-family: var(--font-display);
    font-weight: 800;
}

.pricing-section {
    background: var(--bg-off);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    overflow: hidden;
    padding: 34px 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(27, 108, 242, 0.24);
    box-shadow: var(--shadow-lg);
}

.pricing-label {
    color: var(--brand);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.pricing-price {
    color: var(--dark);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: #080b12;
    line-height: 1;
    margin-bottom: 14px;
}

.pricing-card p {
    color: var(--text-light);
    font-size: 14.5px;
    line-height: 1.65;
}

.tech-copy {
    max-width: 920px;
    margin: -26px auto 34px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.75;
    text-align: center;
}

.tech-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 980px;
    margin: 0 auto;
}

.tech-category-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.tech-category-card h3 {
    font-size: 17px;
    margin-bottom: 14px;
}

.tech-category-card .tech-grid {
    justify-content: flex-start;
    margin: 0;
}

.micro-list {
    display: grid;
    gap: 8px;
    margin: 18px 0 0;
    color: var(--text-light);
    font-size: 13.5px;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.case-study-section .section-desc {
    max-width: 680px;
}

@media (max-width: 768px) {

    .hero-trust-pills,
    .pricing-grid,
    .tech-category-grid,
    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .top-msg {
        font-size: 15px;
    }

    .top-contact {
        font-size: 14px;
    }

    .nav-links {
        gap: 28px;
        margin-left: 0;
    }

    .nav-links a {
        font-size: 16px;
    }

    .logo img {
        width: 210px;
    }

    .header-cta {
        min-width: auto;
        height: 48px;
        padding: 0 22px;
        font-size: 16px;
    }

    .nav-links .header-cta {
        font-size: 16px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .build-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .trust-panel {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 0;
    }

    .trust-panel-title {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .trust-metric:nth-child(2n) {
        border-left: 0;
        padding-left: 0;
    }
}

.case-study-view-all {
    display: flex;
    justify-content: center;
    margin-top: 42px;
}

.case-study-view-all .btn {
    min-width: 220px;
}

.case-study-view-all svg {
    transition: transform var(--transition);
}

.case-study-view-all .btn:hover svg {
    transform: translateX(4px);
}

@media (max-width: 480px) {
    .case-study-view-all {
        margin-top: 32px;
    }

    .case-study-view-all .btn {
        width: 100%;
    }
}

@media (max-width: 980px) {

    .header-container,
    .navbar-inner {
        width: calc(100% - 32px);
    }

    .top-strip {
        height: 48px;
    }

    .top-strip-inner {
        justify-content: center;
    }

    .badge-new {
        height: 22px;
        padding: 0 8px;
        font-size: 14px;
    }

    .top-msg {
        flex: 1 1 auto;
        gap: 8px;
        font-size: 13px;
        overflow: hidden;
    }

    .top-link {
        flex: 0 0 auto;
        gap: 7px;
    }

    .top-strip svg {
        width: 16px;
        height: 16px;
    }

    .navbar-inner {
        height: 72px;
        gap: 16px;
    }

    .logo img {
        width: 190px;
    }

    .nav-links {
        display: none;
    }

    .nav-mobile-cta {
        display: none;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-left: auto;
    }

    .header-actions .btn-primary {
        padding: 10px 18px;
        font-size: 14px;
        min-width: auto;
        white-space: nowrap;
    }

    .header-actions .btn-demo-mobile {
        display: none;
    }

    @media (max-width: 1024px) {
        .header-actions .btn-demo-mobile {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 14px;
            font-size: 14px;
            color: #fff;
            background: var(--success, #28a745);
            border-radius: 6px;
            text-decoration: none;
        }
    }

    .hamburger {
        display: block;
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        border: 1px solid var(--border);
        border-radius: 8px;
        background: #fff;
    }

    .hero {
        padding-top: 160px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .header-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .header-actions .btn-primary {
        padding: 10px 16px;
        font-size: 14px;
        min-width: auto;
        white-space: nowrap;
    }

    .hero {
        padding: 160px 0 60px;
        overflow: hidden;
    }

    .hero h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 22px;
        line-height: 30px;
        max-width: 90%;
        margin-bottom: 20px;
        margin: 0px auto 20px;
    }

    .build-grid,
    .features-grid,
    .compare-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .partner-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-row,
    .form-row-3 {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 28px;
    }

    .cta-inner {
        padding: 40px 28px;
    }

    .cta-inner h2 {
        font-size: 26px;
    }

    .trust-bar {
        padding-bottom: 44px;
    }

    .trust-panel {
        grid-template-columns: 1fr 1fr;
        margin-top: -20px;
        padding: 26px;
    }

    .trust-panel-title {
        font-size: 21px;
    }

    .trust-metric {
        min-height: auto;
        border-left: 0;
        border-top: 1px solid rgba(148, 163, 184, 0.34);
        padding: 18px 0 0;
    }

    .trust-value {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .trust-caption {
        font-size: 12px;
    }

    .logo-track {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 36px;
        min-width: max-content;
        padding: 0 24px;
        animation-duration: 34s;
    }

    .client-logo {
        max-height: 42px;
    }

    .partner-card {
        min-height: 112px;
        padding: 20px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-social-proof {
        align-items: center;
        gap: 14px;
        margin-top: 28px;
    }

    .hero-rating-row {
        gap: 8px;
    }

    .hero-founder-count {
        font-size: 12px;
    }

    .hero-reviews {
        font-size: 12px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .estimate-card {
        padding: 24px;
    }

    .trust-cloud-title {
        font-size: 22px;
        line-height: 30px;
        max-width: 90%;
        margin-bottom: 20px;
        margin: 0px auto 20px;
    }

    .logo-cloud {
        width: 100%;
        margin-left: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .section-desc {
        margin-bottom: 36px;
        font-size: 16px;
        line-height: 24px;
    }

    .logo-track {
        padding: 0 24px;
        gap: 48px;
    }
}

/* ── Pricing Section ── */
.pricing-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-off) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -160px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle,
            rgba(27, 108, 242, 0.08) 0%,
            transparent 70%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 34px 28px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.pricing-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-glow));
    opacity: 0;
    transition: opacity var(--transition);
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(27, 108, 242, 0.28);
    box-shadow: var(--shadow-lg);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-label {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 12px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: var(--brand-light);
    color: var(--brand);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pricing-card h3 {
    min-height: 56px;
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--dark);
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    color: var(--brand);
    margin-bottom: 18px;
}

.pricing-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
}

.pricing-note {
    max-width: 820px;
    margin: 36px auto 0;
    padding: 20px 24px;
    border: 1px solid rgba(27, 108, 242, 0.16);
    border-radius: var(--radius);
    background: #fff;
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.7;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card h3 {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 28px 24px;
    }

    .pricing-price {
        font-size: 26px;
    }

    .pricing-note {
        margin-top: 28px;
        padding: 18px;
        font-size: 14.5px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    .top-strip {
        height: 46px;
    }

    .top-announcement {
        width: 100%;
        display: none;
    }

    .top-msg {
        font-size: 12.5px;
        gap: 8px;
    }

    .badge-new {
        height: 22px;
        padding: 0 7px;
        font-size: 13px;
    }

    .top-link {
        display: none;
    }

    .navbar-inner {
        height: 68px;
        gap: 10px;
    }

    .logo img {
        width: 142px;
        max-width: 142px;
    }

    .header-actions {
        gap: 8px;
    }

    .header-actions>.btn-primary {
        display: block;
        font-size: 12px;
        padding: 6px 12px;
    }

    .hamburger {
        flex: 0 0 40px;
        width: 40px;
        height: 40px;
    }

    .hamburger span {
        left: 8px;
    }

    .hero {
        padding: 140px 0 52px;
    }

    .hero-badge {
        align-items: flex-start;
        padding: 10px 14px;
        border-radius: 22px;
        font-size: 13px;
        line-height: 1.45;
    }

    .hero-badge::before {
        flex: 0 0 auto;
        margin-top: 6px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 18px;
    }

    .hero-desc {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .hero-points li {
        font-size: 14.5px;
    }

    .hero-cta {
        align-items: stretch;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-cta .btn-ghost {
        width: auto;
        align-self: center;
        padding: 8px 10px;
    }

    .hero-social-proof {}

    .founder-avatar {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .estimate-card,
    .build-card,
    .feature-item,
    .compare-card,
    .why-card {
        padding: 24px;
        border-radius: 16px;
    }

    .section {
        padding: 60px 0;
    }

    .section-desc {
        margin-bottom: 36px;
        font-size: 16px;
    }

    .steps-timeline::before {
        left: 19px;
        top: 40px;
        bottom: 40px;
    }

    .step-item {
        gap: 14px;
        margin-bottom: 28px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .step-content {
        padding: 22px 20px;
    }

    .step-content h3 {
        align-items: flex-start;
        font-size: 17px;
    }

    .feature-item {
        gap: 14px;
    }

    .partner-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partner-card img {
        max-width: 150px;
        max-height: 64px;
    }

    .partner-card.is-badge img {
        max-width: 76px;
        max-height: 76px;
    }

    .form-wrapper {
        padding: 24px;
        border-radius: 18px;
    }

    .checkbox-tag {
        padding: 7px 12px;
        font-size: 12.5px;
    }

    .cta-inner {
        padding: 36px 22px;
        border-radius: 20px;
    }

    .footer-inner,
    .footer-left,
    .footer-right {
        align-items: center;
        flex-direction: column;
    }

    .service-tabs {
        flex-direction: column;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 16px;
    }

    .logo img {
        width: 136px;
        max-width: 136px;
    }

    .top-msg {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 29px;
    }

    .partner-grid {
        grid-template-columns: 1fr;
    }

    .hero-badge {
        font-size: 10px;
    }
}

@media (max-width: 980px) {
    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px 24px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        gap: 16px;
        z-index: 999;
    }

    .nav-links.mobile-open li {
        width: 100%;
    }

    .nav-links.mobile-open a {
        width: 100%;
    }

    .nav-links.mobile-open .nav-mobile-cta {
        display: block;
    }

    .nav-links.mobile-open .nav-mobile-cta a {
        justify-content: center;
        min-height: 44px;
        padding: 12px 16px;
        color: #fff;
    }

    .nav-links.mobile-open .nav-mobile-cta a:hover {
        color: #fff;
    }

    .logo-cloud {
        width: 100%;
        margin-left: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .logo-track {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .nav-links.mobile-open {
        top: 68px;
        padding: 16px 18px 18px;
        gap: 4px;
    }

    .nav-links.mobile-open a {
        min-height: 44px;
        padding: 12px 0;
    }

    .trust-cloud-title {
        font-size: 24px;
        line-height: 30px;
    }
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12) !important;
}

.form-group input.error:focus,
.form-group textarea.error:focus,
.form-group select.error:focus {
    border-color: #ef4444 !important;
    outline: none;
}

.error-message {
    color: #ef4444;
    font-size: 12px;
    margin-top: 6px;
    font-weight: 500;
}

/* ── Case Study Grid ── */
.case-study-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-off) 100%);
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.case-study-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #fff;
    border: 1px solid #dbe5f2;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.case-study-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    z-index: 2;
}

.case-study-card:hover {
    transform: translateY(-6px);
    border-color: rgba(27, 108, 242, 0.32);
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.13);
}

.case-study-img {
    width: 100%;
    height: 190px;

    position: relative;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
    background:
        radial-gradient(circle at top left,
            rgba(13, 191, 110, 0.25),
            transparent 32%),
        linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}

.case-study-type {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 9px;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-light);
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.case-study-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 7px;
    box-shadow: 0 18px 34px rgba(2, 6, 23, 0.28);
    transition: transform 0.45s ease;
}

.case-study-card:hover .case-study-img img {
    transform: scale(1.035);
}

.case-study-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.case-study-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.case-study-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 6px 11px;
    border-radius: 6px;
    background: var(--brand-light);
    color: var(--brand);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.case-study-content h3 {
    min-height: 50px;
    font-size: 19px;
    margin-bottom: 11px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-study-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.58;
}

.case-study-summary {
    min-height: 66px;
    margin-bottom: 18px;
}

.case-study-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 14px 0;
    margin-bottom: 18px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.case-study-meta div {
    min-width: 0;
}

.case-study-meta span,
.case-study-result span {
    display: block;
    margin-bottom: 3px;
    font-size: 11px;
    color: var(--text-light);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.case-study-meta strong {
    display: block;
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.case-study-result {
    padding: 14px;
    margin-bottom: 16px;
    border: 1px solid rgba(13, 191, 110, 0.22);
    border-radius: 8px;
    background: linear-gradient(180deg,
            rgba(13, 191, 110, 0.08),
            rgba(13, 191, 110, 0.03));
}

.case-study-result p {
    margin: 0;
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.case-study-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.case-study-services span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 5px 9px;
    border-radius: 6px;
    background: var(--bg-off);
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.case-study-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 44px;
    margin-top: auto;
    border: 1px solid rgba(27, 108, 242, 0.24);
    border-radius: 8px;
    background: var(--bg);
    color: var(--brand);
    font-family: var(--font-display);
    font-size: 14.5px;
    font-weight: 700;
}

.case-study-link:hover {
    border-color: var(--brand);
    background: var(--brand);
    color: #fff;
}

.case-study-link:focus-visible {
    outline: 3px solid rgba(27, 108, 242, 0.2);
    outline-offset: 3px;
}

.case-study-link svg {
    transition: transform var(--transition);
}

.case-study-link:hover svg {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .case-study-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .case-study-grid {
        grid-template-columns: 1fr;
    }

    .case-study-img {
        height: 210px;
    }

    .case-study-content {
        padding: 24px;
    }

    .case-study-content h3,
    .case-study-summary {
        min-height: 0;
    }
}

/* ── Client Reviews ── */
.review-section {
    background: var(--bg-off);
    position: relative;
    overflow: hidden;
}

.review-section::before {
    content: "";
    position: absolute;
    top: -160px;
    right: -160px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle,
            rgba(27, 108, 242, 0.08) 0%,
            transparent 70%);
    pointer-events: none;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.review-card {
    position: relative;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 60px 30px 30px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    overflow: hidden;
}

.review-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--brand-glow));
    opacity: 0;
    transition: opacity var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.review-card:hover::before {
    opacity: 1;
}

.review-quote-icon {
    position: absolute;
    top: 18px;
    left: 24px;
    color: var(--brand-light);
    font-family: Georgia, serif;
    font-size: 76px;
    line-height: 1;
    font-weight: 700;
    pointer-events: none;
}

.review-stars {
    color: #ffb400;
    font-size: 15px;
    letter-spacing: 2px;

    line-height: 1;
    margin-bottom: 0px;
}

.review-text {
    color: var(--text);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
    transition: all 0.3s ease;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-card.active .review-text {
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
}

.review-read-more {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin-bottom: 22px;
    background: transparent;
    border: 0;
    color: var(--brand);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: color var(--transition);
}

.review-read-more:hover {
    color: var(--brand-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.review-author {
    display: flex;
    align-items: start;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--brand-light);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
}

.review-author h3 {
    font-size: 15.5px;
    line-height: 1.25;
    margin-bottom: 4px;
    color: var(--dark);
}

.review-author p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.45;
    margin-bottom: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 60px 26px 26px;
    }

    .review-text {
        -webkit-line-clamp: 3;
    }
}

@media (max-width: 480px) {
    .review-card {
        padding: 60px 24px 24px;
        border-radius: 16px;
    }

    .review-quote-icon {
        font-size: 62px;
        top: 16px;
        right: 20px;
    }

    .review-author {
        align-items: flex-start;
    }

    .review-avatar {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }
}

/* Partner Section - Clean Premium Logo Wall */
.partner-section-alt {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.partner-section-alt::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 50%;
    width: 720px;
    height: 720px;
    transform: translateX(-50%);
    background: radial-gradient(circle,
            rgba(27, 108, 242, 0.09),
            transparent 68%);
    pointer-events: none;
}

.partner-alt-header {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.partner-alt-box {
    position: relative;
    z-index: 1;
}

.partner-alt-grid {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 16px;
}

.partner-alt-card {
    position: relative;
    min-height: 100px;

    border: 1px solid #e2e8f0;
    border-radius: 20px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.055);
    overflow: hidden;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.partner-alt-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(27, 108, 242, 0.08),
            transparent 52%);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.partner-alt-card:hover {
    transform: translateY(-5px);
    border-color: rgba(27, 108, 242, 0.35);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.11);
}

.partner-alt-card:hover::before {
    opacity: 1;
}

.partner-alt-card img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100px;
    max-height: auto;
    object-fit: contain;

    opacity: 1;
    transition:
        filter 0.28s ease,
        opacity 0.28s ease,
        transform 0.28s ease;
}

.partner-alt-card.is-cert {
    background:
        linear-gradient(180deg, rgba(13, 191, 110, 0.08), #ffffff 70%),
        #ffffff;
}

.partner-alt-card.is-cert img {
    max-width: 60px;
    max-height: 60px;
    filter: none;
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .partner-alt-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .partner-alt-box {
        padding: 18px;
        border-radius: 22px;
    }

    .partner-alt-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .partner-alt-card {
        min-height: 118px;
        padding: 18px;
        border-radius: 16px;
    }

    .partner-alt-card.is-large img {
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .partner-alt-box {
        padding: 14px;
    }

    .partner-alt-grid {
        gap: 12px;
    }

    .partner-alt-card {
        min-height: 104px;
        padding: 14px;
    }

    .partner-alt-card img {
        max-width: 130px;
        max-height: 58px;
    }

    .partner-alt-card.is-cert img {
        max-width: 70px;
        max-height: 70px;
    }
}

/* Contact form update */
#contact .form-wrapper {
    max-width: 780px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #dbe3f0;
    border-radius: 18px;
    padding: 38px 48px;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

#contact .form-step-label {
    margin: 0 0 12px;
    color: #8ea0bf;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

#contact .form-section-title {
    margin: 0 0 26px;
    padding-bottom: 20px;
    border-bottom: 1px solid #dbe3f0;
    color: #061431;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
}

#contact .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

#contact .form-group {
    position: relative;
}

#contact .form-group.full {
    width: 100%;
}

#contact label {
    display: block;
    margin-bottom: 10px;
    color: #425776;
    font-size: 15px;
    font-weight: 600;
}

#contact input,
#contact select,
#contact textarea {
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--bg);
    transition:
        border-color var(--transition),
        box-shadow var(--transition);
    outline: none;
}

#contact input,
#contact select {

    padding: 10px 14px;
}

#contact textarea {
    min-height: 132px;
    resize: vertical;
    padding: 16px 18px;
}

#contact input:focus,
#contact select:focus,
#contact textarea:focus {
    border-color: #245bff;
    box-shadow: 0 0 0 4px rgba(36, 91, 255, 0.12);
}

#contact input.error,
#contact select.error,
#contact textarea.error {
    border-color: #ef4444;
}

#contact .checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 14px;
}

#contact .checkbox-tag {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    user-select: none;
    display: inline-block;
    padding: 7px 16px;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    transition: all var(--transition);
}

#contact .checkbox-tag:hover,
#contact .checkbox-tag.active {
    border-color: #245bff;
    background: rgba(36, 91, 255, 0.08);
    color: #1741c9;
}

#contact .form-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

#contact .error-message {
    margin-top: 7px;
    color: #ef4444;
    font-size: 12.5px;
    font-weight: 600;
}

#contact .form-note {
    margin: 16px 0 0;
    color: #6b7c98;
    font-size: 14px;
}

@media (max-width: 768px) {
    #contact .form-wrapper {
        padding: 28px 20px;
    }

    #contact .form-row {
        grid-template-columns: 1fr;
    }

    #contact .checkbox-tag {
        min-height: 42px;
        padding: 0 16px;
        font-size: 14px;
    }
}