:root {
    --primary: #ff6b1a;
    --primary-dark: #e55a0e;
    --primary-light: #fff1e8;
    --secondary: #0f2a47;
    --secondary-light: #1a3d63;
    --dark: #0b1a2b;
    --gray-900: #1a202c;
    --gray-700: #4a5568;
    --gray-500: #718096;
    --gray-300: #cbd5e0;
    --gray-100: #f7fafc;
    --gray-50: #fafbfc;
    --white: #ffffff;
    --success: #25d366;
    --insta: #e1306c;
    --shadow-sm: 0 2px 8px rgba(11,26,43,.06);
    --shadow-md: 0 8px 24px rgba(11,26,43,.1);
    --shadow-lg: 0 16px 40px rgba(11,26,43,.14);
    --radius: 14px;
    --radius-sm: 8px;
    --radius-lg: 24px;
    --font-head: 'Work Sans', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --container: 1240px;
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1,h2,h3,h4,h5 {
    font-family: var(--font-head);
    color: var(--secondary);
    line-height: 1.2;
    font-weight: 800;
}

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

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    line-height: 1;
}
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-primary { background: var(--primary); color: var(--white); box-shadow: 0 8px 20px rgba(255,107,26,.35); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,107,26,.45); }
.btn-outline { background: rgba(255,255,255,.12); color: var(--white); border: 2px solid rgba(255,255,255,.4); backdrop-filter: blur(8px); }
.btn-outline:hover { background: var(--white); color: var(--secondary); border-color: var(--white); }
.btn-light { background: var(--white); color: var(--secondary); }
.btn-light:hover { background: var(--primary); color: var(--white); }
.btn-whatsapp-large { background: var(--success); color: var(--white); }
.btn-whatsapp-large:hover { background: #1da851; transform: translateY(-2px); }

/* ============ TOP BAR ============ */
.topbar { background: var(--secondary); color: rgba(255,255,255,.85); font-size: 13.5px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.topbar-left { display: flex; gap: 24px; flex-wrap: wrap; }
.topbar-left span i { color: var(--primary); margin-right: 6px; }
.topbar-left a:hover { color: var(--primary); }
.topbar-right { display: flex; gap: 14px; }
.topbar-right a { width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,.08); }
.topbar-right a:hover { background: var(--primary); color: var(--white); }

/* ============ HEADER ============ */
.header { background: var(--white); padding: 16px 0; position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); transition: var(--transition); }
.header.scrolled { padding: 12px 0; box-shadow: var(--shadow-md); }
.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 46px; height: 46px; background: var(--primary); color: var(--white); border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 6px 16px rgba(255,107,26,.3); }
.logo-text { font-family: var(--font-head); font-weight: 900; font-size: 24px; color: var(--secondary); line-height: 1; }
.logo-text small { display: block; font-size: 11px; font-weight: 600; color: var(--gray-500); letter-spacing: 2px; margin-top: 4px; text-transform: uppercase; }
.logo-light .logo-text { color: var(--white); }
.logo-light .logo-text small { color: rgba(255,255,255,.7); }

