/* =========================================================
   VARIABLES  —  palette locked to unitedcapitalcompl
   ========================================================= */
:root {
    --primary:      #0F172A;
    --primary-lt:   #1E293B;
    --accent:       #C5A065;
    --accent-hov:   #D4AF77;
    --accent-soft:  rgba(197, 160, 101, 0.13);

    --bg:           #F9FAFB;
    --bg-warm:      #F3EFE9;
    --bg-white:     #FFFFFF;

    --text:         #1F2937;
    --text-muted:   #6B7280;
    --text-light:   #9CA3AF;

    --font:         'Inter', sans-serif;

    /* Whimsical radii */
    --r-sm:  10px;
    --r-md:  16px;
    --r-lg:  24px;
    --r-xl:  32px;

    /* Soft shadows */
    --sh-sm: 0 1px 3px  rgba(15,23,42,.06);
    --sh-md: 0 4px 16px rgba(15,23,42,.07);
    --sh-lg: 0 8px 32px rgba(15,23,42,.10);
    --sh-xl: 0 16px 48px rgba(15,23,42,.13);

    --ease: cubic-bezier(.4,0,.2,1);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { line-height: 1.2; color: var(--primary); }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); }
img { max-width: 100%; display: block; }

/* ─── SHARED UTILITIES ─── */
.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.acc { color: var(--accent); }

.tag {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    padding: .38rem 1rem;
    border-radius: 50px;
    margin-bottom: .9rem;
}

.section-head {
    text-align: center;
    margin-bottom: 3.2rem;
}
.section-head h2 {
    font-size: clamp(1.9rem, 3.6vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: .6rem;
}
.section-head p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
}

/* Scroll-reveal animation */
.animate {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.1rem 2rem;
    transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}
.nav.scrolled {
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 1px 14px rgba(15,23,42,.08);
    padding: .7rem 2rem;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-logo-img {
    height: 34px;
    /* white on dark hero */
    filter: brightness(0) invert(1);
    transition: filter .35s var(--ease);
}
.nav.scrolled .nav-logo-img { filter: none; }

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.8rem;
    margin-left: auto;
}
.nav-links a {
    font-size: .88rem;
    font-weight: 500;
    color: rgba(255,255,255,.82);
    transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav.scrolled .nav-links a { color: var(--text); }

.nav-cta {
    background: var(--accent);
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    padding: .55rem 1.3rem;
    border-radius: var(--r-sm);
    transition: background .2s, transform .15s;
    white-space: nowrap;
}
.nav-cta:hover { background: var(--accent-hov); transform: translateY(-1px); }

/* hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .4rem;
}
.nav-hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: background .3s;
}
.nav.scrolled .nav-hamburger span { background: var(--primary); }

/* mobile menu */
.mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(15,23,42,.5);
    z-index: 199;
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100%;
    background: #fff;
    z-index: 200;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: right .35s var(--ease);
}
.mobile-menu.open { right: 0; }

