@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;1,9..144,300&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background: #ffffff;
    color: #1a1f5e;
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #e4e6f0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-text {
    font-size: 15px;
    font-weight: 700;
    color: #1a1f5e;
    letter-spacing: -0.3px;
}

.logo-text span {
    font-weight: 300;
}

.logo-tag {
    display: none;
    font-size: 8px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #999;
    display: block;
}

.nav-links {
    display: none;
}

.nav-links a {
    font-size: 13px;
    color: #888;
    text-decoration: none;
    font-weight: 400;
    transition: color .2s;
}

.nav-links a:hover {
    color: #1a1f5e;
}

.nav-btn {
    font-size: 11px;
    font-weight: 600;
    color: #ffffff;
    background: #1a1f5e;
    padding: 9px 18px;
    border-radius: 100px;
    text-decoration: none;
    transition: background .2s;
}

.nav-btn:hover {
    background: #3b45c4;
}

/* ── HERO ── */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 120px 48px 80px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    display: none;
}

.hero-left {
    position: relative;
    z-index: 1;
    color: #1a1f5e;
    background: transparent;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f5f6fb;
    border: 1px solid #e4e6f0;
    border-radius: 100px;
    padding: 6px 14px 6px 8px;
    font-size: 11px;
    font-weight: 600;
    color: #1a1f5e;
    letter-spacing: 0.3px;
    margin-bottom: 32px;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3b45c4;
}

.hero-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(38px, 4.5vw, 64px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: #1a1f5e !important;
}

.hero-title em {
    font-style: italic;
    color: #3b45c4;
}

.hero-sub {
    font-size: 15px;
    font-weight: 400;
    color: #444444 !important;
    line-height: 1.8;
    max-width: 400px;
    margin-top: 22px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 36px;
}

.btn-primary {
    background: #1a1f5e;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, transform .2s;
}

.btn-primary:hover {
    background: #3b45c4;
    transform: translateY(-2px);
}

.btn-link {
    font-size: 13px;
    color: #1a1f5e;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.45;
    transition: opacity .2s;
}

.btn-link:hover {
    opacity: 1;
}

/* Hero logo */
.hero-right {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── MARQUEE ── */
.marquee {
    background: #1a1f5e;
    padding: 14px 0;
    overflow: hidden;
}

.marquee-inner {
    display: flex;
    width: max-content;
    animation: scroll 22s linear infinite;
}

.marquee-item {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    padding: 0 36px;
    display: flex;
    align-items: center;
    gap: 36px;
}

.marquee-item::after {
    content: '·';
    color: #3b45c4;
}

@keyframes scroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ── STATS ── */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 64px 48px;
    background: #ffffff;
    border-bottom: 1px solid #e4e6f0;
}

.stat {
    padding: 0 40px;
    border-right: 1px solid #e4e6f0;
}

.stat:first-child {
    padding-left: 0;
}

.stat:last-child {
    border-right: none;
}

.stat-n {
    font-family: 'Fraunces', serif;
    font-size: 50px;
    font-weight: 300;
    color: #1a1f5e;
    line-height: 1;
}

.stat-n em {
    font-style: normal;
    font-size: 26px;
    color: #3b45c4;
}

.stat-l {
    font-size: 12px;
    color: #666666;
    margin-top: 6px;
    font-weight: 500;
}

/* ── SECTION ── */
.section {
    padding: 100px 48px;
}

.section.bg-off {
    background: #f5f6fb;
}

.section.bg-navy {
    background: #1a1f5e;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 700;
    color: #3b45c4;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.tag::before {
    content: '';
    width: 18px;
    height: 2px;
    background: #3b45c4;
    border-radius: 2px;
}

.tag.light {
    color: rgba(255, 255, 255, 0.4);
}

.tag.light::before {
    background: #3b45c4;
}

.s-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(34px, 3.5vw, 52px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #1a1f5e;
}

.s-title em {
    font-style: italic;
    color: #3b45c4;
}

.s-title.light {
    color: #ffffff;
}

.s-title.light em {
    color: rgba(255, 255, 255, 0.4);
}

/* ── SERVICES ── */
.svc-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 60px;
}

.svc-head p {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
    font-weight: 400;
}

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

.svc {
    background: #f5f6fb;
    padding: 44px 36px;
    transition: background .3s;
    cursor: default;
    position: relative;
}

.svc::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b45c4;
    transition: width .4s;
}

.svc:hover::after {
    width: 100%;
}

.svc:hover {
    background: #1a1f5e;
}

.svc:hover .svc-num {
    color: rgba(255, 255, 255, 0.06);
}

.svc:hover .svc-name {
    color: #ffffff;
}

.svc:hover .svc-desc {
    color: rgba(255, 255, 255, 0.5);
}

.svc-num {
    font-family: 'Fraunces', serif;
    font-size: 52px;
    font-weight: 300;
    color: #e4e6f0;
    line-height: 1;
    margin-bottom: 18px;
    transition: color .3s;
}

.svc-name {
    font-size: 17px;
    font-weight: 700;
    color: #1a1f5e;
    margin-bottom: 10px;
    transition: color .3s;
}

