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

:root {
  --green: #2C4A2E;
  --green-light: #3D6B40;
  --green-dark: #1B2E1C;
  --terra: #B8694A;
  --terra-light: #D4885F;
  --cherry: #6B2D3E;
  --cherry-light: #8A3B50;
  --cherry-dark: #4E1F2D;
  --stone: #C8B898;
  --stone-light: #E8DFD0;
  --stone-lighter: #F5F1EB;
  --cream: #FAF8F5;
  --dark: #1A1A1A;
  --text: #3A3A3A;
  --text-muted: #7A7A7A;
  --white: #FFFFFF;
  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'Nunito Sans', 'Segoe UI', sans-serif;
  --max-w: 1200px;
  --head-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--text); background: var(--cream); line-height: 1.75; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-h); font-weight: 600; line-height: 1.15; color: var(--dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { margin-bottom: 1rem; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--stone { background: var(--stone-lighter); }
.section--dark { background: var(--green-dark); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 12px;
}
.section-head { margin-bottom: 48px; text-align: center; }
.section-head p { max-width: 600px; margin: 12px auto 0; color: var(--text-muted); font-size: 1rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 34px;
  font-family: var(--font-b); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  border: none; border-radius: 3px; cursor: pointer;
  transition: all 0.3s;
}
.btn--primary { background: var(--terra); color: var(--white); }
.btn--primary:hover { background: var(--terra-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,105,74,0.25); }
.btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn--outline:hover { background: var(--white); color: var(--green); border-color: var(--white); }
.btn--dark { background: var(--green); color: var(--white); }
.btn--dark:hover { background: var(--green-light); }

/* --- Header --- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  height: var(--head-h); transition: all 0.3s;
}
.header--scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo__mark {
  width: 42px; height: 42px; background: var(--green); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-h); font-weight: 700; font-size: 1.1rem;
}
.logo__text { font-family: var(--font-h); font-size: 1.3rem; font-weight: 600; }
.logo__text small {
  display: block; font-family: var(--font-b); font-size: 0.6rem;
  font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted); margin-top: -2px;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-size: 0.82rem; font-weight: 600; color: var(--text); transition: color 0.2s; position: relative; }
.nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--terra); transition: width 0.3s; }
.nav a:hover { color: var(--green); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header__phone { font-weight: 700; font-size: 0.9rem; color: var(--green); display: flex; align-items: center; gap: 6px; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--dark); transition: all 0.3s; }
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-nav { display: none; position: fixed; top: var(--head-h); left: 0; right: 0; bottom: 0; background: var(--white); z-index: 999; padding: 24px; flex-direction: column; overflow-y: auto; }
.mobile-nav.active { display: flex; }
.mobile-nav a { display: block; padding: 14px 0; font-size: 1rem; font-weight: 500; border-bottom: 1px solid var(--stone-light); }

/* ========================= */
/*  WARM HERO (standard)     */
/* ========================= */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  padding-top: var(--head-h); overflow: hidden;
  background: linear-gradient(145deg, var(--green-dark) 0%, var(--green) 50%, #3D6B40 100%);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='40' cy='40' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 380px; gap: 60px; align-items: center;
  width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 60px 24px;
}
.hero__content { color: var(--white); }
.hero__badge {
  display: inline-block; padding: 6px 18px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px;
  color: var(--stone-light);
}
.hero__title { color: var(--white); margin-bottom: 20px; }
.hero__title em { font-style: italic; color: var(--terra-light); }
.hero__desc { font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.8); margin-bottom: 32px; max-width: 520px; }
.hero__buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 40px; margin-top: 48px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.12); }
.hero__stat-num { font-family: var(--font-h); font-size: 2.6rem; font-weight: 700; color: var(--white); line-height: 1; }
.hero__stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); margin-top: 4px; letter-spacing: 0.5px; }

/* ========================= */
/*  PREMIUM HERO (fullscreen) */
/* ========================= */
.hero--premium {
  min-height: 100vh;
  background: var(--dark);
  text-align: center;
}
.hero--premium .hero__inner {
  grid-template-columns: 1fr;
  max-width: 900px;
  padding: 80px 24px;
}
.hero--premium .hero__title {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  letter-spacing: -0.5px;
}
.hero--premium .hero__desc {
  font-size: 1.15rem;
  max-width: 620px;
  margin: 0 auto 36px;
}
.hero--premium .hero__buttons { justify-content: center; }
.hero--premium .hero__stats { justify-content: center; }

