@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

/* ===== VARIABLES ===== */
:root {
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --bg-warm: #FFF8F0;
  --bg-gray: #F7F7F7;
  --primary: #FF385C;
  --primary-dark: #E31C5F;
  --primary-light: #FF5A7E;
  --secondary: #00A699;
  --text: #222222;
  --text-secondary: #717171;
  --text-light: #B0B0B0;
  --border: #DDDDDD;
  --border-light: #EBEBEB;
  --gold: #FFB400;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 6px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
  --header-h: 72px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; font-size: 16px; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; border: none; outline: none; }
button { cursor: pointer; }

/* ===== UTILITIES ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-warm { background: var(--bg-warm); }
.section-gray { background: var(--bg-gray); }
.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: 'Nunito', -apple-system, sans-serif; color: var(--text); line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-weight: 800; font-size: clamp(36px, 5vw, 64px); }
h2 { font-weight: 800; font-size: clamp(28px, 4vw, 44px); }
h3 { font-weight: 700; font-size: clamp(22px, 3vw, 28px); }
h4 { font-weight: 700; font-size: 20px; }
.section-header { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { font-size: 18px; color: var(--text-secondary); max-width: 560px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }
.overline { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 12px; display: block; }
.lead { font-size: 20px; color: var(--text-secondary); line-height: 1.6; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 24px; border-radius: var(--radius-md); font-weight: 700; font-size: 16px; transition: all var(--transition); border: 2px solid transparent; white-space: nowrap; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: var(--white); color: var(--text); border-color: var(--border); }
.btn-secondary:hover { border-color: var(--text); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-lg { padding: 18px 32px; font-size: 18px; border-radius: var(--radius-lg); }
.btn-block { width: 100%; }
.btn-icon { width: 48px; height: 48px; padding: 0; border-radius: 50%; }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-light); transition: box-shadow var(--transition); height: var(--header-h); }
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.logo { font-family: 'Nunito', sans-serif; font-size: 24px; font-weight: 800; color: var(--primary); display: flex; align-items: center; gap: 6px; }
.logo span { font-size: 28px; }
.nav { display: flex; align-items: center; gap: 8px; }
.nav a { font-size: 15px; font-weight: 500; color: var(--text-secondary); padding: 8px 14px; border-radius: var(--radius-sm); transition: all var(--transition); }
.nav a:hover { color: var(--text); background: var(--bg-gray); }
.nav a.active { color: var(--text); font-weight: 600; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; z-index: 1001; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--white); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 24px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Nunito', sans-serif; font-size: 24px; font-weight: 700; color: var(--text); padding: 12px 24px; border-radius: var(--radius-md); transition: all var(--transition); }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--primary); background: var(--bg-warm); }

/* ===== HERO (Homepage) ===== */
.hero { position: relative; min-height: 85vh; display: flex; align-items: center; overflow: hidden; margin-top: var(--header-h); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.45) 100%); }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 680px; }
.hero-content h1 { color: var(--white); margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0,0,0,0.2); }
.hero-content p { font-size: 20px; opacity: 0.9; margin-bottom: 32px; text-shadow: 0 1px 10px rgba(0,0,0,0.15); }
.hero-search { display: flex; gap: 0; background: var(--white); border-radius: 50px; padding: 6px; box-shadow: var(--shadow-xl); max-width: 520px; }
.hero-search input { flex: 1; padding: 14px 24px; border: none; background: none; font-size: 16px; color: var(--text); border-radius: 50px; min-width: 0; }
.hero-search input::placeholder { color: var(--text-light); }
.hero-search .btn { border-radius: 50px; padding: 14px 28px; }
.hero-badges { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.hero-badge { background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); padding: 8px 16px; border-radius: 50px; font-size: 14px; font-weight: 600; border: 1px solid rgba(255,255,255,0.2); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero { padding: 120px 0 56px; margin-top: var(--header-h); background: var(--bg-warm); }
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { font-size: 18px; color: var(--text-secondary); max-width: 560px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--text-light); }

/* ===== CARDS ===== */
.card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; transition: all var(--transition); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.card-body { padding: 20px; }
.card-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.card-text { font-size: 15px; color: var(--text-secondary); line-height: 1.5; }
.card-badge { display: inline-flex; align-items: center; gap: 4px; background: var(--bg-warm); color: var(--primary); padding: 6px 12px; border-radius: 50px; font-size: 13px; font-weight: 700; }
.card-horizontal { display: grid; grid-template-columns: 200px 1fr; }
.card-horizontal .card-img { aspect-ratio: auto; height: 100%; }

