/* ============================================
   İzmir Konak Koltuk Yıkama · Stil dosyası
   Renk: Turkuaz-Lacivert · Fontlar: Fraunces + Manrope
   ============================================ */

:root {
    --c-primary:        #0d4f5c;
    --c-primary-dark:   #083540;
    --c-primary-light:  #1a6b7c;
    --c-accent:         #14b8a6;
    --c-accent-light:   #5eead4;
    --c-accent-dark:    #0d9488;
    --c-bg:             #fafaf7;
    --c-bg-alt:         #f3f4f1;
    --c-bg-soft:        #eef7f7;
    --c-text:           #0b2027;
    --c-text-soft:      #4a5b62;
    --c-text-muted:     #88979d;
    --c-border:         #e2e8e8;
    --c-white:          #ffffff;
    --c-yellow:         #f59e0b;

    --shadow-sm:  0 1px 2px rgba(11,32,39,.05);
    --shadow:     0 4px 16px rgba(11,32,39,.08);
    --shadow-lg:  0 12px 40px rgba(11,32,39,.12);
    --shadow-xl:  0 24px 60px rgba(11,32,39,.18);

    --radius-sm: 8px;
    --radius:    14px;
    --radius-lg: 22px;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body:    'Manrope', -apple-system, sans-serif;

    --max-width: 1240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--c-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-accent); }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--c-primary-dark);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); margin-bottom: .75rem; }
h4 { font-size: 1.1rem; margin-bottom: .5rem; }

p { margin-bottom: 1rem; color: var(--c-text-soft); }
ul, ol { margin: 1rem 0 1.5rem 1.5rem; }
ul li, ol li { margin-bottom: .5rem; color: var(--c-text-soft); }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ---------- TOP BAR ---------- */
.top-bar {
    background: var(--c-primary-dark);
    color: rgba(255,255,255,.85);
    font-size: 0.82rem;
    padding: .55rem 0;
}
.top-bar-inner {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: .5rem;
}
.top-bar-left { display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; }
.top-pill { display: inline-flex; align-items: center; gap: .4rem; }
.top-pill .dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--c-accent-light);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(94,234,212,.6); }
    70% { box-shadow: 0 0 0 8px rgba(94,234,212,0); }
    100% { box-shadow: 0 0 0 0 rgba(94,234,212,0); }
}
.top-sep { opacity: .3; }
.top-link { color: rgba(255,255,255,.85); }
.top-link:hover { color: var(--c-accent-light); }
.top-wa {
    background: #25D366; color: white !important;
    padding: .3rem .85rem; border-radius: 100px;
    font-weight: 600; font-size: .8rem;
}
.top-wa:hover { background: #1ebe5d; }

/* ---------- HEADER ---------- */
.site-header {
    background: var(--c-white);
    border-bottom: 1px solid var(--c-border);
    position: sticky; top: 0; z-index: 100;
    box-shadow: var(--shadow-sm);
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: .85rem 1.25rem; gap: 1rem;
}
.logo { display: flex; align-items: center; gap: .7rem; }
.logo-svg { width: 44px; height: 44px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-title {
    font-family: var(--font-display);
    font-weight: 700; font-size: 1.05rem;
    color: var(--c-primary-dark);
    letter-spacing: -0.01em;
}
.logo-sub {
    font-size: .7rem; color: var(--c-text-muted); font-weight: 500;
}

.main-nav ul {
    display: flex; list-style: none; align-items: center; gap: .2rem;
    margin: 0;
}
.main-nav li { margin: 0; }
.main-nav a {
    padding: .6rem .85rem; font-weight: 500; font-size: .94rem;
    color: var(--c-text); border-radius: var(--radius-sm);
    transition: all .2s ease; display: inline-block;
}
.main-nav a:hover, .main-nav a.active {
    color: var(--c-primary); background: var(--c-bg-soft);
}
.main-nav .has-sub { position: relative; }
.sub-menu {
    position: absolute; top: 100%; left: 0;
    background: var(--c-white); box-shadow: var(--shadow-lg);
    border-radius: var(--radius); padding: .5rem;
    min-width: 240px; opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: all .25s ease;
    flex-direction: column; z-index: 50;
    list-style: none;
}
.main-nav .has-sub:hover .sub-menu {
    opacity: 1; visibility: visible; transform: translateY(0); display: flex;
}
.sub-menu li { width: 100%; }
.sub-menu a { display: block; padding: .55rem .85rem; font-size: .9rem; }

.btn-nav {
    background: var(--c-primary) !important; color: white !important;
    padding: .6rem 1.1rem !important; border-radius: 100px !important;
    margin-left: .5rem;
}
.btn-nav:hover { background: var(--c-accent) !important; }

.nav-toggle {
    display: none; background: none; border: none;
    flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem;
}
.nav-toggle span {
    width: 26px; height: 2px; background: var(--c-primary-dark);
    transition: all .25s ease;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-block; padding: .85rem 1.6rem;
    border-radius: 100px; font-weight: 600; text-align: center;
    transition: all .25s ease; cursor: pointer; border: none;
    font-family: var(--font-body); font-size: 1rem; line-height: 1;
}
.btn-primary {
    background: var(--c-primary); color: white;
    box-shadow: 0 6px 20px rgba(13,79,92,.25);
}
.btn-primary:hover {
    background: var(--c-primary-dark); color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(13,79,92,.35);
}
.btn-accent {
    background: var(--c-accent); color: white;
    box-shadow: 0 6px 20px rgba(20,184,166,.3);
}
.btn-accent:hover {
    background: var(--c-accent-dark); color: white; transform: translateY(-2px);
}
.btn-wa { background: #25D366; color: white; }
.btn-wa:hover { background: #1ebe5d; color: white; }
.btn-outline {
    background: transparent; border: 2px solid var(--c-primary);
    color: var(--c-primary);
}
.btn-outline:hover { background: var(--c-primary); color: white; }
.btn-white { background: white; color: var(--c-primary); }
.btn-white:hover { background: var(--c-bg-soft); color: var(--c-primary-dark); }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--c-primary-dark) 0%, var(--c-primary) 60%, var(--c-accent-dark) 100%);
    color: white; padding: 5rem 0 6rem; overflow: hidden;
}
.hero::before {
    content: ""; position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(94,234,212,.18), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(20,184,166,.15), transparent 50%);
    pointer-events: none;
}
.hero-decor {
    position: absolute; top: 0; right: 0;
    width: 50%; height: 100%; opacity: .14; pointer-events: none;
}
.hero-inner {
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: 3rem; align-items: center; position: relative; z-index: 2;
}
.hero-content { animation: slideUp .8s ease-out; }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-badge {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .45rem 1rem; border-radius: 100px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    font-size: .85rem; font-weight: 500;
    backdrop-filter: blur(8px); margin-bottom: 1.4rem;
}
.hero h1 { color: white; font-weight: 600; margin-bottom: 1.3rem; }
.hero h1 em { font-style: italic; color: var(--c-accent-light); font-weight: 500; }
.hero-text {
    font-size: 1.1rem; color: rgba(255,255,255,.85);
    margin-bottom: 2rem; max-width: 540px;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
    display: flex; gap: 2.5rem; margin-top: 3rem;
    padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.15);
    flex-wrap: wrap;
}
.hero-stat .num {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 700;
    color: var(--c-accent-light); display: block;
}
.hero-stat .label { font-size: .85rem; color: rgba(255,255,255,.75); }