.nav ul { display: flex; gap: 4px; }
.nav a { display: inline-block; padding: 10px 16px; font-weight: 600; font-size: 15px; color: var(--secondary); border-radius: 8px; position: relative; }
.nav a:hover, .nav a.active { color: var(--primary); background: var(--primary-light); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cart { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: var(--primary-light); color: var(--secondary); font-size: 18px; transition: var(--transition); text-decoration: none; flex-shrink: 0; }
.header-cart:hover { background: var(--primary); color: var(--white); text-decoration: none; }
.header-cart-count { position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 5px; background: var(--primary); color: var(--white); font-size: 11px; font-weight: 700; border-radius: 999px; display: flex; align-items: center; justify-content: center; line-height: 1; border: 2px solid var(--white); font-family: var(--font-body); }
.header-cart:not(.has-items) .header-cart-count { background: var(--gray-400); }
.header-orders { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: var(--gray-100); color: var(--secondary); font-size: 17px; transition: var(--transition); text-decoration: none; flex-shrink: 0; }
.header-orders:hover { background: var(--secondary); color: var(--white); text-decoration: none; }
.header-orders-count { position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; padding: 0 5px; background: var(--secondary); color: var(--white); font-size: 11px; font-weight: 700; border-radius: 999px; display: flex; align-items: center; justify-content: center; line-height: 1; border: 2px solid var(--white); font-family: var(--font-body); }
.past-order-status { font-size: .75rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: #fef3c7; color: #92400e; }
.past-order-status-odendi { background: #dcfce7; color: #166534; }
.past-order-status-iptal { background: #fee2e2; color: #991b1b; }
.nav-toggle { width: 42px; height: 42px; display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; border-radius: 8px; background: var(--gray-100); }
.nav-toggle span { width: 22px; height: 2.5px; background: var(--secondary); border-radius: 2px; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(11,26,43,.55); z-index: 85; opacity: 0; transition: opacity .35s ease; }
.nav-overlay.open { display: block; opacity: 1; }
body.nav-open { overflow: hidden; }
.nav-close { display: none; position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border: none; border-radius: 10px; background: var(--gray-100); color: var(--secondary); font-size: 20px; cursor: pointer; align-items: center; justify-content: center; }
.nav-close:hover { background: var(--primary-light); color: var(--primary); }

/* ============ HERO ============ */
.hero { position: relative; height: 90vh; min-height: 600px; max-height: 800px; overflow: hidden; color: var(--white); display: flex; align-items: center; }
.hero-slider { position: absolute; inset: 0; z-index: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1s ease; display: flex; align-items: center; }
.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-image { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.hero-fallback-bg { position: absolute; inset: 0; z-index: 0; background: linear-gradient(135deg, #0b1a2b 0%, #1a3d63 50%, #ff6b1a 100%); }
.hero-slide .hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(11,26,43,.85) 0%, rgba(11,26,43,.55) 60%, rgba(255,107,26,.3) 100%); z-index: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(11,26,43,.85) 0%, rgba(11,26,43,.55) 60%, rgba(255,107,26,.3) 100%); z-index: 1; }
.hero-slide .hero-content { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 0 24px; width: 100%; max-width: 720px; }
.hero-content { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 0 24px; width: 100%; max-width: 720px; }
.hero-dots { position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 10px; }
.hero-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: var(--transition); }
.hero-dot.active, .hero-dot:hover { background: var(--primary); transform: scale(1.2); }
.btn-cart { width: 100%; margin-bottom: 12px; background: var(--secondary); box-shadow: 0 8px 20px rgba(15,42,71,.35); position: relative; z-index: 1; }
.btn-cart:hover { background: var(--secondary-light); }
.hero-badge { display: inline-block; padding: 10px 22px; background: rgba(255,107,26,.18); border: 1px solid rgba(255,107,26,.5); border-radius: 50px; font-size: 17px; font-weight: 800; letter-spacing: .5px; margin-bottom: 24px; color: #ffb98a; backdrop-filter: blur(6px); }
.hero-content h1 { font-size: clamp(36px, 5.5vw, 64px); color: var(--white); margin-bottom: 20px; }
.hero-content h1 span { color: var(--primary); }
.hero-content p { font-size: 18px; color: rgba(255,255,255,.88); margin-bottom: 36px; max-width: 580px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; color: var(--white); width: 44px; height: 44px; border: 2px solid rgba(255,255,255,.4); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; animation: bounce 2s infinite; }
.hero-scroll:hover { background: var(--primary); border-color: var(--primary); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }

/* ============ STATS ============ */
.stats { background: var(--secondary); color: var(--white); padding: 36px 0; position: relative; overflow: hidden; }
.stats::before { content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,107,26,.18), transparent 70%); }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; z-index: 1; }
.stat-item { text-align: center; padding: 12px; border-right: 1px solid rgba(255,255,255,.08); }
.stat-item:last-child { border-right: none; }
.stat-item i { font-size: 28px; color: var(--primary); margin-bottom: 10px; }
.stat-number { font-family: var(--font-head); font-size: 38px; font-weight: 900; color: var(--white); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.75); font-weight: 600; letter-spacing: .3px; }

