/* ============================================================
   MÖBELKLAR.SE — Premium Furniture Assembly Stockholm
   Color palette: dark brown / warm wood / beige
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --brown:        #5A3E2B;
  --brown-dark:   #3D2A1C;
  --brown-light:  #7A5540;
  --wood:         #C89F65;
  --wood-light:   #D9B882;
  --beige:        #F6F1EB;
  --beige-dark:   #EDE5D8;
  --white:        #FFFFFF;
  --text:         #3D2A1C;
  --text-muted:   #7A6557;
  --shadow-sm:    0 2px 12px rgba(90,62,43,0.10);
  --shadow-md:    0 6px 28px rgba(90,62,43,0.16);
  --shadow-lg:    0 16px 56px rgba(90,62,43,0.20);
  --radius:       10px;
  --radius-lg:    18px;
  --t:            0.3s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brown); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--wood); }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; color: var(--brown-dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; line-height: 1.75; color: var(--text-muted); }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: 0.75rem;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-white p { color: rgba(255,255,255,0.80) !important; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--wood);
  color: var(--white);
  border-color: var(--wood);
  box-shadow: 0 4px 20px rgba(200,159,101,0.35);
}
.btn-primary:hover {
  background: var(--wood-light);
  border-color: var(--wood-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,159,101,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-dark {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}
.btn-dark:hover {
  background: var(--brown-dark);
  border-color: var(--brown-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-phone {
  background: #e8f5e9;
  color: #2e7d32;
  border-color: #c8e6c9;
  font-size: 1rem;
  font-weight: 700;
}
.btn-phone:hover {
  background: #2e7d32;
  color: var(--white);
  border-color: #2e7d32;
}
.btn-phone svg { flex-shrink: 0; }

/* ============================================================
   TOP BAR
   ============================================================ */

.topbar {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.80);
  font-size: 0.82rem;
  padding: 0.45rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar a { color: var(--wood-light); font-weight: 600; }
.topbar a:hover { color: var(--white); }
.topbar-items { display: flex; gap: 1.5rem; align-items: center; }
.topbar-item { display: flex; align-items: center; gap: 0.35rem; }

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brown-dark);
  text-decoration: none;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--brown);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { color: var(--white); }
.logo span { color: var(--wood); }

.nav-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.nav-links a {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  transition: all var(--t);
}
.nav-links a:hover { color: var(--brown); background: var(--beige); }

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all var(--t);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--beige-dark);
  padding: 1.25rem 1.5rem 1.5rem;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.7rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--beige-dark);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .mobile-cta {
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-top: 1.25rem;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 55%, var(--brown-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(200,159,101,0.18) 0%, transparent 70%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C89F65' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,159,101,0.18);
  border: 1px solid rgba(200,159,101,0.35);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--wood-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 { color: var(--white); margin-bottom: 0.9rem; }
.hero h1 em { color: var(--wood); font-style: normal; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.70);
  font-size: 0.88rem;
}
.trust-item svg { color: var(--wood); flex-shrink: 0; }

.hero-image-wrap {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 46%;
  overflow: hidden;
}
.hero-image-wrap::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 140px;
  background: linear-gradient(to right, var(--brown) 0%, transparent 100%);
  z-index: 1;
}
.hero-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}

/* Floating CTA phone */
.hero-phone-float {
  position: absolute;
  bottom: 2.5rem; right: 2rem;
  z-index: 10;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: floatUp 0.6s ease 0.4s both;
}
.hero-phone-float .phone-icon {
  width: 42px; height: 42px;
  background: var(--wood);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-phone-float .phone-icon svg { color: var(--white); }
.hero-phone-float .phone-label { font-size: 0.75rem; color: var(--text-muted); }
.hero-phone-float .phone-number {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1.2;
}
.hero-phone-float a { text-decoration: none; }

@keyframes floatUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */

.stats-strip {
  background: var(--brown-dark);
  padding: 0;
}
.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center;
  padding: 1.75rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--wood);
  line-height: 1;
}
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.60); margin-top: 0.35rem; }

/* ============================================================
   TRUST BADGES
   ============================================================ */

.trust-bar {
  background: var(--beige);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--beige-dark);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--brown);
}
.trust-badge svg { color: var(--wood); flex-shrink: 0; }