.hero-visual { position: relative; animation: fadeIn 1s ease-out .3s both; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.hero-visual img {
    border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
    border: 4px solid rgba(255,255,255,.1);
}
.hero-card {
    position: absolute; background: white; color: var(--c-text);
    padding: .9rem 1.2rem; border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: .8rem;
    font-weight: 600; animation: float 4s ease-in-out infinite;
}
.hero-card-1 { top: -1rem; left: -2rem; }
.hero-card-2 { bottom: 2rem; right: -2rem; animation-delay: 1s; }
.hero-card .icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: var(--c-bg-soft);
    display: flex; align-items: center; justify-content: center;
    color: var(--c-accent);
}
.hero-card .small { font-size: .75rem; font-weight: 500; color: var(--c-text-muted); display: block; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ---------- SECTIONS ---------- */
section { padding: 5rem 0; position: relative; }
section.tight { padding: 3.5rem 0; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-head .eyebrow {
    display: inline-block; color: var(--c-accent-dark);
    font-weight: 600; font-size: .85rem;
    letter-spacing: .12em; text-transform: uppercase; margin-bottom: .8rem;
}
.section-head h2 { margin-bottom: 1rem; }
.section-head p { color: var(--c-text-soft); font-size: 1.05rem; }

/* ---------- SERVICE CARDS ---------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.service-card {
    background: white; border-radius: var(--radius-lg);
    padding: 2rem; border: 1px solid var(--c-border);
    transition: all .3s ease; position: relative; overflow: hidden;
    display: block;
}
.service-card::before {
    content: ""; position: absolute;
    top: 0; right: 0; width: 120px; height: 120px;
    background: var(--c-bg-soft); border-radius: 50%;
    transform: translate(40%, -40%); transition: transform .4s ease;
}
.service-card:hover {
    border-color: var(--c-accent); box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.service-card:hover::before { transform: translate(30%, -30%) scale(1.4); }
.service-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--c-accent), var(--c-primary));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.3rem; color: white;
    position: relative; z-index: 1;
}
.service-card h3 { position: relative; z-index: 1; }
.service-card p { font-size: .95rem; position: relative; z-index: 1; }
.service-card .more {
    display: inline-flex; align-items: center; gap: .3rem;
    color: var(--c-accent-dark); font-weight: 600; font-size: .9rem;
    margin-top: .5rem; position: relative; z-index: 1;
}
.service-card .more::after { content: " →"; transition: transform .2s ease; }
.service-card:hover .more::after { transform: translateX(4px); }

/* ---------- REGION MARQUEE ---------- */
.region-bar { background: var(--c-primary-dark); color: white; padding: 2rem 0; overflow: hidden; }
.region-marquee {
    display: flex; gap: 3rem; animation: marquee 30s linear infinite;
    white-space: nowrap;
}
.region-marquee span {
    display: inline-flex; align-items: center; gap: 1rem;
    font-family: var(--font-display); font-size: 1.4rem;
    font-style: italic; color: var(--c-accent-light);
}
.region-marquee span::after { content: "✦"; color: rgba(255,255,255,.3); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- PROCESS ---------- */
.process-section { background: var(--c-bg-alt); }
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.process-step {
    background: white; padding: 2rem 1.5rem;
    border-radius: var(--radius); text-align: center;
    position: relative; border: 1px solid var(--c-border);
}
.process-step .step-num {
    position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
    width: 36px; height: 36px; background: var(--c-primary);
    color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700;
    border: 4px solid var(--c-bg-alt);
}
.process-step .step-icon {
    width: 64px; height: 64px; margin: 1rem auto 1.2rem; color: var(--c-accent);
}
.process-step h4 { margin-bottom: .5rem; }
.process-step p { font-size: .9rem; margin: 0; }

/* ---------- WHY US ---------- */
.why-grid {
    display: grid; grid-template-columns: 1.05fr 1fr;
    gap: 4rem; align-items: center;
}
.why-image-wrap { position: relative; }
.why-image-wrap img {
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.why-stat-card {
    position: absolute; bottom: -1.5rem; left: -1.5rem;
    background: var(--c-primary); color: white;
    padding: 1.5rem 1.8rem; border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}
.why-stat-card .num {
    font-family: var(--font-display); font-size: 2.6rem;
    color: var(--c-accent-light); line-height: 1;
}
.why-stat-card .lbl { font-size: .9rem; opacity: .85; }

.why-list { list-style: none; margin: 1.5rem 0 0 0; }
.why-list li {
    display: flex; gap: 1rem; padding: 1rem 0;
    border-bottom: 1px solid var(--c-border);
}
.why-list li:last-child { border-bottom: none; }
.why-list .check {
    flex-shrink: 0; width: 36px; height: 36px;
    background: var(--c-bg-soft); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--c-accent-dark); font-weight: 700;
}
.why-list h4 { margin-bottom: .25rem; color: var(--c-primary-dark); }
.why-list p { margin: 0; font-size: .94rem; }

/* ---------- PRICING ---------- */
.pricing-section { background: var(--c-bg-alt); }
.pricing-table {
    background: white; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow);
    overflow-x: auto;
}
.pricing-table table { width: 100%; border-collapse: collapse; }
.pricing-table th, .pricing-table td {
    padding: 1.1rem 1.5rem; text-align: left;
    border-bottom: 1px solid var(--c-border);
}
.pricing-table th {
    background: var(--c-primary-dark); color: white;
    font-family: var(--font-display); font-weight: 600;
    font-size: .95rem; letter-spacing: .02em;
}
.pricing-table tbody tr:hover { background: var(--c-bg-soft); }
.pricing-table .fiyat {
    color: var(--c-primary-dark); font-weight: 700;
    font-family: var(--font-display); font-size: 1.08rem;
}
.pricing-note {
    background: white; border-left: 4px solid var(--c-accent);
    padding: 1rem 1.3rem; margin-top: 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: .92rem; color: var(--c-text-soft);
}

/* ---------- CTA BAND ---------- */
.cta-band {
    background: linear-gradient(110deg, var(--c-primary) 0%, var(--c-primary-dark) 100%);
    color: white; padding: 4rem 0; position: relative; overflow: hidden;
}
.cta-band::before {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 80% 50%, rgba(20,184,166,.25), transparent 60%);
}
.cta-band-inner {
    display: grid; grid-template-columns: 1.5fr 1fr;
    gap: 2rem; align-items: center; position: relative;
}
.cta-band h2 { color: white; margin-bottom: .5rem; }
.cta-band p { color: rgba(255,255,255,.85); margin: 0; }
.cta-band-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-end; }

