/* =============================================
   YASMINE VARANAI — GLOBAL STYLESHEET
   Warm Sage-Gold-Sand Palette · 1200px Max Width
   ============================================= */

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

:root {
  /* Warm elegant palette — NO dark/black */
  --sand-50: #FDFBF7;
  --sand-100: #F9F4EC;
  --sand-200: #F0E8DA;
  --sand-300: #E5D9C7;
  --sand-400: #D4C5AC;
  --sage-500: #8B9A7E;
  --sage-600: #6E8060;
  --sage-700: #566A4A;
  --warm-800: #5C4F3D;
  --warm-900: #3D3229;
  --gold-400: #C9A86C;
  --gold-500: #B89455;
  --gold-600: #A67C52;
  --terra-500: #B87D5E;
  --terra-600: #9A6648;
  --white: #FFFFFF;
  --text-primary: #3D3229;
  --text-secondary: #6B5D4F;
  --text-muted: #9A8E80;
  --border: #E8DFD2;
  --border-light: #F0EAE0;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --max-w: 1200px;
  --nav-h: 70px;
  --section-gap: 96px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--sand-50);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.2; }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.25rem); }
h2 em, h1 em { font-style: italic; color: var(--sage-600); }

.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 13px 30px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.01em;
}
.btn--primary { background: var(--sage-600); color: var(--white); }
.btn--primary:hover { background: var(--sage-700); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(110,128,96,0.25); }
.btn--outline { background: transparent; color: var(--text-primary); border: 1.5px solid var(--border); }
.btn--outline:hover { border-color: var(--sage-600); color: var(--sage-600); }
.btn--white { background: var(--white); color: var(--text-primary); }
.btn--white:hover { background: var(--sand-100); }
.btn--ghost { background: rgba(255,255,255,0.12); color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); }
.btn--ghost:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }

/* ===================== NAV ===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(253,251,247,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
}
.nav__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { display: flex; flex-direction: column; line-height: 1.2; }
.nav__logo-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--text-primary); }
.nav__logo-sub { font-size: 0.6rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); }
.nav__links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav__links a { font-size: 0.84rem; font-weight: 500; color: var(--text-secondary); transition: color 0.3s var(--ease); }
.nav__links a:hover { color: var(--sage-600); }
.nav__cta { font-size: 0.8rem !important; font-weight: 600 !important; color: var(--white) !important; background: var(--sage-600); padding: 9px 22px; border-radius: 5px; transition: background 0.3s var(--ease) !important; }
.nav__cta:hover { background: var(--sage-700) !important; }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav__hamburger span { width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: 0.3s; }
.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0; background: var(--sand-50); z-index: 999; padding: 32px; overflow-y: auto; }
.mobile-menu.active { display: block; }
.mobile-menu a { display: block; font-family: var(--font-display); font-size: 1.4rem; padding: 14px 0; border-bottom: 1px solid var(--border-light); color: var(--text-primary); }
.mobile-menu a:last-child { border: none; margin-top: 16px; background: var(--sage-600); color: var(--white); text-align: center; border-radius: 6px; padding: 14px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; }

/* ===================== HERO (Home only — in index.html) ===================== */

/* ===================== STATS BAR ===================== */
.stats-bar { background: var(--sand-200); border-bottom: 1px solid var(--sand-300); }
.stats-bar__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stats-bar__item { text-align: center; padding: 28px 12px; position: relative; }
.stats-bar__item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; height: 60%;
  width: 1px; background: var(--sand-300);
}
.stats-bar__num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--sage-700); line-height: 1; }
.stats-bar__label { font-size: 0.75rem; font-weight: 500; color: var(--text-muted); margin-top: 4px; }