/* ============ SECTION HEAD ============ */
.section-head { margin-bottom: 50px; }
.section-head.center { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-head.light h2, .section-head.light p { color: var(--white); }
.section-head.light .eyebrow { color: var(--primary); }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 700; color: var(--primary); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 14px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.section-head h2 span { color: var(--primary); }
.section-head p { font-size: 17px; color: var(--gray-500); }

/* ============ CALCULATOR ============ */
.calculator { padding: 90px 0; background: var(--gray-50); }
.calculator .section-head { text-align: center; max-width: 700px; margin-left: auto; margin-right: auto; }
.calc-wrapper { display: grid; grid-template-columns: 1.6fr 1fr; gap: 30px; align-items: start; }
.calc-form { background: var(--white); padding: 36px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid rgba(11,26,43,.04); }
.form-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 18px; }
.form-row:has(.checkbox-grid) { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--secondary); margin-bottom: 8px; letter-spacing: .3px; }
.required-star { color: #dc2626; font-weight: 700; margin-left: 2px; }
.form-group select, .form-group input { padding: 13px 14px; border: 1.5px solid var(--gray-300); border-radius: 10px; font-family: var(--font-body); font-size: 15px; color: var(--secondary); background: var(--white); transition: var(--transition); appearance: none; -webkit-appearance: none; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230f2a47' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-group select:focus, .form-group input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(255,107,26,.12); }

.checkbox-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.check { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1.5px solid var(--gray-300); border-radius: 10px; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--secondary); transition: var(--transition); }
.check:hover { border-color: var(--primary); background: var(--primary-light); }
.check input { width: 18px; height: 18px; accent-color: var(--primary); cursor: pointer; }
.check:has(input:checked) { border-color: var(--primary); background: var(--primary-light); }

.checkbox-grid .check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    background: var(--white);
    margin: 0;
    position: relative;
    flex-shrink: 0;
    accent-color: unset;
}
.checkbox-grid .check input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}
.checkbox-grid .check input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.calc-result { background: linear-gradient(140deg, var(--secondary) 0%, var(--secondary-light) 100%); color: var(--white); padding: 36px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); position: sticky; top: 100px; text-align: center; overflow: hidden; }
.calc-result::before { content: ''; position: absolute; top: -50%; right: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,107,26,.2), transparent 50%); pointer-events: none; }
.result-label { font-size: 14px; color: rgba(255,255,255,.75); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; position: relative; }
.result-price { font-family: var(--font-head); font-size: 54px; font-weight: 900; color: var(--primary); margin-bottom: 12px; position: relative; line-height: 1; transition: var(--transition); }
.result-info { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 24px; position: relative; }
.result-info i { color: var(--primary); margin-right: 4px; }
.btn-whatsapp-result, .btn-call-result { display: block; width: 100%; padding: 14px; border-radius: 50px; font-weight: 700; margin-bottom: 10px; position: relative; gap: 8px; }
.btn-whatsapp-result { background: var(--success); color: var(--white); }
.btn-whatsapp-result:hover { background: #1da851; }
.btn-call-result { background: var(--primary); color: var(--white); }
.btn-call-result:hover { background: var(--primary-dark); }

/* ============ ABOUT ============ */
.about { padding: 90px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); background: var(--gray-100); }
.about-badge { position: absolute; bottom: 30px; left: -20px; background: var(--primary); color: var(--white); padding: 24px 28px; border-radius: var(--radius); box-shadow: var(--shadow-lg); text-align: center; }
.about-badge span { font-family: var(--font-head); font-size: 42px; font-weight: 900; display: block; line-height: 1; }
.about-badge small { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.about-text h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 18px; }
.about-text h2 span { color: var(--primary); }
.about-text p { margin-bottom: 16px; font-size: 16px; }
.about-list { margin: 24px 0 32px; }
.about-list li { padding: 8px 0; font-weight: 600; color: var(--secondary); }
.about-list i { color: var(--primary); margin-right: 10px; background: var(--primary-light); width: 26px; height: 26px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; }

/* ============ SERVICES ============ */
.services { padding: 90px 0; background: var(--gray-50); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card { background: var(--white); padding: 32px 26px; border-radius: var(--radius); border: 1px solid rgba(11,26,43,.05); transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--primary); transform: scaleX(0); transform-origin: left; transition: var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 60px; height: 60px; background: var(--primary-light); color: var(--primary); border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; transition: var(--transition); }
.service-card:hover .service-icon { background: var(--primary); color: var(--white); }
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; color: var(--gray-500); }