.svc-desc {
    font-size: 13px;
    color: #666666;
    line-height: 1.7;
    font-weight: 400;
    transition: color .3s;
}

/* ── PROCESS ── */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 60px;
}

.step {
    padding: 40px 36px 0 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 8px;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 31, 94, 0.75) 0%, rgba(26, 31, 94, 0.3) 100%);
    border-radius: 8px;
}

.step-1 {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="35" fill="none" stroke="%233b45c4" stroke-width="2"/><circle cx="50" cy="50" r="25" fill="none" stroke="%233b45c4" stroke-width="1.5"/></svg>');
}

.step-2 {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%233b45c4" stroke-width="2"/></svg>');
}

.step-3 {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="20" y="20" width="60" height="60" fill="none" stroke="%233b45c4" stroke-width="2"/></svg>');
}

.step-4 {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M30 50 L40 60 L70 30" stroke="%233b45c4" stroke-width="2" fill="none"/></svg>');
}

.step > * {
    position: relative;
    z-index: 1;
}

.step:last-child {
    padding-right: 0;
}

.step:not(:first-child) {
    padding-left: 36px;
}

.step-n {
    font-family: 'Fraunces', serif;
    font-size: 40px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.07);
    line-height: 1;
    margin-bottom: 20px;
}

.step-name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.step-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
}

/* ── WORKS ── */
.works-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-top: 60px;
}

.work {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.work:first-child {
    grid-row: span 2;
    aspect-ratio: auto;
}

.work-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .5s;
}

.work:hover .work-bg {
    transform: scale(1.04);
}

.w1 {
    background: #e8ecf7;
}

.w2 {
    background: #e8f0ec;
}

.w3 {
    background: #f0e8ea;
}

.w4 {
    background: #f0ece8;
}

.mock {
    width: 76%;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 12px 48px rgba(26, 31, 94, 0.1);
    overflow: hidden;
}

.mock-bar {
    height: 24px;
    background: #f4f5fb;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 5px;
    border-bottom: 1px solid #e4e6f0;
}

.md {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.mb {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ml {
    height: 5px;
    border-radius: 3px;
    background: #e4e6f0;
}

.ml.h {
    height: 9px;
    background: #1a1f5e;
    opacity: 0.12;
}

.ml.w8 {
    width: 80%;
}

.ml.w6 {
    width: 60%;
}

.ml.w4 {
    width: 40%;
}

.mi {
    height: 48px;
    border-radius: 4px;
    background: #e4e6f0;
    margin: 4px 0;
}

.mbtn {
    height: 20px;
    width: 60px;
    border-radius: 100px;
    background: #1a1f5e;
    opacity: 0.12;
}

.work-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 31, 94, 0.88) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    opacity: 0;
    transition: opacity .3s;
}

.work:hover .work-info {
    opacity: 1;
}