/* ---------- FORM ---------- */
.form-section { background: var(--c-bg-soft); }
.form-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: start;
}
.quote-form {
    background: white; padding: 2.5rem;
    border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-field { margin-bottom: 1rem; }
.form-field label {
    display: block; font-weight: 600; font-size: .88rem;
    color: var(--c-primary-dark); margin-bottom: .35rem;
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%; padding: .8rem 1rem;
    border: 1.5px solid var(--c-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: .95rem;
    transition: border-color .2s ease; background: white;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none; border-color: var(--c-accent);
    box-shadow: 0 0 0 4px rgba(20,184,166,.1);
}
.form-info h3 { margin-bottom: 1rem; }
.form-info ul { list-style: none; margin: 0; }
.form-info li {
    padding: .7rem 0; display: flex; gap: .8rem; align-items: center;
    margin: 0;
}
.form-info li .ico {
    width: 38px; height: 38px; background: white;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--c-accent-dark); flex-shrink: 0; box-shadow: var(--shadow-sm);
}

/* ---------- FAQ ---------- */
.faq-item {
    background: white; border-radius: var(--radius);
    margin-bottom: .8rem; border: 1px solid var(--c-border);
    overflow: hidden;
}
.faq-item summary {
    padding: 1.2rem 1.5rem; cursor: pointer; font-weight: 600;
    color: var(--c-primary-dark);
    display: flex; justify-content: space-between; align-items: center;
    list-style: none; font-family: var(--font-display); font-size: 1.05rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+"; font-size: 1.5rem; color: var(--c-accent);
    transition: transform .25s ease; line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
    padding: 0 1.5rem 1.3rem; color: var(--c-text-soft); line-height: 1.65;
}

/* ---------- PAGE HERO ---------- */
.page-hero {
    background: linear-gradient(135deg, var(--c-primary-dark), var(--c-primary));
    color: white; padding: 4rem 0 5rem;
    position: relative; overflow: hidden;
}
.page-hero::before {
    content: ""; position: absolute; inset: 0;
    background-image:
        radial-gradient(circle at 90% 20%, rgba(94,234,212,.2), transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(20,184,166,.15), transparent 50%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 800px; }
.page-hero h1 { color: white; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.1rem; max-width: 640px; }
.breadcrumb {
    display: flex; gap: .5rem; font-size: .85rem;
    color: rgba(255,255,255,.7); margin-bottom: 1rem;
    flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--c-accent-light); }

/* ---------- CONTENT GRID ---------- */
.content-grid {
    display: grid; grid-template-columns: 2fr 1fr;
    gap: 3rem; align-items: start;
}
.content-main p { margin-bottom: 1.15rem; line-height: 1.75; color: var(--c-text-soft); font-size: 1.02rem; }
.content-main h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.content-main h2:first-of-type { margin-top: 0; }
.content-main h3 { margin-top: 1.8rem; }
.content-main img { border-radius: var(--radius); box-shadow: var(--shadow); margin: 1.5rem 0; }
.content-main blockquote {
    border-left: 4px solid var(--c-accent);
    padding: 1rem 1.4rem; background: var(--c-bg-soft);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin: 1.5rem 0; font-style: italic;
}

.sidebar { position: sticky; top: 100px; }
.sidebar-card {
    background: white; padding: 1.8rem;
    border-radius: var(--radius); border: 1px solid var(--c-border);
    margin-bottom: 1.5rem;
}
.sidebar-card h4 { margin-bottom: 1rem; }
.sidebar-card ul { list-style: none; margin: 0; }
.sidebar-card li { padding: .45rem 0; border-bottom: 1px dashed var(--c-border); margin: 0; }
.sidebar-card li:last-child { border: none; }
.sidebar-card a { font-size: .95rem; }
.sidebar-cta {
    background: var(--c-primary); color: white;
    padding: 1.8rem; border-radius: var(--radius); text-align: center;
}
.sidebar-cta h4 { color: white; }
.sidebar-cta p { color: rgba(255,255,255,.85); font-size: .9rem; margin-bottom: 1rem; }

/* ---------- FEATURE TILES ---------- */
.feature-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem; margin: 2rem 0;
}
.feature-tile {
    background: white; padding: 1.5rem;
    border-radius: var(--radius); border: 1px solid var(--c-border);
}
.feature-tile .ico {
    width: 44px; height: 44px; background: var(--c-bg-soft);
    color: var(--c-accent-dark); border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem; font-weight: 700;
}
.feature-tile h4 { font-size: 1.05rem; margin-bottom: .35rem; }
.feature-tile p { font-size: .9rem; margin: 0; }