/* ============================================================
   FÖRDELAR (Benefits)
   ============================================================ */

.benefits { background: var(--white); }
.section-header { margin-bottom: 3rem; }
.section-header p { max-width: 560px; margin: 0.75rem auto 0; }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.benefit-card {
  background: var(--beige);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t);
}
.benefit-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(to right, var(--wood), var(--wood-light));
  opacity: 0;
  transition: opacity var(--t);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-card:hover::before { opacity: 1; }
.benefit-icon {
  width: 52px; height: 52px;
  background: var(--brown);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.benefit-icon svg { color: var(--wood); }
.benefit-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--brown-dark); }
.benefit-card p { font-size: 0.92rem; }

/* ============================================================
   TJÄNSTER (Services)
   ============================================================ */

.services { background: var(--beige); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.service-img {
  width: 100%; height: 160px;
  background: linear-gradient(135deg, var(--beige-dark) 0%, var(--beige) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--beige-dark);
}
.service-img svg { opacity: 0.18; width: 72px; height: 72px; color: var(--brown); }
.service-img img { width: 100%; height: 100%; object-fit: cover; }
.service-body { padding: 1.5rem; }
.service-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--brown-dark); }
.service-body p { font-size: 0.9rem; line-height: 1.65; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1rem; }
.service-tag {
  background: var(--beige);
  color: var(--brown);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  border: 1px solid var(--beige-dark);
}

/* ============================================================
   HUR DET FUNGERAR (How it works)
   ============================================================ */

.how-it-works { background: var(--white); }
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
}
.steps-wrap::before {
  content: '';
  position: absolute;
  top: 28px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--wood), var(--beige-dark));
}
.step {
  text-align: center;
  position: relative;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--brown);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--beige-dark);
}
.step h4 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--brown-dark); }
.step p { font-size: 0.88rem; }

/* ============================================================
   PRIS (Pricing)
   ============================================================ */

.pricing { background: var(--beige); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t), box-shadow var(--t);
  border: 2px solid transparent;
  position: relative;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured {
  border-color: var(--wood);
  box-shadow: var(--shadow-md);
}
.price-badge {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--wood);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}
.price-icon {
  width: 56px; height: 56px;
  background: var(--beige);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.price-icon svg { color: var(--brown); }
.price-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.1;
  margin: 0.75rem 0;
}
.price-amount span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.price-list { text-align: left; margin: 1.25rem 0; }
.price-list li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.88rem; color: var(--text-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--beige-dark);
}
.price-list li:last-child { border-bottom: none; }
.price-list li svg { color: var(--wood); flex-shrink: 0; margin-top: 3px; }
.price-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 1rem; }

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--brown-dark), var(--brown));
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(200,159,101,0.15) 0%, transparent 70%);
}
.cta-banner .container { position: relative; }
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   REVIEWS
   ============================================================ */

