/* ════════════════════════════════════════
   RESET & VARIABLES
   ════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --cream: #faf8f4;
    --warm-white: #f3f0ea;
    --sand: #e8e3d9;
    --navy: #1a2332;
    --navy-light: #2d3a4a;
    --text: #2c2c2c;
    --text-soft: #5a5a5a;
    --text-muted: #8a8a8a;
    --coral: #e05a3a;
    --coral-hover: #c94a2d;
    --coral-soft: rgba(224, 90, 58, 0.08);
    --teal: #2a7a6e;
    --teal-soft: rgba(42, 122, 110, 0.08);
    --border: rgba(0,0,0,0.08);
    --serif: 'Source Serif 4', Georgia, serif;
    --sans: 'Manrope', system-ui, sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
    --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
    background: var(--cream);
    color: var(--text);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--coral);
    color: white;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ════════════════════════════════════════
   NAV
   ════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 48px;
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-logo {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--coral);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--sans);
    font-weight: 800;
    font-size: 0.85rem;
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    font-size: 0.92rem;
    font-weight: 500;
}

.nav-links a {
    color: var(--text-soft);
    transition: color 0.25s;
    padding: 4px 0;
}

.nav-links a:hover { color: var(--coral); }
.nav-links a.active { color: var(--coral); }

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--coral);
}

.nav-phone svg { flex-shrink: 0; }

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}

.nav-burger span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.mobile-menu.active { display: flex; }

.mobile-menu a {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--navy);
}

.mobile-menu a:hover { color: var(--coral); }

/* ════════════════════════════════════════
   SHARED COMPONENTS
   ════════════════════════════════════════ */
.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--coral);
    margin-bottom: 12px;
}

.section-heading {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-soft);
    max-width: 520px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s;
}

.btn-primary {
    background: var(--coral);
    color: white;
    box-shadow: 0 4px 16px rgba(224, 90, 58, 0.25);
}

.btn-primary:hover {
    background: var(--coral-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(224, 90, 58, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--navy);
    border: 1.5px solid var(--sand);
}

.btn-secondary:hover {
    border-color: var(--coral);
    color: var(--coral);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 700;
    background: white;
    color: var(--navy);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}

.btn-white:hover {
    background: var(--coral);
    color: white;
    transform: translateY(-1px);
}

/* ════════════════════════════════════════
   HERO
   ════════════════════════════════════════ */
.hero-wrapper {
    position: relative;
    background: url('herotlo.jpg') center center / cover no-repeat;
}

.hero-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(250, 248, 244, 0.95) 0%,
        rgba(250, 248, 244, 0.88) 50%,
        rgba(250, 248, 244, 0.65) 100%
    );
}

.hero {
    position: relative;
    z-index: 1;
    padding: 140px 48px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-top-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--coral-soft);
    color: var(--coral);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 32px;
}

.hero-top-label .pulse {
    width: 8px;
    height: 8px;
    background: var(--coral);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--serif);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--navy);
    max-width: 700px;
    margin-bottom: 24px;
}