/* ---------- MAP ---------- */
.map-wrap {
    background: white; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow);
    border: 1px solid var(--c-border);
}
.map-wrap iframe { width: 100%; height: 450px; display: block; border: 0; }

/* ---------- FOOTER ---------- */
.site-footer {
    background: #06262d; color: rgba(255,255,255,.75);
    margin-top: 5rem; position: relative;
}
.footer-wave { line-height: 0; }
.footer-wave svg { display: block; width: 100%; height: 80px; transform: rotate(180deg) translateY(1px); }
.footer-inner {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2.5rem; padding: 1rem 1.25rem 3rem;
    max-width: var(--max-width); margin: 0 auto;
}
.footer-col h4 {
    color: white; font-family: var(--font-display);
    font-size: 1.05rem; margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; margin: 0; }
.footer-col li { margin-bottom: .55rem; font-size: .92rem; }
.footer-col a { color: rgba(255,255,255,.75); }
.footer-col a:hover { color: var(--c-accent-light); }
.footer-text { font-size: .92rem; line-height: 1.7; margin-bottom: 1.2rem; }
.footer-brand .logo-title { color: white; font-size: 1.15rem; }
.footer-socials { display: flex; gap: .5rem; margin-top: 1rem; }
.footer-socials a {
    width: 38px; height: 38px; background: rgba(255,255,255,.08);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .82rem; color: white;
}
.footer-socials a:hover { background: var(--c-accent); }
.footer-contact strong { color: white; font-weight: 600; font-size: .85rem; }
.footer-contact li { margin-bottom: .85rem; line-height: 1.4; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.3rem 0; font-size: .85rem; color: rgba(255,255,255,.55);
}
.footer-bottom-inner {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
    max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem;
}
.footer-bottom p { margin: 0; color: inherit; }