/* ===== EVENT CARDS (horizontal scroll) ===== */
.scroll-row { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 8px 0 24px; scrollbar-width: none; }
.scroll-row::-webkit-scrollbar { display: none; }
.event-card { min-width: 280px; scroll-snap-align: start; flex-shrink: 0; border-radius: var(--radius-xl); overflow: hidden; position: relative; cursor: pointer; transition: all var(--transition); }
.event-card:hover { transform: scale(1.02); }
.event-card img { width: 100%; height: 360px; object-fit: cover; transition: transform 0.6s ease; }
.event-card:hover img { transform: scale(1.05); }
.event-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; color: var(--white); }
.event-card-overlay h3 { color: var(--white); font-size: 22px; margin-bottom: 4px; }
.event-card-overlay p { font-size: 14px; opacity: 0.85; }

/* ===== ICON CARD ===== */
.icon-card { text-align: center; padding: 40px 32px; border-radius: var(--radius-xl); background: var(--white); border: 1px solid var(--border-light); transition: all var(--transition); }
.icon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.icon-card-icon { width: 64px; height: 64px; border-radius: var(--radius-lg); background: var(--bg-warm); display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 20px; }
.icon-card h4 { margin-bottom: 8px; }
.icon-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

/* ===== REVIEWS ===== */
.review-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 28px; transition: all var(--transition); }
.review-card:hover { box-shadow: var(--shadow-md); }
.review-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.review-star { color: var(--gold); font-size: 16px; }
.review-text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--white); font-size: 16px; flex-shrink: 0; }
.review-name { font-weight: 600; font-size: 15px; }
.review-date { font-size: 13px; color: var(--text-secondary); }

/* ===== STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; counter-reset: step; }
.step { text-align: center; position: relative; }
.step::before { counter-increment: step; content: counter(step); font-family: 'Nunito', sans-serif; font-size: 72px; font-weight: 800; color: var(--bg-warm); line-height: 1; display: block; margin-bottom: 16px; }
.step h4 { margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--text-secondary); }

/* ===== CTA BANNER ===== */
.cta-banner { position: relative; border-radius: var(--radius-xl); overflow: hidden; min-height: 400px; display: flex; align-items: center; }
.cta-banner-bg { position: absolute; inset: 0; }
.cta-banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.2)); }
.cta-banner-content { position: relative; z-index: 2; padding: 60px; color: var(--white); max-width: 520px; }
.cta-banner-content h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner-content p { font-size: 18px; opacity: 0.9; margin-bottom: 28px; }

/* ===== PRODUCT (Catalog) ===== */
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.product-gallery { position: relative; }
.product-gallery-main { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-xl); }
.product-gallery-thumbs { display: flex; gap: 12px; margin-top: 12px; }
.product-gallery-thumb { width: 80px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); border: 2px solid transparent; cursor: pointer; opacity: 0.6; transition: all var(--transition); }
.product-gallery-thumb:hover, .product-gallery-thumb.active { opacity: 1; border-color: var(--primary); }
.product-info { position: sticky; top: calc(var(--header-h) + 24px); }
.product-price { font-family: 'Nunito', sans-serif; font-size: 32px; font-weight: 800; color: var(--text); margin: 16px 0; }
.product-price small { font-size: 16px; font-weight: 500; color: var(--text-secondary); }
.spec-list { list-style: none; }
.spec-list li { display: flex; align-items: center; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border-light); font-size: 15px; }
.spec-list li:last-child { border-bottom: none; }
.spec-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--bg-warm); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.spec-label { color: var(--text-secondary); }
.spec-value { margin-left: auto; font-weight: 600; }

/* ===== CALCULATOR ===== */
.calc-card { background: var(--white); border-radius: var(--radius-xl); padding: 48px; box-shadow: var(--shadow-lg); border: 1px solid var(--border-light); }
.calc-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 3px; background: var(--border); outline: none; margin: 24px 0; }
.calc-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 28px; height: 28px; border-radius: 50%; background: var(--primary); box-shadow: 0 2px 8px rgba(255,56,92,0.3); cursor: pointer; transition: transform 0.2s; }
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-slider::-moz-range-thumb { width: 28px; height: 28px; border-radius: 50%; background: var(--primary); border: none; cursor: pointer; }
.calc-toggles { display: flex; gap: 12px; margin: 20px 0; }
.calc-toggle { flex: 1; padding: 14px; border: 2px solid var(--border); border-radius: var(--radius-md); font-weight: 600; background: var(--white); color: var(--text); text-align: center; transition: all var(--transition); cursor: pointer; }
.calc-toggle.active { border-color: var(--primary); color: var(--primary); background: rgba(255,56,92,0.04); }
.calc-toggle:hover:not(.active) { border-color: var(--text); }
.calc-result { text-align: center; padding: 32px; background: var(--bg-warm); border-radius: var(--radius-lg); margin: 24px 0; }
.calc-result-num { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 56px; color: var(--primary); line-height: 1; display: block; }
.calc-result-label { font-size: 18px; color: var(--text-secondary); margin-top: 4px; }
.comparison-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.comparison-table th, .comparison-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--border-light); }
.comparison-table th { font-weight: 600; font-size: 14px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.05em; }
.comparison-table td { font-size: 15px; }
.comparison-table tr:hover td { background: var(--bg-warm); }