.work-cat {
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.work-nm {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 300;
    color: #ffffff;
}

/* ── PRICING ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.plan {
    background: #ffffff;
    padding: 48px 40px;
    position: relative;
    transition: transform .3s, box-shadow .3s;
}

.plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(26, 31, 94, 0.09);
}

.plan.hot {
    background: #1a1f5e;
    transform: translateY(-8px);
}

.plan.hot:hover {
    transform: translateY(-12px);
}

.plan-tier {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #3b45c4;
    margin-bottom: 10px;
}

.plan:nth-child(1) .plan-tier,
.plan:nth-child(2) .plan-tier,
.plan:nth-child(3) .plan-tier {
    color: #1a1f5e;
}

.plan-name {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 300;
    color: #1a1f5e;
    margin-bottom: 24px;
}

.plan:nth-child(1) .plan-name,
.plan:nth-child(2) .plan-name,
.plan:nth-child(3) .plan-name {
    color: #1a1f5e;
    font-weight: 400;
}

.plan.hot .plan-name {
    color: #ffffff;
}

.plan-price {
    font-family: 'Fraunces', serif;
    font-size: 58px;
    font-weight: 300;
    color: #1a1f5e;
    line-height: 1;
}

.plan.hot .plan-price {
    color: #ffffff;
}

.plan-price sup {
    font-size: 22px;
    vertical-align: top;
    margin-top: 8px;
    display: inline-block;
}

.plan-note {
    font-size: 12px;
    color: #666666;
    margin: 8px 0 28px;
}

.plan:nth-child(1) .plan-note,
.plan:nth-child(2) .plan-note,
.plan:nth-child(3) .plan-note {
    color: #555555;
    font-weight: 500;
}

.plan.hot .plan-note {
    color: rgba(255, 255, 255, 0.3);
}

.plan-sep {
    height: 1px;
    background: #e4e6f0;
    margin-bottom: 24px;
}

.plan.hot .plan-sep {
    background: rgba(255, 255, 255, 0.08);
}

.plan-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 32px;
}

.plan-feats li {
    font-size: 13px;
    color: #666666;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.plan:nth-child(1) .plan-feats li,
.plan:nth-child(2) .plan-feats li,
.plan:nth-child(3) .plan-feats li {
    color: #555555;
    font-weight: 500;
}

.plan.hot .plan-feats li {
    color: rgba(255, 255, 255, 0.45);
}

.plan-feats li::before {
    content: '';
    width: 12px;
    height: 2px;
    background: #3b45c4;
    border-radius: 2px;
    margin-top: 8px;
    flex-shrink: 0;
}

.plan-badge {
    position: absolute;
    top: -1px;
    right: 28px;
    background: #3b45c4;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 10px;
}

.plan-btn {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s;
}

.plan:not(.hot) .plan-btn {
    border: 1.5px solid #1a1f5e;
    color: #1a1f5e;
}

.plan:not(.hot) .plan-btn:hover {
    background: #1a1f5e;
    color: #ffffff;
}

.plan.hot .plan-btn {
    background: #3b45c4;
    color: #ffffff;
}

.plan.hot .plan-btn:hover {
    background: #ffffff;
    color: #1a1f5e;
}

/* ── TESTI ── */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.testi {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}


.testi-q {
    font-family: 'Fraunces', serif;
    font-size: 52px;
    font-weight: 300;
    color: #3b45c4;
    opacity: 0.18;
    line-height: 1;
}

.testi:nth-child(1) .testi-q,
.testi:nth-child(2) .testi-q,
.testi:nth-child(3) .testi-q {
    color: #1a1f5e;
    opacity: 0.12;
}

.testi-stars {
    color: #3b45c4;
    font-size: 11px;
    letter-spacing: 2px;
    margin: 10px 0 14px;
}

.testi:nth-child(1) .testi-stars,
.testi:nth-child(2) .testi-stars,
.testi:nth-child(3) .testi-stars {
    color: #1a1f5e;
}

.testi-text {
    font-family: 'Fraunces', serif;
    font-size: 16px;
    font-style: italic;
    font-weight: 300;
    color: #000000;
    line-height: 1.65;
    margin-bottom: 24px;
}

.testi:nth-child(1) .testi-text,
.testi:nth-child(2) .testi-text,
.testi:nth-child(3) .testi-text {
    color: #000000 !important;
    font-weight: 400;
}

.testi-who {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
}

.ta {
    background: #1a1f5e
}

.tb {
    background: #2d6b4a
}

.tc {
    background: #3b45c4
}

.testi-nm {
    font-size: 13px;
    font-weight: 700;
    color: #000000;
}

.testi:nth-child(1) .testi-nm,
.testi:nth-child(2) .testi-nm,
.testi:nth-child(3) .testi-nm {
    font-weight: 800;
}

.testi-rl {
    font-size: 11px;
    color: #000000;
}

.testi:nth-child(1) .testi-rl,
.testi:nth-child(2) .testi-rl,
.testi:nth-child(3) .testi-rl {
    color: #555555;
    font-weight: 600;
}

/* ── CTA ── */
.cta {
    background: #1a1f5e;
    padding: 120px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #3b45c4;
    margin-bottom: 24px;
    display: block;
}

.cta-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 5vw, 68px);
    font-weight: 300;
    color: #ffffff;
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.cta-title em {
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
}

.cta-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 44px;
}

.cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.btn-cta {
    background: #ffffff;
    color: #1a1f5e;
    padding: 16px 40px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s;
}

.btn-cta:hover {
    background: #3b45c4;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-cta-o {
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.5);
    padding: 16px 40px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all .25s;
}

.btn-cta-o:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.cta-info {
    margin-top: 32px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
}

/* ── FOOTER ── */
footer {
    background: #0e1138;
    padding: 72px 48px 36px;
}

.ft-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ft-logo-text {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
}

.ft-logo-text span {
    font-weight: 300;
}

.ft-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.7;
    margin-top: 14px;
    max-width: 250px;
}

.ft-ct {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #3b45c4;
    margin-bottom: 18px;
}

.ft-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.ft-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: color .2s;
}

.ft-links a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.ft-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
}

.ft-copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.15);
}

.ft-legal {
    display: flex;
    gap: 20px;
}

.ft-legal a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.15);
    text-decoration: none;
}

.ft-legal a:hover {
    color: rgba(255, 255, 255, 0.4);
}

/* ── MOBILE ── */
@media(max-width:768px) {
    nav {
        padding: 8px 20px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 80px 20px 60px;
        gap: 40px;
    }

    .hero-right {
        order: -1;
    }

    .stats {
        padding: 44px 20px;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .stat {
        padding: 0;
        border-right: none;
    }

    .section {
        padding: 72px 20px;
    }

    .svc-head {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .process-steps {
        grid-template-columns: 1fr 1fr;
    }

    .step {
        padding: 28px 14px;
    }

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

    .work:first-child {
        grid-row: span 1;
    }

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

    .plan.hot {
        transform: none;
    }

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

    .cta {
        padding: 72px 20px;
    }

    .cta-btns {
        flex-direction: column;
    }

    footer {
        padding: 52px 20px 28px;
    }

    .ft-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .ft-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