/* ============ GALLERY ============ */
.gallery { padding: 90px 0; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { position: relative; aspect-ratio: 1/1; overflow: hidden; border-radius: var(--radius); background: var(--gray-100); display: block; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-item span { position: absolute; inset: 0; background: rgba(11,26,43,.6); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 30px; opacity: 0; transition: var(--transition); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover span { opacity: 1; }

/* ============ TRUST ============ */
.trust { padding: 90px 0; background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%); color: var(--white); position: relative; overflow: hidden; }
.trust::before { content: ''; position: absolute; top: -20%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,107,26,.15), transparent 70%); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.trust-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); padding: 32px 28px; border-radius: var(--radius); backdrop-filter: blur(10px); transition: var(--transition); }
.trust-card:hover { transform: translateY(-4px); border-color: var(--primary); background: rgba(255,107,26,.06); }
.trust-card i { font-size: 36px; color: var(--primary); margin-bottom: 18px; }
.trust-card h3 { color: var(--white); font-size: 20px; margin-bottom: 10px; }
.trust-card p { color: rgba(255,255,255,.7); font-size: 15px; }

/* ============ TESTIMONIALS ============ */
.testimonials { padding: 90px 0; background: var(--gray-50); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid rgba(11,26,43,.04); transition: var(--transition); position: relative; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card::before { content: '"'; position: absolute; top: 16px; right: 24px; font-family: var(--font-head); font-size: 70px; color: var(--primary-light); line-height: 1; font-weight: 900; }
.stars { color: #ffb800; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-style: italic; color: var(--gray-700); margin-bottom: 20px; position: relative; }
.testimonial-author strong { display: block; color: var(--secondary); font-weight: 700; }
.testimonial-author span { font-size: 13px; color: var(--gray-500); }

/* ============ CTA ============ */
.cta { padding: 70px 0; background: var(--primary); color: var(--white); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cta-text h2 { color: var(--white); font-size: 32px; margin-bottom: 6px; }
.cta-text p { color: rgba(255,255,255,.9); font-size: 17px; }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-col h4 { color: var(--white); font-size: 18px; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px; background: var(--primary); border-radius: 3px; }
.footer-col p { font-size: 14.5px; line-height: 1.7; margin: 18px 0; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 38px; height: 38px; background: rgba(255,255,255,.08); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--white); }
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }
.footer-links li, .footer-contact li { padding: 7px 0; font-size: 14.5px; }
.footer-links a:hover { color: var(--primary); padding-left: 6px; }
.footer-contact i { color: var(--primary); margin-right: 10px; width: 16px; }
.footer-contact a:hover { color: var(--primary); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13.5px; }

/* ============ FLOATING BUTTONS ============ */
.floating-buttons { position: fixed; right: 22px; bottom: 22px; z-index: 99; display: flex; flex-direction: column; gap: 14px; }
.float-btn { width: 58px; height: 58px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--white); font-size: 28px; box-shadow: 0 8px 24px rgba(0,0,0,.25); position: relative; transition: var(--transition); }
.float-btn:hover { transform: scale(1.1); }
.float-wp { background: var(--success); }
.float-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.float-pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--success); animation: pulse 2s infinite; z-index: -1; }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }
.float-tooltip { position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%); background: var(--secondary); color: var(--white); padding: 6px 12px; border-radius: 6px; font-size: 13px; font-weight: 600; white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--transition); }
.float-tooltip::after { content: ''; position: absolute; left: 100%; top: 50%; transform: translateY(-50%); border: 6px solid transparent; border-left-color: var(--secondary); }
.float-btn:hover .float-tooltip { opacity: 1; right: calc(100% + 18px); }