/* ---------- FLOATING WHATSAPP ---------- */
.float-wa {
    position: fixed; bottom: 24px; right: 24px;
    background: #25D366; color: white !important;
    padding: 12px 20px 12px 16px; border-radius: 100px;
    display: inline-flex; align-items: center; gap: .55rem;
    font-weight: 600; box-shadow: 0 10px 30px rgba(37,211,102,.35);
    z-index: 50; transition: transform .25s ease;
}
.float-wa:hover { transform: scale(1.05); color: white !important; }

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
    .hero-inner, .why-grid, .form-grid, .cta-band-inner, .content-grid {
        grid-template-columns: 1fr;
    }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .hero { padding: 3.5rem 0 4rem; }
    .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
    .hero-card-1 { left: 0; }
    .hero-card-2 { right: 0; }
    .why-stat-card { left: 0; bottom: -1rem; }
    .cta-band-actions { justify-content: flex-start; }
    .sidebar { position: static; }
}

@media (max-width: 760px) {
    .top-bar-left { font-size: .75rem; gap: .5rem; }
    .top-sep { display: none; }
    .top-bar-right { display: none; }
    .nav-toggle { display: flex; }
    .main-nav {
        position: absolute; top: 100%; left: 0; right: 0;
        background: white; max-height: 0; overflow: hidden;
        transition: max-height .35s ease; box-shadow: var(--shadow-lg);
    }
    .main-nav.open { max-height: 700px; padding: 1rem 0; }
    .main-nav ul { flex-direction: column; align-items: stretch; padding: 0 1.25rem; gap: 0; }
    .main-nav .has-sub .sub-menu {
        position: static; box-shadow: none;
        opacity: 1; visibility: visible; transform: none;
        padding-left: 1rem; display: none;
    }
    .main-nav .has-sub.open-sub .sub-menu { display: flex; }
    section { padding: 3.5rem 0; }
    .hero-stats { gap: 1.5rem; }
    .hero-stat .num { font-size: 1.7rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .pricing-table { font-size: .88rem; }
    .pricing-table th, .pricing-table td { padding: .8rem 1rem; }
    .float-wa span { display: none; }
    .float-wa { padding: 14px; }
    .logo-title { font-size: .95rem; }
}