/* ===== GALLERY ===== */
.gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.gallery-filter { padding: 10px 20px; border-radius: 50px; border: 1px solid var(--border); font-size: 14px; font-weight: 600; background: var(--white); color: var(--text-secondary); cursor: pointer; transition: all var(--transition); }
.gallery-filter:hover { border-color: var(--text); color: var(--text); }
.gallery-filter.active { background: var(--text); color: var(--white); border-color: var(--text); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); transition: background var(--transition); display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.3); }
.gallery-item-overlay svg { width: 40px; height: 40px; fill: var(--white); opacity: 0; transition: opacity var(--transition); }
.gallery-item:hover .gallery-item-overlay svg { opacity: 1; }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 10000; display: none; align-items: center; justify-content: center; padding: 40px; cursor: pointer; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-lg); object-fit: contain; }
.lightbox-close { position: absolute; top: 20px; right: 24px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.1); border: none; color: var(--white); font-size: 28px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background var(--transition); }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:first-child { border-top: 1px solid var(--border-light); }
.faq-question { width: 100%; padding: 20px 0; background: none; border: none; text-align: left; font-size: 17px; font-weight: 600; color: var(--text); display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; transition: color var(--transition); }
.faq-question:hover { color: var(--primary); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; transition: all var(--transition); color: var(--text-secondary); }
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--primary); color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 20px; font-size: 15px; color: var(--text-secondary); line-height: 1.8; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.form-input, .form-select, .form-textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--radius-md); font-size: 16px; color: var(--text); background: var(--white); transition: all var(--transition); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--text); box-shadow: 0 0 0 2px rgba(34,34,34,0.08); }
.form-input.error { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(255,56,92,0.08); }
.form-input::placeholder { color: var(--text-light); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }
.form-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow-md); }
.form-success { display: none; text-align: center; padding: 40px; }
.form-success.show { display: block; }
.form-success-icon { font-size: 56px; margin-bottom: 16px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--text-secondary); }
.form-fields.hidden { display: none; }

/* ===== CONTACT INFO ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-item { display: flex; gap: 16px; padding: 24px; border-radius: var(--radius-lg); border: 1px solid var(--border-light); transition: all var(--transition); }
.contact-item:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.contact-icon { width: 48px; height: 48px; border-radius: var(--radius-md); background: var(--bg-warm); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.contact-label { font-size: 13px; color: var(--text-secondary); margin-bottom: 2px; }
.contact-value { font-weight: 600; font-size: 17px; }

/* ===== MAP ===== */
.map-container { width: 100%; height: 400px; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border-light); background: var(--bg-gray); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); font-size: 18px; }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat { text-align: center; }
.stat-num { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 48px; color: var(--primary); line-height: 1; }
.stat-label { font-size: 15px; color: var(--text-secondary); margin-top: 4px; }

/* ===== DELIVERY ===== */
.delivery-card { display: flex; gap: 20px; padding: 24px; background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); transition: all var(--transition); }
.delivery-card:hover { box-shadow: var(--shadow-md); }
.delivery-icon { width: 56px; height: 56px; border-radius: var(--radius-md); background: var(--bg-warm); display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer { background: var(--text); color: var(--white); padding: 64px 0 0; margin-top: 96px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { font-family: 'Nunito', sans-serif; font-size: 24px; font-weight: 800; color: var(--white); margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; }
.footer h5 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; color: rgba(255,255,255,0.4); }
.footer-links a { display: block; padding: 6px 0; font-size: 15px; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; margin-top: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.footer-social a:hover { background: var(--primary); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; fill: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.4); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { min-height: 70vh; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section { padding: 64px 0; }
  .nav { display: none; }
  .header-actions .btn { display: none; }
  .hamburger { display: flex; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-content h1 { font-size: 36px; }
  .hero-search { flex-direction: column; border-radius: var(--radius-lg); }
  .hero-search input { border-bottom: 1px solid var(--border-light); border-radius: 0; }
  .hero-search .btn { border-radius: var(--radius-md); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: auto; aspect-ratio: 4/3; }
  .event-card { min-width: 260px; }
  .event-card img { height: 280px; }
  .icon-card { padding: 28px 20px; }
  .calc-card { padding: 28px; }
  .form-card { padding: 28px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-num { font-size: 36px; }
  .hero-badges { flex-direction: column; }
}

/* ===== ABOUT PAGE SPECIFICS ===== */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.story-text h2 {
  margin-bottom: 16px;
}
.story-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/2;
}
.delivery-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.cta-content h2 {
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .story-image {
    order: -1;
  }
}