/* --- Hero Form --- */
.hero-form {
  background: var(--white); border-radius: 6px;
  padding: 32px 28px; box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.hero-form__title { font-family: var(--font-h); font-size: 1.4rem; font-weight: 600; margin-bottom: 4px; }
.hero-form__sub { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--stone); border-radius: 3px;
  font-family: var(--font-b); font-size: 0.88rem; color: var(--text);
  background: var(--cream); transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 70px; }
.hero-form .btn { width: 100%; justify-content: center; }
.form-note { font-size: 0.7rem; color: var(--text-muted); text-align: center; margin-top: 10px; }

/* --- Service Cards --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.svc-card {
  background: var(--white); border-radius: 6px;
  padding: 32px 24px; border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--terra); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.07); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card__icon {
  width: 52px; height: 52px; background: var(--stone-lighter); border-radius: 4px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--green);
}
.svc-card__title { font-family: var(--font-h); font-size: 1.3rem; margin-bottom: 10px; }
.svc-card__desc { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 16px; line-height: 1.7; }
.svc-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 700; color: var(--terra); transition: gap 0.2s;
}
.svc-card__link:hover { gap: 10px; }

/* --- Founder Block --- */
.founder {
  display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center;
  background: var(--white); border-radius: 6px; padding: 32px; border-left: 4px solid var(--terra);
}
.founder__avatar {
  width: 80px; height: 80px; border-radius: 50%; background: var(--stone-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 700; color: var(--green);
}
.founder__quote { font-family: var(--font-h); font-size: 1.15rem; font-style: italic; margin-bottom: 8px; line-height: 1.5; }
.founder__name { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* --- Advantages --- */
.adv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.adv-item { text-align: center; padding: 20px 12px; }
.adv-item__num { font-family: var(--font-h); font-size: 2.8rem; font-weight: 700; color: var(--terra); line-height: 1; margin-bottom: 12px; }
.adv-item__title { font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.adv-item__desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }

/* --- Process Steps --- */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; counter-reset: step; }
.step { position: relative; padding: 28px 20px; text-align: center; counter-increment: step; }
.step::before {
  content: counter(step, decimal-leading-zero);
  display: block; font-family: var(--font-h); font-size: 3.2rem; font-weight: 700;
  color: var(--stone-light); line-height: 1; margin-bottom: 14px;
}
.step__title { font-weight: 700; font-size: 0.95rem; margin-bottom: 6px; }
.step__desc { font-size: 0.82rem; color: var(--text-muted); }

/* --- CTA Banner --- */
.cta {
  background: var(--green); border-radius: 6px;
  padding: 56px; display: flex; align-items: center; justify-content: space-between; gap: 32px;
  position: relative; overflow: hidden;
}
.cta::after { content: ''; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; background: rgba(255,255,255,0.04); border-radius: 50%; }
.cta__content { position: relative; z-index: 2; }
.cta__title { font-family: var(--font-h); font-size: 1.8rem; color: var(--white); margin-bottom: 6px; }
.cta__desc { color: rgba(255,255,255,0.7); }
.cta__actions { position: relative; z-index: 2; flex-shrink: 0; display: flex; gap: 12px; }

/* --- Premium Feature Block --- */
.premium-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,0.08); border-radius: 6px; overflow: hidden; }
.pf-item { background: var(--green-dark); padding: 40px 28px; text-align: center; }
.pf-item__icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.pf-item__title { font-family: var(--font-h); font-size: 1.2rem; color: var(--white); margin-bottom: 8px; }
.pf-item__desc { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* --- Premium Services List --- */
.premium-list { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.premium-list__item { display: flex; gap: 20px; align-items: flex-start; }
.premium-list__num {
  width: 48px; height: 48px; border-radius: 50%; background: var(--stone-lighter);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-family: var(--font-h); font-weight: 700; font-size: 1.1rem; color: var(--green);
}
.premium-list__title { font-weight: 700; margin-bottom: 4px; }
.premium-list__desc { font-size: 0.88rem; color: var(--text-muted); }

/* --- Footer --- */
.footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 56px 0 20px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 36px; margin-bottom: 36px; }
.footer__logo { font-family: var(--font-h); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.footer__desc { font-size: 0.82rem; max-width: 300px; line-height: 1.8; }
.footer h4 { color: var(--white); font-family: var(--font-b); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.footer__links a { display: block; padding: 5px 0; font-size: 0.82rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--white); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; text-align: center; font-size: 0.75rem; }

/* --- WhatsApp Float --- */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 54px; height: 54px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: white;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35); transition: all 0.3s;
}
.float-wa:hover { transform: scale(1.1); }