/* ===================== PAGE HERO (inner pages) ===================== */
.page-hero {
  padding: calc(var(--nav-h) + 48px) 0 64px;
  background: var(--sand-100);
  border-bottom: 1px solid var(--border-light);
}
.page-hero__grid { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.page-hero__content { padding-top: 8px; }
.page-hero__desc { font-size: 0.95rem; color: var(--text-secondary); margin-top: 14px; line-height: 1.7; }

.page-hero__img-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 10px; }
.page-hero__details { margin-top: 16px; }
.page-hero__detail { display: flex; justify-content: space-between; font-size: 0.84rem; padding: 9px 0; border-bottom: 1px solid var(--border-light); }
.page-hero__detail strong { font-weight: 600; color: var(--text-primary); }
.page-hero__detail span, .page-hero__detail a { color: var(--text-secondary); }
.page-hero__detail a { color: var(--sage-600); }

.page-hero--simple { text-align: center; padding-bottom: 56px; }
.page-hero--simple .page-hero__desc { max-width: 600px; margin-left: auto; margin-right: auto; }
.page-hero--simple .page-hero__btns { display: flex; gap: 14px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }

/* ===================== CONTENT SECTION ===================== */
.section { padding: var(--section-gap) 0; }
.section--alt { background: var(--sand-100); }
.section--sage { background: var(--sage-600); }
.section--warm { background: var(--sand-200); }
.section__header { text-align: center; max-width: 580px; margin: 0 auto 48px; }
.section__header p { color: var(--text-secondary); font-size: 0.95rem; margin-top: 10px; }
.section__narrow { max-width: 760px; margin: 0 auto; }
.section__narrow h2 { margin-bottom: 16px; }
.section__narrow h3 { margin: 24px 0 10px; color: var(--text-primary); }
.section__narrow p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 14px; }
.section__narrow blockquote {
  font-family: var(--font-display); font-size: 1.08rem; font-style: italic;
  color: var(--text-secondary); border-left: 3px solid var(--sage-500);
  padding: 4px 0 4px 20px; margin: 20px 0; line-height: 1.65;
}

/* ===================== TWO-COLUMN GRID ===================== */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.duo--img-first { direction: ltr; }
.duo__content h2 { margin-bottom: 14px; }
.duo__content p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 14px; }
.duo__content ul { list-style: none; margin: 16px 0; }
.duo__content ul li {
  padding: 7px 0 7px 18px; font-size: 0.9rem; color: var(--text-secondary);
  position: relative;
}
.duo__content ul li::before { content: '◆'; position: absolute; left: 0; font-size: 0.5rem; color: var(--sage-500); top: 11px; }
.duo__img img { width: 100%; border-radius: 10px; aspect-ratio: 1; object-fit: cover; }

/* ===================== SERVICE CARDS ===================== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 28px 24px; transition: all 0.35s var(--ease);
}
.card:hover { border-color: var(--sage-500); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(61,50,41,0.06); }
.card__num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--sand-300); line-height: 1; margin-bottom: 12px; }
.card h3 { margin-bottom: 8px; color: var(--text-primary); }
.card p { font-size: 0.87rem; color: var(--text-secondary); line-height: 1.7; }
.card__link { display: inline-flex; align-items: center; gap: 5px; margin-top: 14px; font-size: 0.82rem; font-weight: 600; color: var(--sage-600); transition: gap 0.3s; }
.card__link:hover { gap: 9px; }
.card__tag { display: inline-block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sage-600); background: rgba(110,128,96,0.1); padding: 4px 12px; border-radius: 20px; margin-top: 12px; }

/* ===================== INTRO (Meet Yasmine — homepage) ===================== */
.intro { display: grid; grid-template-columns: 340px 1fr; gap: 48px; align-items: start; }
.intro__img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 10px; }
.intro__badge {
  margin-top: 12px; background: var(--sage-600); color: var(--white);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 10px 16px; border-radius: 6px;
  text-align: center; line-height: 1.4;
}
.intro__badge span { display: block; font-size: 0.62rem; font-weight: 400; opacity: 0.85; }
.intro__body h2 { margin-bottom: 14px; }
.intro__body blockquote {
  font-family: var(--font-display); font-size: 1.05rem; font-style: italic;
  color: var(--text-secondary); border-left: 3px solid var(--sage-500);
  padding: 2px 0 2px 18px; margin: 16px 0; line-height: 1.6;
}
.intro__body p { color: var(--text-secondary); font-size: 0.93rem; margin-bottom: 12px; }
.intro__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 24px; }
.intro__tag {
  font-size: 0.75rem; font-weight: 600; padding: 6px 16px; border-radius: 24px;
  background: rgba(110,128,96,0.1); color: var(--sage-600);
}