/* ============ SCROLL TOP ============ */
.scroll-top { position: fixed; right: 22px; bottom: 100px; width: 44px; height: 44px; background: var(--secondary); color: var(--white); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 16px; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transition: var(--transition); z-index: 98; }
.scroll-top.show { opacity: 1; visibility: visible; bottom: 158px; }
.scroll-top:hover { background: var(--primary); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .stat-item:nth-child(3) { border-right: none; }
    .services-grid, .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .trust-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
    .calc-wrapper { grid-template-columns: 1fr; }
    .calc-result { position: relative; top: 0; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .topbar { font-size: 12.5px; padding: 8px 0; }
    .topbar-left { gap: 14px; }
    .hide-mobile { display: none !important; }
    .nav { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--white); box-shadow: var(--shadow-lg); padding: 80px 24px 24px; transition: right .35s ease; z-index: 90; overflow-y: auto; }
    .nav.open { right: 0; }
    .nav-close { display: inline-flex; }
    .nav ul { flex-direction: column; gap: 4px; }
    .nav a { display: block; padding: 12px 18px; font-size: 16px; }
    .nav-toggle { display: flex; }
    .hero { min-height: 540px; height: 80vh; }
    .hero-content h1 { font-size: 36px; }
    .hero-content p { font-size: 16px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item { border-right: none !important; padding: 16px 8px; }
    .stat-number { font-size: 30px; }
    .form-row, .checkbox-grid { grid-template-columns: 1fr; }
    .billing-grid { grid-template-columns: 1fr; }
    .calc-form { padding: 24px; }
    .result-price { font-size: 44px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image img { height: 380px; }
    .about-badge { bottom: 20px; left: 20px; padding: 18px 22px; }
    .about-badge span { font-size: 32px; }
    .services-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid, .testimonial-grid, .footer-grid { grid-template-columns: 1fr; gap: 18px; }
    .calculator, .about, .services, .gallery, .trust, .testimonials { padding: 60px 0; }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-text h2 { font-size: 26px; }
    .float-btn { width: 52px; height: 52px; font-size: 24px; }
    .floating-buttons { right: 16px; bottom: 16px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

.btn-cart.is-disabled { opacity: .55; }
.btn-cart.is-ready { opacity: 1; background: var(--primary) !important; box-shadow: 0 8px 20px rgba(255,107,26,.35); cursor: pointer; }
.btn-cart.is-ready:hover { background: var(--primary-dark) !important; transform: translateY(-2px); }

.field-error { color: var(--primary); font-size: 13px; font-weight: 600; display: block; margin-top: 6px; }
.calc-form input.field-invalid,
.calc-form select.field-invalid { border-color: var(--primary) !important; box-shadow: 0 0 0 3px rgba(255,107,26,.15); }

/* Checkout & pages */
.checkout-section { padding-top: 120px; min-height: 70vh; }
.checkout-container { max-width: 800px; }
.checkout-card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-md); }
.checkout-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.checkout-table th, .checkout-table td { padding: 12px; border-bottom: 1px solid var(--gray-300); }
.checkout-table .text-right { text-align: right; }
.checkout-table .price-cell { font-weight: 700; font-size: 1.15rem; }
.checkout-table .total-cell { font-weight: 800; font-size: 1.3rem; color: var(--primary); }
.checkout-subtitle { margin-bottom: 16px; font-size: 1.1rem; }
.payment-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.payment-option { display: flex; align-items: center; gap: 12px; padding: 16px; border: 2px solid var(--gray-300); border-radius: var(--radius-sm); cursor: pointer; transition: var(--transition); }
.payment-option:has(input:checked) { border-color: var(--primary); background: var(--primary-light); }
.btn-block { width: 100%; justify-content: center; }
.checkout-back { margin-top: 16px; text-align: center; }
.checkout-divider { border: none; border-top: 1px solid var(--gray-300); margin: 28px 0; }
.checkout-hint { font-size: .9rem; color: var(--gray-500); margin-bottom: 20px; line-height: 1.6; }
.checkout-hint a { color: var(--primary); font-weight: 600; }
.text-muted { color: var(--gray-500); }
.text-center { text-align: center; }

.billing-form { margin-top: 8px; }
.billing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.billing-field { display: flex; flex-direction: column; }
.billing-field-full { grid-column: 1 / -1; }
.billing-field label { font-size: .9rem; font-weight: 600; margin-bottom: 6px; color: var(--secondary); }
.billing-field input, .billing-field textarea { padding: 12px; border: 1px solid var(--gray-300); border-radius: 8px; font-family: var(--font-body); font-size: .95rem; }
.billing-field input:focus, .billing-field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(255,107,26,.12); }
.billing-field input[type="file"] { padding: 10px; background: var(--gray-100); }
.field-hint { display: block; margin-top: 6px; font-size: .8rem; color: var(--gray-500); }
.billing-field label small { font-weight: 400; color: var(--gray-500); }

.cart-empty { text-align: center; padding: 40px 20px; color: var(--gray-500); }
.cart-empty i { font-size: 48px; color: var(--gray-300); margin-bottom: 16px; }
.cart-empty p { font-size: 1.1rem; margin-bottom: 20px; }

.cart-remove-form { display: inline; margin: 0; }
.btn-cart-remove { width: 38px; height: 38px; border: none; border-radius: 8px; background: #fee2e2; color: #dc2626; cursor: pointer; transition: var(--transition); display: inline-flex; align-items: center; justify-content: center; }
.btn-cart-remove:hover { background: #dc2626; color: #fff; }

.cart-clear-form { margin-bottom: 20px; }
.btn-outline-danger { background: transparent; color: #dc2626; border: 2px solid #fecaca; padding: 8px 16px; border-radius: 8px; font-weight: 600; font-size: .9rem; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); font-family: var(--font-body); }
.btn-outline-danger:hover { background: #fee2e2; border-color: #dc2626; }

.past-orders-list { display: flex; flex-direction: column; gap: 16px; }
.past-order-item { border: 1px solid var(--gray-300); border-radius: var(--radius-sm); padding: 18px; background: var(--gray-100); }
.past-order-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 8px; flex-wrap: wrap; }
.past-order-head span { font-size: .85rem; color: var(--gray-500); }
.past-order-desc { font-size: .9rem; color: var(--gray-700); margin-bottom: 12px; line-height: 1.5; }
.past-order-meta { display: flex; flex-wrap: wrap; gap: 12px 20px; font-size: .85rem; color: var(--gray-500); margin-bottom: 14px; align-items: center; }
.past-order-meta i { color: var(--primary); margin-right: 4px; }
.past-order-price { font-weight: 800; color: var(--primary); font-size: 1rem; margin-left: auto; }
.past-order-action { margin: 0; }
.cart-past-orders { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--gray-300); }
.cart-past-orders-hint { font-size: .85rem; color: var(--gray-500); margin: -8px 0 16px; }
.btn-secondary { background: var(--secondary); color: var(--white); }
.btn-secondary:hover { background: var(--secondary-light); opacity: 1; text-decoration: none; color: var(--white); }
.btn-sm { padding: 8px 16px; font-size: .85rem; }
.text-muted { color: var(--gray-500); }
.alert-box { padding: 16px; border-radius: var(--radius-sm); margin-bottom: 16px; }
.alert-box.info { background: #dbeafe; color: #1e40af; }
.alert-box.error { background: #fee2e2; color: #991b1b; }
.alert-box.success { background: #dcfce7; color: #166534; }
.iban-box { background: var(--gray-50); padding: 20px; border-radius: var(--radius-sm); margin-bottom: 16px; border: 1px solid var(--gray-300); }
.iban-box h4 { margin-bottom: 10px; color: var(--secondary); }
.iban-text { font-family: monospace; font-size: 1.05rem; }
.btn-copy { padding: 4px 12px; margin-left: 8px; border-radius: 6px; border: 1px solid var(--gray-300); background: #fff; cursor: pointer; font-size: 13px; }
.btn-outline-dark { background: transparent; color: var(--secondary); border: 2px solid var(--secondary); padding: 12px 24px; border-radius: 50px; font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }

.page-hero { padding: 120px 0 40px; background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%); color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(28px, 4vw, 42px); margin-top: 12px; }
.breadcrumb { font-size: 14px; color: rgba(255,255,255,.75); display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a { color: #ffb98a; }
.page-content { padding: 60px 0 80px; }
.page-body { max-width: 860px; margin: 0 auto; }
.page-body h2 { margin: 28px 0 12px; font-size: 1.5rem; }
.page-body p, .page-body li { margin-bottom: 14px; color: var(--gray-700); }
.page-body ul { padding-left: 24px; list-style: disc; }
.calc-page-section { padding-top: 40px; }

.calc-seo-content { padding: 50px 0 90px; background: #fff; }
.calc-seo-content h2 { font-size: 1.35rem; color: var(--secondary); margin: 28px 0 12px; }
.calc-seo-content h2:first-child { margin-top: 0; }
.calc-seo-content p { color: var(--gray-600); line-height: 1.8; margin-bottom: 16px; }
.calc-seo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin: 28px 0 8px; }
.calc-seo-card { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; }
.calc-seo-card i { font-size: 1.6rem; color: var(--primary); margin-bottom: 12px; }
.calc-seo-card h3 { font-size: 1.05rem; color: var(--secondary); margin-bottom: 8px; }
.calc-seo-card p { font-size: .92rem; margin: 0; }
.page-cta { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }

.blog-section { padding: 60px 0 90px; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-image { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--gray-100); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--secondary), var(--primary)); color: #fff; font-size: 48px; }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-body time { font-size: .8rem; color: var(--gray-500); margin-bottom: 8px; }
.blog-card-body h2 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.35; }
.blog-card-body h2 a { color: var(--secondary); }
.blog-card-body h2 a:hover { color: var(--primary); }
.blog-card-body p { font-size: .9rem; color: var(--gray-600); margin-bottom: 14px; flex: 1; }
.blog-read-more { font-weight: 700; font-size: .9rem; color: var(--primary); }
.blog-empty { text-align: center; padding: 60px 20px; }

.page-hero-desc { color: rgba(255,255,255,.85); margin-top: 8px; }
.page-hero-compact { padding: 100px 0 40px; }
.blog-meta { color: rgba(255,255,255,.75); font-size: .9rem; margin-top: 8px; }
.blog-featured-image { margin-bottom: 28px; border-radius: var(--radius); overflow: hidden; }
.blog-featured-image img { width: 100%; max-height: 420px; object-fit: cover; }
.blog-lead { font-size: 1.15rem; color: var(--gray-600); margin-bottom: 24px; line-height: 1.7; font-weight: 500; }
.blog-content { line-height: 1.8; color: var(--gray-700); }
.blog-content h2, .blog-content h3 { margin: 28px 0 12px; color: var(--secondary); }
.blog-content img { max-width: 100%; height: auto; border-radius: var(--radius-sm); margin: 16px 0; }

.blog-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 40px 0 0; padding-top: 28px; border-top: 1px solid var(--gray-300); }
.blog-nav-link { display: block; padding: 16px; border: 1px solid var(--gray-300); border-radius: var(--radius-sm); transition: var(--transition); }
.blog-nav-link:hover { border-color: var(--primary); background: var(--primary-light); text-decoration: none; }
.blog-nav-link small { display: block; font-size: .75rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.blog-nav-link span { font-weight: 700; color: var(--secondary); font-size: .95rem; }
.blog-nav-next { text-align: right; }

.footer-blog-links { list-style: none; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-blog-links li { margin-bottom: 8px; }
.footer-blog-links a { font-size: 13px; color: rgba(255,255,255,.75); line-height: 1.4; display: block; }
.footer-blog-links a:hover { color: var(--primary); }

.footer-legal { display: flex; flex-wrap: wrap; gap: 12px 20px; justify-content: center; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); margin-top: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,.65); }
.footer-legal a:hover { color: var(--primary); }

.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998; background: var(--secondary); color: #fff; padding: 16px 20px; box-shadow: 0 -8px 30px rgba(0,0,0,.2); }
.cookie-inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cookie-inner p { margin: 0; font-size: 14px; max-width: 720px; }
.cookie-inner a { color: #ffb98a; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions .btn-outline-dark { color: #fff; border-color: rgba(255,255,255,.4); font-size: 13px; padding: 8px 16px; }

@media (max-width: 768px) {
    .cookie-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .topbar-left span:not(:first-child) { display: none; }
    .hero-buttons .btn { padding: 12px 20px; font-size: 14px; }
    .services-grid, .gallery-grid { grid-template-columns: 1fr; }
}