.reviews { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--beige);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  position: relative;
}
.review-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--wood);
  opacity: 0.25;
  position: absolute;
  top: 0.5rem; left: 1.25rem;
  line-height: 1;
}
.stars { display: flex; gap: 0.2rem; margin-bottom: 0.75rem; }
.stars svg { color: #f59e0b; }
.review-text { font-size: 0.93rem; line-height: 1.7; margin-bottom: 1.25rem; }
.reviewer {
  display: flex; align-items: center; gap: 0.75rem;
}
.reviewer-avatar {
  width: 40px; height: 40px;
  background: var(--brown);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--wood);
  flex-shrink: 0;
}
.reviewer-name { font-size: 0.9rem; font-weight: 600; color: var(--brown-dark); }
.reviewer-date { font-size: 0.78rem; color: var(--text-muted); }

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.rating-big {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}
.rating-detail .stars { margin-bottom: 0.3rem; }
.rating-detail span { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================================
   FAQ
   ============================================================ */

.faq { background: var(--beige); }
.faq-list { max-width: 800px; margin: 3rem auto 0; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  color: var(--brown-dark);
  background: none; border: none; cursor: pointer;
  transition: color var(--t);
}
.faq-question:hover { color: var(--brown); }
.faq-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--beige);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t);
}
.faq-item.open .faq-icon {
  background: var(--wood);
  transform: rotate(45deg);
}
.faq-icon svg { color: var(--brown); }
.faq-item.open .faq-icon svg { color: var(--white); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   CONTACT
   ============================================================ */

.contact { background: var(--white); }
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 0.85rem;
  font-size: 0.95rem;
}
.contact-detail .cd-icon {
  width: 40px; height: 40px;
  background: var(--beige);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail .cd-icon svg { color: var(--wood); }
.contact-detail strong { display: block; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.15rem; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-detail a { color: var(--brown-dark); font-weight: 600; font-size: 1.05rem; }
.contact-detail a:hover { color: var(--wood); }

.contact-form {
  background: var(--beige);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}
.form-title { font-size: 1.3rem; margin-bottom: 1.5rem; color: var(--brown-dark); font-family: var(--font-display); font-weight: 600; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.85rem; font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--t), box-shadow var(--t);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--wood);
  box-shadow: 0 0 0 3px rgba(200,159,101,0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.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='%235A3E2B' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; }
.form-note { font-size: 0.78rem; color: var(--text-muted); text-align: center; margin-top: 0.75rem; }
.form-error {
  display: none;
  background: #fdecea;
  color: #c62828;
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  border: 1px solid #ffcdd2;
}
.form-success {
  display: none;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  font-weight: 500;
  margin-top: 1rem;
  text-align: center;
}

/* ============================================================
   AREAS
   ============================================================ */

.areas { background: var(--beige); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}
.area-tag {
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: var(--radius);
  padding: 0.65rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown);
  transition: all var(--t);
}
.area-tag:hover { background: var(--brown); color: var(--white); border-color: var(--brown); }

/* ============================================================
   OM OSS
   ============================================================ */

.about { background: var(--white); }
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--beige-dark);
  min-height: 260px;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  box-shadow: var(--shadow-md);
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--brown);
  line-height: 1.1;
}
.about-img-badge span { display: block; font-family: var(--font-body); font-size: 0.78rem; font-weight: 500; color: var(--text-muted); }
.about-content h2 { margin-bottom: 1rem; }
.about-content p { margin-bottom: 1.25rem; }
.about-list { margin: 1.5rem 0 2rem; }
.about-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.93rem; padding: 0.5rem 0;
  border-bottom: 1px solid var(--beige-dark);
}
.about-list li:last-child { border-bottom: none; }
.about-list li svg { color: var(--wood); flex-shrink: 0; margin-top: 3px; }

/* ============================================================
   PARTNERS
   ============================================================ */

.partners { background: var(--beige); padding: 60px 0; }
.partners-label {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2rem;
}
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.partner-logo {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--brown);
  border: 1px solid var(--beige-dark);
  transition: all var(--t);
  letter-spacing: -0.01em;
}
.partner-logo:hover { border-color: var(--wood); color: var(--wood); background: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,0.70);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-logo span { color: var(--wood); }
.footer p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-contact a { color: var(--wood-light); font-weight: 600; }
.footer-contact a:hover { color: var(--white); }
.footer h4 { color: var(--white); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.25rem; font-family: var(--font-body); }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.60); font-size: 0.9rem; transition: color var(--t); }
.footer-links a:hover { color: var(--wood-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.40);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.50); }
.footer-bottom a:hover { color: var(--wood-light); }

/* ============================================================
   STICKY PHONE (mobile)
   ============================================================ */

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--white);
  padding: 0.85rem 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  gap: 0.75rem;
}
.sticky-cta a { flex: 1; text-align: center; justify-content: center; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .benefits-grid,
  .services-grid,
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-wrap { grid-template-columns: repeat(2, 1fr); }
  .steps-wrap::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-image-wrap { width: 38%; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  h1 { font-size: clamp(1.9rem, 7vw, 2.5rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 2rem); }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: auto; padding: 90px 0 100px; }
  .hero-image-wrap { display: none; }
  .hero-phone-float { display: none; }

  .stats-strip .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  .benefits-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .about-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .about-img { max-height: 280px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  .topbar { display: none; }
  .trust-bar .container { gap: 1rem; }

  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .partners-logos { gap: 1rem; }
  .trust-bar .container { flex-direction: column; gap: 0.75rem; }
}