/* ===================== PROCESS STEPS ===================== */
.steps { max-width: 760px; margin: 0 auto; }
.step { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border-light); }
.step:last-child { border-bottom: none; }
.step__num {
  width: 44px; height: 44px; border: 2px solid var(--sage-500); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--sage-600);
}
.step h3 { margin-bottom: 6px; }
.step p { font-size: 0.9rem; color: var(--text-secondary); }

/* ===================== STAT CARDS (alt to dark) ===================== */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.stat-row--4 { grid-template-columns: repeat(4, 1fr); }
.stat-card {
  text-align: center; padding: 28px 16px; background: var(--white);
  border: 1px solid var(--border); border-radius: 10px;
}
.stat-card__num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--sage-700); margin-bottom: 6px; }
.stat-card h4 { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; }
.stat-card p { font-size: 0.78rem; color: var(--text-muted); }

/* Sage-bg stat cards */
.section--sage .stat-card { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.15); }
.section--sage .stat-card__num { color: var(--sand-100); }
.section--sage .stat-card h4 { color: rgba(255,255,255,0.9); }
.section--sage .stat-card p { color: rgba(255,255,255,0.6); }
.section--sage .section__header h2 { color: var(--white); }
.section--sage .section__header h2 em { color: var(--sand-300); }
.section--sage .section__header p { color: rgba(255,255,255,0.7); }
.section--sage .label { color: var(--sand-300); }

/* ===================== TESTIMONIALS ===================== */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 28px 24px;
}
.testimonial__qm { font-family: var(--font-display); font-size: 3rem; color: var(--sand-300); line-height: 1; margin-bottom: 4px; }
.testimonial__stars { color: var(--gold-500); font-size: 0.82rem; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial__author { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--sand-200);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--sage-600);
}
.testimonial__name { font-weight: 600; font-size: 0.88rem; color: var(--text-primary); }
.testimonial__role { font-size: 0.76rem; color: var(--text-muted); margin-top: 2px; }

.review-links { display: flex; gap: 20px; justify-content: center; margin-top: 36px; }
.review-links a { font-size: 0.84rem; font-weight: 600; color: var(--sage-600); text-decoration: underline; text-underline-offset: 3px; transition: color 0.3s; }
.review-links a:hover { color: var(--sage-700); }

/* ===================== SOCIAL SECTION ===================== */
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.social-img { position: relative; }
.social-img img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px; }
.social-img__handle {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(61,50,41,0.7); backdrop-filter: blur(8px);
  color: var(--white); font-size: 0.8rem; font-weight: 600;
  padding: 7px 14px; border-radius: 6px;
}
.social-links { display: flex; flex-direction: column; gap: 10px; }
.social-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; background: var(--sand-100); border: 1px solid var(--border-light);
  border-radius: 8px; font-size: 0.88rem; font-weight: 500; transition: all 0.3s var(--ease);
}
.social-link:hover { border-color: var(--sage-500); background: rgba(110,128,96,0.06); }
.social-link span { color: var(--text-muted); font-size: 0.8rem; }

.social-section__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.social-card {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  padding: 24px 14px; background: var(--sand-100); border: 1px solid var(--border-light);
  border-radius: 10px; text-align: center; transition: all 0.3s var(--ease);
}
.social-card:hover { border-color: var(--sage-500); transform: translateY(-2px); }
.social-card h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.88rem; }
.social-card span { font-size: 0.76rem; color: var(--text-muted); }