.hero-title .accent {
    color: var(--coral);
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-soft);
    max-width: 540px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-trust {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-icon {
    width: 48px;
    height: 48px;
    background: var(--warm-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.trust-text {
    font-size: 0.92rem;
    line-height: 1.4;
}

.trust-text strong {
    display: block;
    color: var(--navy);
    font-weight: 700;
}

.trust-text span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ════════════════════════════════════════
   SERVICES
   ════════════════════════════════════════ */
.services {
    padding: 80px 48px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 36px 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
    transform: translateY(-2px);
}

.service-emoji {
    width: 52px;
    height: 52px;
    background: var(--warm-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.service-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ════════════════════════════════════════
   PRICING
   ════════════════════════════════════════ */
.pricing {
    background: var(--navy);
    padding: 100px 48px;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(224,90,58,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.pricing .section-eyebrow { color: rgba(255,255,255,0.5); }
.pricing .section-heading { color: white; }
.pricing .section-desc { color: rgba(255,255,255,0.6); }

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

.price-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: all 0.3s;
    position: relative;
}

.price-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-3px);
}

.price-card.highlight {
    background: white;
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.price-card.highlight .price-title,
.price-card.highlight .price-amount,
.price-card.highlight .price-period { color: var(--navy); }

.price-card.highlight .price-features li { color: var(--text-soft); }
.price-card.highlight .price-features li::before { color: var(--coral); }

.price-ribbon {
    position: absolute;
    top: -1px; left: 32px; right: 32px;
    height: 4px;
    background: var(--coral);
    border-radius: 0 0 4px 4px;
}

.price-badge {
    display: inline-block;
    background: var(--coral);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.price-title {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.price-amount {
    font-family: var(--serif);
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
}

.price-amount sup {
    font-size: 1.2rem;
    font-weight: 600;
    vertical-align: super;
    margin-left: 4px;
}

.price-period {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 28px;
}

.price-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 24px;
}

.price-card.highlight .price-divider {
    background: var(--sand);
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.price-features li {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.price-features li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.price-free {
    display: inline-block;
    background: var(--teal);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════ */
.steps {
    padding: 100px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.steps-header {
    text-align: center;
    margin-bottom: 64px;
}

.steps-header .section-desc {
    margin-left: auto;
    margin-right: auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--sand);
    z-index: 0;
}

.step {
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.step-num {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: white;
    border: 2px solid var(--sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--coral);
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.step:hover .step-num {
    background: var(--coral);
    border-color: var(--coral);
    color: white;
}

.step-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.step-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ════════════════════════════════════════
   BRANDS
   ════════════════════════════════════════ */
.brands {
    padding: 60px 48px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.brands-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.brands-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.brands-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.brand {
    font-family: var(--sans);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--sand);
    letter-spacing: 0.04em;
    transition: color 0.3s;
    cursor: default;
    text-transform: uppercase;
}

.brand:hover { color: var(--navy); }

/* ════════════════════════════════════════
   WHY US
   ════════════════════════════════════════ */
.why {
    padding: 100px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.why-left .section-desc {
    margin-bottom: 32px;
}

.why-cta-box {
    background: var(--coral-soft);
    border-radius: var(--radius);
    padding: 28px;
    border-left: 4px solid var(--coral);
}

.why-cta-box p {
    font-size: 0.95rem;
    color: var(--text-soft);
    margin-bottom: 16px;
    line-height: 1.6;
}

.why-cta-box a {
    font-weight: 700;
    color: var(--coral);
    font-size: 1.2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.why-card {
    background: white;
    padding: 32px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.why-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.why-card-icon {
    width: 44px;
    height: 44px;
    background: var(--teal-soft);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.why-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.why-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════ */
.contact {
    padding: 100px 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-box {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow-md);
}

.contact-left {
    padding: 56px 48px;
}

.contact-left .section-heading {
    margin-bottom: 12px;
}

.contact-left .section-desc {
    margin-bottom: 40px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-row-icon {
    width: 52px;
    height: 52px;
    background: var(--warm-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-row-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.contact-row-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
}

.contact-row-value a:hover { color: var(--coral); }

.contact-hours {
    background: var(--warm-white);
    border-radius: var(--radius);
    padding: 20px 24px;
}

.contact-hours-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-soft);
    padding: 4px 0;
}

.contact-right {
    background: var(--navy);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.contact-form-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--sans);
    font-size: 0.95rem;
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: white;
    outline: none;
    transition: all 0.25s;
}

.form-input:focus {
    border-color: var(--coral);
    background: rgba(255,255,255,0.1);
}

.form-input::placeholder {
    color: rgba(255,255,255,0.25);
}

.form-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--sans);
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--coral);
    color: white;
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 4px;
}

.btn-submit:hover {
    background: var(--coral-hover);
    transform: translateY(-1px);
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
    border-top: 1px solid var(--border);
    padding: 32px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer a:hover { color: var(--coral); }

/* ════════════════════════════════════════
   FLOATING PHONE BUTTON
   ════════════════════════════════════════ */
.phone-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--coral);
    color: white;
    padding: 16px 28px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 6px 28px rgba(224, 90, 58, 0.35);
    transition: all 0.3s;
}

.phone-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(224, 90, 58, 0.45);
}

.phone-float svg {
    width: 20px;
    height: 20px;
    animation: ring 2.5s ease-in-out infinite;
}

@keyframes ring {
    0%, 100% { transform: rotate(0); }
    8% { transform: rotate(14deg); }
    16% { transform: rotate(-10deg); }
    24% { transform: rotate(8deg); }
    32% { transform: rotate(-4deg); }
    40%, 100% { transform: rotate(0); }
}

/* ════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════ */
.about-hero {
    padding: 140px 48px 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 64px;
    align-items: start;
}

.about-photo-wrapper {
    position: relative;
}

.about-photo-wrapper::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: -16px;
    bottom: -16px;
    border: 2px solid var(--coral);
    border-radius: 16px;
    z-index: 0;
}

.about-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-lg);
}

.about-content {
    padding-top: 16px;
}

.about-name {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 8px;
}

.about-role {
    font-size: 1.1rem;
    color: var(--coral);
    font-weight: 600;
    margin-bottom: 32px;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-soft);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-text strong {
    color: var(--navy);
}

.about-divider {
    width: 60px;
    height: 3px;
    background: var(--coral);
    border-radius: 3px;
    margin: 40px 0;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 48px;
}

.about-highlight {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.about-highlight-num {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 800;
    color: var(--coral);
    line-height: 1;
    margin-bottom: 4px;
}

.about-highlight-label {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.about-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

/* ════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════ */
.cta-banner {
    margin: 0 48px 80px;
    max-width: 1104px;
    margin-left: auto;
    margin-right: auto;
    background: var(--navy);
    border-radius: 20px;
    padding: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-banner-text h3 {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.cta-banner-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }

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

    .steps-grid::before { display: none; }

    .why-layout {
        grid-template-columns: 1fr;
    }

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

    .about-layout {
        grid-template-columns: 320px 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .nav {
        padding: 0 24px;
    }

    .nav-links { display: none; }
    .nav-phone { display: none; }
    .nav-burger { display: flex; }

    .hero { padding: 120px 24px 60px; }

    .hero-wrapper::before {
        background: linear-gradient(
            to bottom,
            rgba(250, 248, 244, 0.95) 0%,
            rgba(250, 248, 244, 0.9) 60%,
            rgba(250, 248, 244, 0.8) 100%
        );
    }

    .hero-trust {
        gap: 24px;
        flex-direction: column;
    }

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

    .btn {
        justify-content: center;
        padding: 16px 28px;
    }

    .services { padding: 60px 24px 80px; }

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

    .pricing { padding: 80px 24px; }

    .pricing-grid {
        max-width: 100%;
    }

    .brands { padding: 40px 24px; }
    .brands-row { gap: 20px; }
    .brand { font-size: 0.95rem; }

    .steps { padding: 80px 24px; }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .why { padding: 80px 24px; }

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

    .contact { padding: 60px 24px 80px; }

    .contact-left { padding: 40px 24px; }
    .contact-right { padding: 40px 24px; }

    .footer {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 24px;
    }

    .phone-float {
        bottom: 16px;
        right: 16px;
        padding: 14px 22px;
        font-size: 0.92rem;
    }

    /* About page mobile */
    .about-hero { padding: 110px 24px 60px; }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-photo-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }

    .about-highlights {
        grid-template-columns: 1fr 1fr;
    }

    .about-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .experience { padding: 60px 24px 80px; }

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

    .cta-banner {
        margin: 0 24px 60px;
        padding: 40px 28px;
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.2rem; }
    .section-heading { font-size: 1.6rem; }
    .price-amount { font-size: 2.6rem; }
    .about-name { font-size: 1.8rem; }

    .about-highlights {
        grid-template-columns: 1fr;
    }
}