.mobile-close {
    position: absolute;
    top: 1.2rem; right: 1.4rem;
    background: none; border: none;
    font-size: 1.4rem;
    color: var(--primary);
    cursor: pointer;
}
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin-bottom: 1.2rem; }
.mobile-menu ul a { font-size: 1.15rem; font-weight: 600; color: var(--primary); }
.mobile-cta {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: .7rem 1.8rem;
    border-radius: var(--r-sm);
    font-weight: 600;
    margin-top: .5rem;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    background: linear-gradient(140deg, var(--primary) 0%, #1a2f4b 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 5.5rem 1.5rem 4rem;
}

/* ambient glow shapes */
.hero::before {
    content: '';
    position: absolute;
    top: -15%; right: -8%;
    width: 580px; height: 580px;
    background: radial-gradient(circle, rgba(197,160,101,.14) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -18%; left: -6%;
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(197,160,101,.07) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ── left column ── */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    backdrop-filter: blur(6px);
    color: rgba(255,255,255,.88);
    font-size: .78rem;
    font-weight: 500;
    padding: .45rem .95rem;
    border-radius: 50px;
    margin-bottom: 1.4rem;
}
.badge-dot {
    width: 7px; height: 7px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

.hero-title {
    font-size: clamp(2.7rem, 5vw, 3.7rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -.025em;
    margin-bottom: 1.1rem;
}
.hero-accent { color: var(--accent); }

.hero-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.68);
    line-height: 1.7;
    margin-bottom: 1.8rem;
    max-width: 460px;
}

/* ── hero form ── */
.hero-form {
    background: #fff;
    padding: 1.6rem;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-xl);
    max-width: 480px;
}
.hf-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.hf-row--bottom { display: flex; gap: .9rem; align-items: flex-end; margin-top: .9rem; }
.hf-field { display: flex; flex-direction: column; }
.hf-field--grow { flex: 1; }
.hf-field label {
    font-size: .7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: .35rem;
}
.hf-field input {
    padding: .62rem .8rem;
    border: 1.5px solid #E5E7EB;
    border-radius: var(--r-sm);
    font-family: var(--font);
    font-size: .92rem;
    color: var(--primary);
    background: var(--bg);
    outline: none;
    transition: border-color .2s;
}
.hf-field input:focus { border-color: var(--accent); background: #fff; }
.hf-field input::placeholder { color: var(--text-light); }

.hf-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: .68rem 1.35rem;
    border-radius: var(--r-sm);
    font-size: .92rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s, transform .15s;
}
.hf-btn:hover { background: var(--primary-lt); transform: translateY(-1px); }
.hf-btn:active { transform: translateY(0); }

.hf-note {
    font-size: .72rem;
    color: var(--text-light);
    text-align: center;
    margin-top: .75rem;
}

/* ── right column – mockup ── */
.hero-right { display: flex; justify-content: center; align-items: center; }

.mockup { position: relative; width: 360px; }

.mockup-card {
    background: #fff;
    border-radius: var(--r-lg);
    box-shadow: var(--sh-xl);
    overflow: hidden;
}

/* window dots */
.mockup-dots { display: flex; gap: 6px; padding: .9rem 1.1rem 0; }
.mdot { width: 10px; height: 10px; border-radius: 50%; }
.mdot--r { background: #FF5F57; }
.mdot--y { background: #FFBD2E; }
.mdot--g { background: #28C840; }

/* property row */
.m-property {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .9rem 1.1rem;
}
.m-prop-icon { font-size: 1.2rem; }
.m-prop-name { font-size: .85rem; font-weight: 600; color: var(--primary); }
.m-prop-sub  { font-size: .74rem; color: var(--text-light); }

/* rent status */
.m-status {
    display: flex;
    align-items: center;
    gap: .7rem;
    background: #f0fdf4;
    margin: 0 1.1rem;
    padding: .65rem .85rem;
    border-radius: var(--r-sm);
}
.m-status-check {
    width: 26px; height: 26px;
    background: #4ade80;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .78rem;
    font-weight: 700;
    flex-shrink: 0;
}
.m-status-label { font-size: .76rem; color: var(--text-muted); display: block; }
.m-status-amount { font-size: .9rem; font-weight: 700; color: var(--primary); display: block; }

/* progress */
.m-progress { padding: .9rem 1.1rem 0; }
.m-progress-head { display: flex; justify-content: space-between; font-size: .74rem; color: var(--text-muted); margin-bottom: .35rem; }
.m-progress-pct { font-weight: 600; color: var(--primary); }
.m-progress-track { height: 5px; background: #E5E7EB; border-radius: 3px; overflow: hidden; }
.m-progress-fill { width: 94%; height: 100%; background: linear-gradient(90deg, var(--accent), var(--accent-hov)); border-radius: 3px; }

/* chips */
.m-chips { display: flex; gap: .45rem; padding: .9rem 1.1rem 1.1rem; flex-wrap: wrap; }
.m-chip { font-size: .7rem; font-weight: 600; padding: .28rem .65rem; border-radius: 50px; }
.m-chip--ok      { background: #f0fdf4; color: #16a34a; }
.m-chip--neutral { background: var(--bg); color: var(--text-muted); }

/* floating badges */
.m-float {
    position: absolute;
    background: #fff;
    box-shadow: var(--sh-lg);
    border-radius: var(--r-md);
    padding: .5rem .9rem;
    display: flex; align-items: center; gap: .45rem;
    font-size: .76rem; font-weight: 600; color: var(--primary);
    white-space: nowrap;
    animation: floatY 3s ease-in-out infinite;
}
.m-float--1 { top: -18px; right: -24px; }
.m-float--2 { bottom: -14px; left: -36px; animation-delay: 1.4s; }
.mf-icon { font-size: .95rem; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar { background: var(--primary); padding: 2.2rem 1.5rem; }
.stats-bar-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.stat { text-align: center; flex: 1; min-width: 120px; }
.stat-num { display: block; font-size: 1.9rem; font-weight: 700; color: var(--accent); line-height: 1.1; }
.stat-lab { display: block; font-size: .8rem; color: rgba(255,255,255,.55); margin-top: .25rem; }
.stat-sep { width: 1px; height: 38px; background: rgba(255,255,255,.14); }

/* =========================================================
   GENERIC SECTION BACKGROUNDS
   ========================================================= */
.section        { padding: 5.5rem 0; }
.section--cool  { background: var(--bg); }
.section--warm  { background: var(--bg-warm); }
.section--white { background: var(--bg-white); }

/* =========================================================
   DLA KOGO  –  cards
   ========================================================= */
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}
.card {
    background: var(--bg-white);
    border-radius: var(--r-lg);
    padding: 2rem 1.75rem;
    box-shadow: var(--sh-sm);
    border: 1px solid rgba(15,23,42,.06);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }

.card-ico {
    width: 50px; height: 50px;
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.1rem;
}
.card-ico--1 { background: var(--accent-soft);          color: var(--accent); }
.card-ico--2 { background: rgba(15,23,42,.07);          color: var(--primary); }
.card-ico--3 { background: rgba(197,160,101,.18);       color: var(--accent); }

.card h3 { font-size: 1.1rem; margin-bottom: .55rem; }
.card p  { color: var(--text-muted); font-size: .88rem; line-height: 1.65; }

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

/* =========================================================
   UVP  –  (kept for potential reuse)
   ========================================================= */
.uvp {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
.uvp-text h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: .75rem;
}
.uvp-lead { color: var(--text-muted); font-size: 1rem; line-height: 1.7; margin-bottom: 1.6rem; }

.uvp-checks { display: flex; flex-direction: column; gap: .7rem; margin-bottom: 1.8rem; }
.chk-row { display: flex; align-items: flex-start; gap: .65rem; font-size: .92rem; }
.chk {
    width: 21px; height: 21px;
    background: var(--accent-soft);
    color: var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .72rem; font-weight: 700;
    flex-shrink: 0; margin-top: 1px;
}

.link-under {
    color: var(--primary);
    font-weight: 600;
    font-size: .92rem;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 1px;
    transition: color .2s;
}
.link-under:hover { color: var(--accent); }

/* cost card */
.uvp-visual { display: flex; justify-content: center; }
.cost-card {
    background: var(--bg-white);
    border-radius: var(--r-xl);
    box-shadow: var(--sh-lg);
    width: 100%; max-width: 370px;
    overflow: hidden;
}
.cost-card-head {
    background: var(--primary);
    color: #fff;
    padding: .85rem 1.4rem;
    font-weight: 600; font-size: .88rem;
    text-align: center;
}
.cost-card-body { padding: 1.3rem 1.4rem; }
.cost-row { display: flex; justify-content: space-between; align-items: center; padding: .6rem 0; font-size: .9rem; color: var(--text-muted); }
.cv          { font-weight: 700; }
.cv--zero    { color: #16a34a; }
.cv--acc     { color: var(--accent); font-size: 1.05rem; }
.cost-sep    { height: 1px; background: #E5E7EB; margin: .4rem 0; }
.cost-row--hl {
    background: var(--accent-soft);
    margin: 0 -1.4rem;
    padding: .7rem 1.4rem;
    border-radius: var(--r-sm);
    color: var(--primary);
    font-weight: 600;
}

/* =========================================================
   PROCESS  –  4 steps
   ========================================================= */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

/* dashed connector line behind icons */
.steps::before {
    content: '';
    position: absolute;
    /* vertical center: step-num line-height ~17px + margin 10px + half icon 28px ≈ 55px */
    top: 55px;
    left: 12.5%;   /* center of col-1 */
    right: 12.5%;  /* center of col-4 */
    height: 0;
    border-top: 2px dashed rgba(197,160,101,.45);
    z-index: 0;
}

.step { text-align: center; position: relative; z-index: 1; }
.step-num {
    font-size: .7rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: .6rem;
}
.step-ico {
    width: 56px; height: 56px;
    background: var(--accent-soft);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
    margin: 0 auto 1.1rem;
    box-shadow: 0 0 0 4px var(--bg-white);  /* white ring so dashed line stops visually */
}
.step h3 { font-size: 1rem; margin-bottom: .5rem; }
.step p  { color: var(--text-muted); font-size: .84rem; line-height: 1.6; }

/* =========================================================
   DLACZEGO MY  –  why-us
   ========================================================= */
.why-us {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3.5rem;
    align-items: start;
}
.why-us-text h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: .75rem;
}
.why-us-text p {
    color: var(--text-muted);
    font-size: .95rem;
    line-height: 1.7;
    margin-bottom: 1.6rem;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}
.why-item {
    background: var(--bg-white);
    border-radius: var(--r-md);
    padding: 1.45rem 1.3rem;
    box-shadow: var(--sh-sm);
    border: 1px solid rgba(15,23,42,.06);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.why-item:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }

.why-ico {
    width: 40px; height: 40px;
    border-radius: var(--r-sm);
    background: var(--accent-soft);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: .75rem;
}
.why-item h4 { font-size: .92rem; margin-bottom: .3rem; color: var(--primary); }
.why-item p { color: var(--text-muted); font-size: .8rem; line-height: 1.55; }

/* =========================================================
   TESTIMONIALS CAROUSEL
   ========================================================= */
.carousel { overflow: hidden; }
.carousel-track {
    display: flex;
    transition: transform .45s var(--ease);
}
.testimonial {
    min-width: 100%;
    background: var(--bg-white);
    border-radius: var(--r-lg);
    padding: 2.2rem;
    box-shadow: var(--sh-sm);
    border: 1px solid rgba(15,23,42,.06);
    max-width: 680px;
    margin: 0 auto;
    /* keep card centered when track slides — use wrapper trick via JS width */
}

.t-stars { color: var(--accent); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: .8rem; }
.t-quote { color: var(--text); font-size: .95rem; line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }

.t-author { display: flex; align-items: center; gap: .85rem; }
.t-av {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: .78rem; font-weight: 700;
    flex-shrink: 0;
}
.t-name { display: block; font-size: .88rem; font-weight: 600; }
.t-city { display: block; font-size: .78rem; color: var(--text-light); }

.carousel-nav {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; margin-top: 1.8rem;
}
.c-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid #E5E7EB;
    background: var(--bg-white);
    color: var(--primary);
    font-size: 1.15rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: border-color .2s, background .2s, transform .15s;
}
.c-btn:hover { border-color: var(--accent); background: var(--accent-soft); transform: scale(1.05); }

.c-dots { display: flex; gap: .5rem; }
.c-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #E5E7EB;
    cursor: pointer;
    transition: background .25s;
}
.c-dot.active { background: var(--accent); }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq { max-width: 720px; margin: 0 auto; }

.faq-item {
    border-bottom: 1px solid #E5E7EB;
}
.faq-item:first-child { border-top: 1px solid #E5E7EB; }

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
    text-align: left;
}
.faq-q span:first-child { font-size: .95rem; font-weight: 600; color: var(--primary); }
.faq-icon {
    font-size: 1.2rem;
    color: var(--accent);
    font-weight: 300;
    transition: transform .3s var(--ease);
    flex-shrink: 0;
}
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
}
.faq-a p {
    padding: 0 0 1.2rem;
    color: var(--text-muted);
    font-size: .9rem;
    line-height: 1.7;
}

/* =========================================================
   BOTTOM CTA
   ========================================================= */
.cta-section {
    background: linear-gradient(140deg, var(--primary) 0%, #1a2f4b 100%);
    padding: 5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -30%; right: -12%;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(197,160,101,.12) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-inner h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.5rem); font-weight: 700; margin-bottom: .7rem; }
.cta-acc { color: var(--accent); }
.cta-inner p { color: rgba(255,255,255,.6); margin-bottom: 1.8rem; font-size: 1rem; }

.cta-btn {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: .85rem 2.2rem;
    border-radius: var(--r-md);
    font-size: 1rem;
    font-weight: 600;
    transition: background .2s, transform .15s, box-shadow .2s;
    box-shadow: 0 4px 14px rgba(197,160,101,.35);
}
.cta-btn:hover { background: var(--accent-hov); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(197,160,101,.4); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: var(--primary);
    color: rgba(255,255,255,.7);
    padding: 3.5rem 1.5rem 1.5rem;
}
.footer-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo { height: 32px; margin-bottom: .85rem; }
.footer-col--brand p { font-size: .85rem; line-height: 1.6; color: rgba(255,255,255,.5); }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul a { font-size: .87rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-col ul li:last-child { color: rgba(255,255,255,.5); font-size: .87rem; }

.footer-bottom { max-width: 1000px; margin: 1.2rem auto 0; text-align: center; font-size: .78rem; color: rgba(255,255,255,.3); }

/* =========================================================
   RESPONSIVE  –  tablet
   ========================================================= */
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-right  { order: -1; }
    .mockup      { width: 300px; }

    .why-us      { grid-template-columns: 1fr; gap: 2.5rem; }
    .cards--2col { grid-template-columns: repeat(2, 1fr); }

    .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   RESPONSIVE  –  mobile
   ========================================================= */
@media (max-width: 640px) {
    /* nav */
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    /* hero */
    .hero { padding: 5rem 1.25rem 3rem; }
    .hero-title { font-size: 2.4rem; }
    .hero-form { padding: 1.2rem; }
    .hf-row { grid-template-columns: 1fr; }
    .hf-row--bottom { flex-direction: column; align-items: stretch; }
    .hf-btn { width: 100%; text-align: center; padding: .72rem; }

    .mockup { width: 100%; max-width: 320px; }
    .m-float { display: none; } /* hide floaters on small screens */

    /* stats */
    .stat-sep { display: none; }
    .stats-bar-inner { gap: 1rem; }

    /* cards / why-us */
    .cards, .cards--2col { grid-template-columns: 1fr; gap: 1rem; }
    .why-us-grid { grid-template-columns: 1fr; }

    /* steps */
    .steps {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1rem;
    }
    .steps::before { display: none; }

    /* uvp */
    .uvp { grid-template-columns: 1fr; }

    /* carousel testimonial */
    .testimonial { padding: 1.5rem; }

    /* footer */
    .footer-inner { grid-template-columns: 1fr; gap: 1.8rem; }
}