/* ===================== CTA ===================== */
.cta {
  padding: 72px 0; text-align: center;
  background: linear-gradient(135deg, var(--sage-600), var(--sage-700));
}
.cta h2 { color: var(--white); margin-bottom: 12px; }
.cta h2 em { color: var(--sand-300); }
.cta p { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin-bottom: 28px; }
.cta .label { color: var(--sand-300); }
.cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===================== VALUES GRID ===================== */
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.value-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 10px;
  padding: 28px 24px; transition: all 0.35s var(--ease);
}
.value-card:hover { border-color: var(--sage-500); transform: translateY(-2px); }
.value-card h4 { font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 6px; }
.value-card p { font-size: 0.87rem; color: var(--text-secondary); }

/* ===================== CREDENTIALS ===================== */
.cred-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cred-card { text-align: center; padding: 28px 16px; background: var(--white); border: 1px solid var(--border); border-radius: 10px; }
.cred-card__num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--sage-700); margin-bottom: 6px; }
.cred-card h4 { font-family: var(--font-body); font-size: 0.85rem; font-weight: 600; margin-bottom: 4px; }
.cred-card p { font-size: 0.78rem; color: var(--text-muted); }

/* ===================== CONTACT ===================== */
.contact-grid { display: grid; grid-template-columns: 350px 1fr; gap: 48px; align-items: start; }
.contact-info { position: sticky; top: calc(var(--nav-h) + 24px); }
.contact-info__img { width: 100%; border-radius: 10px; aspect-ratio: 3/4; object-fit: cover; margin-bottom: 16px; }
.contact-info__card {
  background: var(--sand-100); border: 1px solid var(--border-light); border-radius: 10px; padding: 22px;
}
.contact-info__card h3 { font-size: 1.05rem; margin-bottom: 2px; }
.contact-info__card .subtitle { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 16px; }
.contact-detail { display: flex; flex-direction: column; gap: 3px; padding: 10px 0; border-bottom: 1px solid var(--border-light); }
.contact-detail:last-child { border-bottom: none; }
.contact-detail strong { font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); }
.contact-detail span, .contact-detail a { font-size: 0.9rem; color: var(--text-primary); }
.contact-detail a { color: var(--sage-600); }
.contact-social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.contact-social a { padding: 7px 14px; background: var(--sand-100); border: 1px solid var(--border-light); border-radius: 6px; font-size: 0.8rem; font-weight: 500; transition: 0.3s; }
.contact-social a:hover { border-color: var(--sage-500); color: var(--sage-600); }

.contact-form h2 { margin-bottom: 6px; }
.contact-form > p { color: var(--text-secondary); font-size: 0.93rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-primary); }
.form-group input, .form-group select, .form-group textarea {
  font-family: var(--font-body); font-size: 0.9rem; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: 6px;
  background: var(--white); color: var(--text-primary);
  transition: border-color 0.3s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sage-500); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%239A8E80' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 5h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.form-submit { width: 100%; justify-content: center; margin-top: 6px; font-size: 0.95rem; padding: 14px; }
.form-success { display: none; text-align: center; padding: 22px; background: rgba(110,128,96,0.08); border: 1px solid rgba(110,128,96,0.2); border-radius: 8px; margin-top: 14px; }
.form-success.show { display: block; }
.form-success p { font-size: 0.9rem; color: var(--text-primary); }

/* ===================== FOOTER ===================== */
.footer { background: var(--sand-200); border-top: 1px solid var(--sand-300); padding: 56px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__brand-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 600; color: var(--text-primary); }
.footer__brand-sub { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; margin-bottom: 14px; }
.footer__brand-desc { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.7; }
.footer h4 { font-family: var(--font-body); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 8px; }
.footer__links a { font-size: 0.86rem; color: var(--text-secondary); transition: color 0.3s; }
.footer__links a:hover { color: var(--sage-600); }
.footer__bottom { border-top: 1px solid var(--sand-300); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: var(--text-muted); }
.footer__bottom-links { display: flex; gap: 16px; }
.footer__bottom-links a { color: var(--text-muted); transition: color 0.3s; }
.footer__bottom-links a:hover { color: var(--sage-600); }