/* --- Animations --- */
.fade-in { opacity: 0; transform: translateY(24px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- FAQ Accordion --- */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--stone-light); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; cursor: pointer; font-weight: 600; font-size: 0.95rem; color: var(--dark); gap: 16px; }
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--terra); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 0 18px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; }
.faq-item.open .faq-a { max-height: 500px; }

/* --- Reviews --- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review { background: var(--white); border-radius: 6px; padding: 28px 24px; border: 1px solid rgba(0,0,0,0.04); }
.review__stars { color: var(--terra); font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
.review__text { font-size: 0.9rem; font-style: italic; color: var(--text); line-height: 1.8; margin-bottom: 14px; }
.review__author { font-size: 0.8rem; font-weight: 700; color: var(--text-muted); }

/* --- Messenger Buttons --- */
.msg-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.msg-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 3px; font-size: 0.82rem; font-weight: 700; transition: all 0.3s; }
.msg-btn--wa { background: #25D366; color: white; }
.msg-btn--wa:hover { background: #1da851; transform: translateY(-2px); }
.msg-btn--tg { background: #0088cc; color: white; }
.msg-btn--tg:hover { background: #006da3; transform: translateY(-2px); }

/* --- Cherry Premium Accent --- */
.hero--premium { background: linear-gradient(145deg, var(--cherry-dark) 0%, #1B2E1C 30%, var(--green-dark) 100%); }
.section--cherry { background: var(--cherry); color: var(--white); }
.section--cherry h2, .section--cherry h3 { color: var(--white); }
.section--cherry .section-label { color: var(--terra-light); }
.badge-premium { display: inline-block; background: var(--cherry); color: var(--white); font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 14px; border-radius: 2px; }

/* --- Float Messengers (2 buttons) --- */
.float-msgs { position: fixed; bottom: 24px; right: 24px; z-index: 900; display: flex; flex-direction: column; gap: 10px; }
.float-msg { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: all 0.3s; }
.float-msg:hover { transform: scale(1.1); }
.float-msg--wa { background: #25D366; box-shadow: 0 4px 16px rgba(37,211,102,0.35); }
.float-msg--tg { background: #0088cc; box-shadow: 0 4px 16px rgba(0,136,204,0.35); }

/* --- Price badge (no-numbers founder) --- */
.offer-banner { background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%); border-radius: 6px; padding: 32px; display: flex; align-items: center; gap: 24px; color: var(--white); }
.offer-banner__icon { width: 56px; height: 56px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.4rem; }
.offer-banner__text { font-size: 1.05rem; line-height: 1.6; }
.offer-banner__text strong { color: var(--terra-light); }

/* --- Responsive --- */
@media (max-width: 960px) {
  .nav, .header__phone { display: none; }
  .burger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding: 40px 24px; }
  .hero__desc { margin: 0 auto 32px; }
  .hero__buttons { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero-form { max-width: 420px; margin: 0 auto; }
  .premium-features { grid-template-columns: 1fr; }
  .premium-list { grid-template-columns: 1fr; }
  .cta { flex-direction: column; text-align: center; padding: 36px 24px; }
  .founder { grid-template-columns: 1fr; text-align: center; }
  .founder__avatar { margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 48px 0; }
  .hero { min-height: 80vh; }
  .hero__stats { gap: 20px; }
  .hero__stat-num { font-size: 1.8rem; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* --- Images --- */
.img-hero { width: 100%; height: 300px; object-fit: cover; border-radius: 6px; margin-bottom: 24px; }
.img-card { width: 100%; height: 220px; object-fit: cover; border-radius: 6px; }
.img-full { width: 100%; border-radius: 6px; margin-bottom: 16px; }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; margin-bottom: 24px; }
.gallery img { width: 100%; height: 260px; object-fit: cover; border-radius: 6px; transition: transform 0.3s; cursor: pointer; }
.gallery img:hover { transform: scale(1.02); }
.gallery--vertical img { height: 360px; }
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.before-after > div { text-align: center; }
.before-after img { width: 100%; height: 280px; object-fit: cover; border-radius: 6px; }
.before-after .ba-label { display: inline-block; padding: 4px 16px; border-radius: 3px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.ba-before { background: var(--stone-lighter); color: var(--text-muted); }
.ba-after { background: var(--green); color: var(--white); }
@media (max-width: 600px) {
  .before-after { grid-template-columns: 1fr; }
  .gallery img { height: 200px; }
  .img-hero { height: 200px; }
}

/* === CRITICAL: Prevent horizontal scroll === */
html, body { overflow-x: hidden; max-width: 100vw; }
*, *::before, *::after { max-width: 100%; }
.container { padding-left: 20px; padding-right: 20px; overflow: hidden; }
img { max-width: 100%; height: auto; }
.hero__inner { overflow: hidden; }
.header__inner { padding: 0 20px; }

/* === Fix tables on mobile === */
@media (max-width: 768px) {
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .footer__grid { grid-template-columns: 1fr 1fr !important; gap: 24px !important; }
  .services-grid { grid-template-columns: 1fr !important; }
  .adv-grid { grid-template-columns: 1fr !important; }
  .before-after { grid-template-columns: 1fr !important; }
  .reviews-grid { grid-template-columns: 1fr !important; }
  .gallery { grid-template-columns: 1fr 1fr !important; }
  .steps-grid { grid-template-columns: 1fr !important; }
  .hero__buttons { flex-direction: column; gap: 12px; align-items: center; }
  .hero__buttons .btn { width: 100%; text-align: center; }
  .offer-banner { flex-direction: column; text-align: center; }
  .msg-btns, .hero-form .msg-btn { width: 100%; justify-content: center; }
  .founder { grid-template-columns: 1fr !important; text-align: center; }
  .founder__avatar { margin: 0 auto 16px !important; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr !important; }
  .gallery { grid-template-columns: 1fr !important; }
  .gallery img { height: 240px; }
  h1 { font-size: 1.8rem !important; }
  h2 { font-size: 1.4rem !important; }
  .hero { min-height: 60vh !important; }
  .section { padding: 40px 0; }
  .svc-card { padding: 20px 16px; }
}

/* === iPad / Tablet === */
@media (min-width: 769px) and (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .footer__grid { grid-template-columns: repeat(3, 1fr) !important; }
}

/* === Large screens === */
@media (min-width: 1400px) {
  .container { max-width: 1320px; }
}
@media (min-width: 1920px) {
  .container { max-width: 1440px; }
  body { font-size: 1.05rem; }
}

/* === Lightbox === */
.lightbox-overlay { display:none; position:fixed; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.9); z-index:9999; justify-content:center; align-items:center; cursor:pointer; }
.lightbox-overlay.active { display:flex; }
.lightbox-overlay img { max-width:90vw; max-height:90vh; object-fit:contain; border-radius:4px; }
.lightbox-close { position:fixed; top:20px; right:24px; color:white; font-size:2rem; cursor:pointer; z-index:10000; font-weight:300; }

/* === Founder with real photo === */
.founder__photo { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 3px solid var(--stone-light); }
.founder__photo--lg { width: 120px; height: 120px; }

/* === Guarantee badge === */
.guarantee { display:inline-flex; align-items:center; gap:8px; background:var(--green); color:var(--white); padding:8px 16px; border-radius:3px; font-size:0.82rem; font-weight:700; }

/* Founder photo larger on desktop */
@media (min-width: 769px) {
  .founder__photo { width: 120px; height: 120px; }
  .founder__photo--lg { width: 160px; height: 160px; }
  .founder { gap: 24px; }
}

/* Max messenger button */
.msg-btn--max { background: #7B68EE; color: white; }
.msg-btn--max:hover { background: #6A5ACD; transform: translateY(-2px); }

.lb-prev, .lb-next { position:fixed; top:50%; color:white; font-size:3rem; cursor:pointer; z-index:10000; padding:20px; user-select:none; transform:translateY(-50%); }
.lb-prev { left:10px; }
.lb-next { right:10px; }
.lb-prev:hover, .lb-next:hover { color:var(--terra-light); }
@media (max-width:768px) { .lb-prev,.lb-next { font-size:2rem; padding:10px; } }