/* ===================== CHAT WIDGET ===================== */
.chat-toggle {
  position: fixed; bottom: 20px; right: 20px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--sage-600); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none;
  box-shadow: 0 6px 24px rgba(110,128,96,0.35);
  transition: all 0.3s var(--ease); overflow: hidden;
}
.chat-toggle:hover { background: var(--sage-700); transform: scale(1.05); }
.chat-toggle img { width: 100%; height: 100%; object-fit: cover; }
.chat-toggle__dot {
  position: absolute; top: 2px; right: 2px;
  width: 12px; height: 12px; background: #4ADE80;
  border-radius: 50%; border: 2px solid var(--white);
}
.chat-panel {
  position: fixed; bottom: 88px; right: 20px; z-index: 901;
  width: 380px; max-height: 520px;
  background: var(--white); border-radius: 14px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.12);
  border: 1px solid var(--border);
  display: none; flex-direction: column; overflow: hidden;
}
.chat-panel.active { display: flex; }
.chat-panel__header {
  padding: 16px 20px; background: var(--sage-600);
  display: flex; align-items: center; gap: 12px;
}
.chat-panel__header img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.3); }
.chat-panel__header-info h4 { font-family: var(--font-body); font-size: 0.92rem; font-weight: 600; color: var(--white); margin: 0; }
.chat-panel__header-info p { font-size: 0.72rem; color: rgba(255,255,255,0.7); margin: 0; }
.chat-panel__close { margin-left: auto; background: none; border: none; color: rgba(255,255,255,0.7); font-size: 1.3rem; cursor: pointer; padding: 4px; }
.chat-panel__close:hover { color: var(--white); }
.chat-panel__messages {
  flex: 1; padding: 16px 20px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 10px;
  max-height: 340px; min-height: 200px;
}
.chat-msg {
  max-width: 85%; padding: 10px 14px; border-radius: 12px;
  font-size: 0.86rem; line-height: 1.55;
}
.chat-msg--bot { background: var(--sand-100); color: var(--text-primary); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg--user { background: var(--sage-600); color: var(--white); align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-msg--typing { font-style: italic; color: var(--text-muted); }
.chat-panel__input {
  padding: 12px 16px; border-top: 1px solid var(--border-light);
  display: flex; gap: 8px;
}
.chat-panel__input input {
  flex: 1; font-family: var(--font-body); font-size: 0.88rem;
  padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 8px;
  outline: none; background: var(--sand-50);
}
.chat-panel__input input:focus { border-color: var(--sage-500); }
.chat-panel__input button {
  background: var(--sage-600); color: var(--white); border: none;
  padding: 10px 16px; border-radius: 8px; font-weight: 600;
  font-size: 0.84rem; cursor: pointer; transition: 0.3s;
}
.chat-panel__input button:hover { background: var(--sage-700); }

/* ===================== ANIMATIONS ===================== */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .intro { grid-template-columns: 280px 1fr; gap: 36px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .duo { grid-template-columns: 1fr; gap: 36px; }
  .duo__img { order: -1; max-width: 480px; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid > :last-child { grid-column: span 2; }
  .social-grid { grid-template-columns: 1fr; gap: 36px; }
  .social-img { max-width: 380px; }
  .page-hero__grid { grid-template-columns: 1fr 300px; gap: 36px; }
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .social-section__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-row--4 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 300px 1fr; gap: 36px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-gap: 64px; --nav-h: 62px; }
  .container { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .intro { grid-template-columns: 1fr; }
  .intro__img { max-width: 280px; }
  .card-grid, .card-grid--2 { grid-template-columns: 1fr; }
  .stats-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item:nth-child(2)::after { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid > :last-child { grid-column: span 1; }
  .page-hero__grid { grid-template-columns: 1fr; }
  .page-hero__img-wrap { max-width: 280px; }
  .values-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
  .social-section__grid { grid-template-columns: 1fr 1fr; }
  .stat-row, .stat-row--4 { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; max-width: 300px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .chat-panel { width: calc(100vw - 40px); right: 20px; bottom: 84px; }
}
