:root{
  --bg: #fbf3e8;
  --bg-2: #f3e8da;
  --paper: rgba(255,255,255,.66);
  --ink: #1c1a16;
  --muted: rgba(28,26,22,.65);
  --line: rgba(28,26,22,.12);
  --shadow: 0 18px 40px rgba(34, 23, 12, .12);
  --shadow-soft: 0 12px 30px rgba(34, 23, 12, .10);

  --brand: #a13a1e;
  --brand-2: #c26b2a;
  --btn: #8f3b22;
  --btn-dark: #6f2b18;

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --serif: "Noto Serif Devanagari", "Fraunces", ui-serif, Georgia, serif;
  --sans: "Noto Sans Devanagari", "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, sans-serif;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ font-size: 16px; }
body{
  margin:0;
  color:var(--ink);
  font-family:var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  background:
    radial-gradient(900px 420px at 15% -5%, rgba(194,107,42,.18), transparent 60%),
    radial-gradient(900px 420px at 95% 20%, rgba(161,58,30,.15), transparent 55%),
    linear-gradient(180deg, var(--bg), #f8efe4 38%, #f2e6d7 100%);
}

a{ color:inherit; text-decoration:none; transition: color .15s ease; }
img{ max-width:100%; height:auto; display:block; }
p{ margin: 0; }

::selection{ background: rgba(161,58,30,.16); }

/* Accessibility */
.skip-link{ position:absolute; left:-999px; width:1px; height:1px; overflow:hidden; }
.skip-link:focus{ left:20px; top:20px; width:auto; height:auto; background:#fff; padding:10px; z-index:1000; border-radius:8px; box-shadow:var(--shadow); }

/* Layout */
.wrap{ width:min(1200px, calc(100% - 40px)); margin:0 auto; }
.wrap--narrow{ width:min(900px, calc(100% - 40px)); margin:0 auto; }

/* Header */
.site-header{ position:sticky; top:0; z-index:100; backdrop-filter: blur(10px); background: rgba(251,243,232,.8); border-bottom:1px solid var(--line); }
.nav{ display:flex; align-items:center; justify-content:space-between; padding:12px 0; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand__logo{ height: 48px; border-radius: 8px; }
.brand__title{ font-family:var(--serif); font-weight:700; font-size: clamp(14px, 1.8vw, 18px); white-space: nowrap; line-height:1.1; }
.brand__sub{ display:block; font-size: 11px; color:var(--muted); margin-top:2px; }

.nav__menu{ display:flex; align-items:center; gap:8px; list-style:none; margin:0; padding:6px 10px; background: rgba(255,255,255,.7); border:1px solid var(--line); border-radius: 999px; }
.nav__link{ font-size:13.5px; padding:8px 14px; border-radius: 999px; color: var(--ink); font-weight: 600; display: flex; align-items: center; gap: 6px; }

.nav__link:nth-child(1) { color: #2980b9; }
.nav__link:nth-child(2) { color: #27ae60; }
.nav__link:nth-child(3) { color: #8e44ad; }
.nav__link:nth-child(4) { color: #d35400; }
.nav__link:nth-child(5) { color: #2c3e50; }
.nav__link:nth-child(6) { color: #c0392b; }

.nav__link:hover{ background: rgba(0,0,0,.04); }
.nav__link:nth-child(1):hover { background: rgba(41,128,185,.1); }
.nav__link:nth-child(2):hover { background: rgba(39,174,96,.1); }
.nav__link:nth-child(3):hover { background: rgba(142,68,173,.1); }
.nav__link:nth-child(4):hover { background: rgba(211,84,0,.1); }
.nav__link:nth-child(5):hover { background: rgba(44,62,80,.1); }
.nav__link:nth-child(6):hover { background: rgba(192,57,43,.1); }

.nav__link.is-active{ font-weight: 700; background: #fff !important; box-shadow: 0 4px 12px rgba(0,0,0,.08); border: 1px solid var(--line); }
.nav__link.is-active:nth-child(1) { color: #2980b9; border-color: rgba(41,128,185,.3); }
.nav__link.is-active:nth-child(2) { color: #27ae60; border-color: rgba(39,174,96,.3); }
.nav__link.is-active:nth-child(3) { color: #8e44ad; border-color: rgba(142,68,173,.3); }
.nav__link.is-active:nth-child(4) { color: #d35400; border-color: rgba(211,84,0,.3); }
.nav__link.is-active:nth-child(5) { color: #2c3e50; border-color: rgba(44,62,80,.3); }
.nav__link.is-active:nth-child(6) { color: #c0392b; border-color: rgba(192,57,43,.3); }

.nav__actions{ display:flex; align-items:center; gap:12px; }
.lang-switch{ display:inline-flex; border:1px solid var(--line); background:#fff; border-radius:100px; padding:3px; gap:2px; }
.lang-switch__btn{ font-size:12px; font-weight:700; padding:6px 10px; border-radius:100px; color:var(--muted); cursor:pointer; }
.lang-switch__btn.is-active{ background: var(--bg); color:var(--brand); box-shadow:0 3px 8px rgba(0,0,0,.05); }

.icon-btn{
  display:none; border:1px solid var(--line); background:#fff;
  width:40px; height:40px; border-radius:10px; cursor:pointer;
  display:inline-flex; align-items:center; justify-content:center;
}
.icon-btn__bars{
  width:18px; height:12px; display:block;
  background:
    linear-gradient(var(--ink), var(--ink)) 0 0 / 100% 2px,
    linear-gradient(var(--ink), var(--ink)) 0 50% / 100% 2px,
    linear-gradient(var(--ink), var(--ink)) 0 100% / 100% 2px;
  background-repeat: no-repeat;
}

/* Buttons & Pills */
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:12px 24px; border-radius:999px; font-weight:700; cursor:pointer; transition: transform .1s; }
.btn:active{ transform: translateY(1px); }
.btn--primary{ background: linear-gradient(180deg, var(--btn), var(--btn-dark)); color:#fff; box-shadow: 0 8px 20px rgba(143,59,34,.2); }
.btn--ghost{ background: rgba(255,255,255,.6); border:1px solid var(--line); }
.btn--sm{ padding:8px 16px; font-size:13px; }

.pill{ display:inline-flex; align-items:center; gap:8px; padding:6px 12px; border:1px solid var(--line); background: rgba(255,255,255,.5); border-radius:999px; font-size:12px; color:var(--muted); }
.dot{ width:8px; height:8px; background: var(--brand); border-radius:50%; }

/* Sections */
.section{ padding: 80px 0; }
.section--tight{ padding: 40px 0; }
.center{ text-align:center; }
.section__title{ font-family:var(--serif); font-size: clamp(28px, 4vw, 42px); font-weight:700; line-height:1.2; margin-bottom: 12px; }
.section__sub{ color:var(--muted); max-width: 60ch; line-height:1.6; }
.mx-auto{ margin-left:auto; margin-right:auto; }

/* Hero */
.hero{ padding: 60px 0; }
.hero__grid{ display:grid; grid-template-columns: 1.2fr 1fr; gap:60px; align-items:center; }
.hero__title{ font-family:var(--serif); font-size: clamp(32px, 6vw, 64px); font-weight:700; line-height:1.05; margin:16px 0; }
.hero__lead{ font-size:17px; color:var(--muted); line-height:1.6; margin-bottom:30px; }
.hero__actions{ display:flex; gap:16px; flex-wrap:wrap; }

/* Frame & Cards */
.frame{ position:relative; max-width:440px; margin-left:auto; background:#fff; border:1px solid var(--line); padding:6px; border-radius:var(--radius-lg); box-shadow:var(--shadow); }
.frame__inner{ border-radius:16px; overflow:hidden; }
.frame__img{ width:100%; aspect-ratio: 4/5.2; object-fit:cover; object-position: top center; }
.badge-card{ position:absolute; left:24px; bottom:24px; background:rgba(255,255,255,.9); padding:16px; border-radius:16px; display:flex; gap:12px; align-items:center; box-shadow:0 10px 30px rgba(0,0,0,.15); backdrop-filter:blur(8px); }
.badge-card--static{ position:relative; left:auto; bottom:auto; margin-top:16px; background:transparent; box-shadow:none; padding:0; }
.badge-card__avatar{ width:36px; height:36px; background:var(--brand); color:#fff; border-radius:10px; display:grid; place-items:center; font-weight:700; }
.badge-card__name{ font-weight:700; font-size:14px; }
.badge-card__role{ font-size:12px; color:var(--muted); }

.cards{ display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; margin-top:40px; }
.card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); padding:30px; box-shadow:var(--shadow-soft); }
.card--accent{ background:var(--brand); color:#fff; border:none; box-shadow: 0 15px 40px rgba(161,58,30,.2); }
.card__kicker{ font-size:12px; opacity:.8; margin-bottom:12px; display:flex; align-items:center; gap:8px; }
.card__title{ font-family:var(--serif); font-size:22px; font-weight:700; margin-bottom:10px; }
.card__body{ font-size:14px; line-height:1.6; opacity:.9; }
.card__link{ display:inline-flex; align-items:center; gap:8px; font-weight:700; margin-top:16px; }

/* Grid & Split */
.split{ display:grid; grid-template-columns: 1fr 1fr; gap:40px; align-items:center; }
.split--top{ align-items:start; }
.grid-2{ display:grid; grid-template-columns: 1fr 1fr; gap:20px; }

/* V-Card */
.v-card{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-md); padding:32px; box-shadow:var(--shadow-soft); position:relative; overflow:hidden; }
.v-card::before{ content:""; position:absolute; top:0; left:0; width:100%; height:4px; background:var(--brand); }
.v-card--business{ border:2px solid var(--brand); background: linear-gradient(to bottom, #fff, #fff9f4); }
.v-card__header{ display:flex; justify-content:space-between; margin-bottom:24px; }
.v-card__title{ font-family:var(--serif); font-size:22px; font-weight:700; color:var(--brand); }
.v-card__subtitle{ font-size:14px; color:var(--muted); }
.v-card__main{ font-family:var(--serif); font-size:26px; font-weight:700; text-align:center; padding:16px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); margin:20px 0; }
.v-card__services{ list-style:none; padding:0; display:grid; gap:10px; }
.v-card__service{ display:flex; align-items:center; gap:10px; font-size:14px; }
.v-card__service::before{ content:"→"; color:var(--brand); font-weight:700; }
.v-card__footer{ margin-top:24px; padding-top:16px; text-align:center; border-top:4px solid var(--brand); font-size:12px; font-weight:700; }

/* List & Form */
.list{ list-style:none; padding:0; display:grid; gap:12px; margin-top:24px; }
.list li{ display:flex; align-items:flex-start; gap:12px; line-height:1.5; }
.tick{ flex-shrink:0; width:22px; height:22px; background:rgba(161,58,30,.1); border-radius:50%; display:grid; place-items:center; color:var(--brand); font-weight:700; }

.cta{ background:var(--brand); color:#fff; border-radius:var(--radius-lg); padding:32px; box-shadow:0 20px 50px rgba(161,58,30,.25); margin-top:30px; }
.cta__grid{ display:flex; column-gap:30px; align-items:center; justify-content:space-between; }
.cta__title{ font-family:var(--serif); font-size:26px; font-weight:700; }
.cta__sub{ opacity:.8; margin-top:6px; }

.form{ display:grid; gap:16px; margin-top:20px; }
.field{ display:grid; gap:6px; }
.label{ font-size:13px; font-weight:700; color:var(--muted); }
input, select, textarea{ width:100%; padding:12px 16px; border-radius:12px; border:1px solid var(--line); background:#fff; outline:none; font-family:inherit; }
input:focus{ border-color:var(--brand); }

/* FAQ & Features */
.faq-grid{ display:grid; gap:12px; }
.faq-item summary{ cursor:pointer; font-weight:700; list-style:none; padding-right:20px; }
.faq-item__a{ margin-top:12px; opacity:.85; line-height:1.6; padding-top:12px; border-top:1px solid var(--line); }

.feature-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:20px; text-align:center; }
.feature__icon{ font-size:32px; margin-bottom:10px; }
.feature__text{ font-weight:700; font-size:14px; line-height:1.3; }

/* Footer */
.site-footer{ border-top:1px solid var(--line); padding:80px 0 40px; background: linear-gradient(180deg, #fff, var(--bg-2)); }
.footer__grid{ display:grid; grid-template-columns: 2fr repeat(3, 1fr); gap:40px; }
.footer__brand{ font-family:var(--serif); font-size:22px; font-weight:700; margin-bottom:12px; color:var(--brand); }
.footer__title{ font-size:13px; font-weight:700; text-transform:uppercase; color:var(--ink); letter-spacing:1px; margin-bottom:20px; position:relative; display:inline-block; }
.footer__title::after{ content:""; position:absolute; left:0; bottom:-6px; width:20px; height:2px; background:var(--brand); }
.footer__link{ display:block; padding:8px 0; opacity:.85; font-size:14px; }
.footer__link:hover{ opacity:1; color:var(--brand); padding-left:4px; transition: all .2s; }
.footer__meta{ margin-top:12px; font-size:14px; }
.footer__bottom{ margin-top:60px; padding-top:24px; border-top:1px dashed var(--line); display:flex; justify-content:space-between; font-size:13px; color:var(--muted); }

/* Floating Buttons */
.wa-float{ position:fixed; right:30px; bottom:30px; width:60px; height:60px; background:#25d366; color:#fff; border-radius:50%; display:grid; place-items:center; font-size:32px; box-shadow:0 10px 25px rgba(37,211,102,.3); z-index:1000; }

/* Responsive */
@media (max-width: 940px){
  .hero__grid, .split, .footer__grid, .cards, .grid-2 { grid-template-columns: 1fr; gap: 10px; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .nav__menu{ position:fixed; top:80px; left:20px; right:20px; flex-direction:column; background:#fff; padding:20px; border-radius:20px; box-shadow:var(--shadow); opacity:0; pointer-events:none; transform:translateY(-10px); transition:all .2s ease; }
  body.nav-open .nav__menu{ opacity:1; pointer-events:auto; transform:translateY(0); }
  .icon-btn{ display:inline-grid; }
  .nav__actions .btn--ghost { display:none; }
  .frame{ margin: 12px auto 0; }
  .cta__grid{ flex-direction:column; text-align:center; gap:20px; }
}

@media (max-width: 520px){
  .wrap{ width: min(1200px, calc(100% - 16px)); }
  .nav{ gap:4px; }
  .brand{ gap:6px; }
  .brand__logo{ height:28px; }
  .brand__title{ font-size:9.5px; letter-spacing:0; }
  .brand__sub{ display:none; }
  .lang-switch{ padding:1px; gap:1px; }
  .lang-switch__btn{ padding:4px 6px; font-size:9px; }
  .icon-btn{ width:32px; height:32px; border-radius:6px; }
  .icon-btn__bars{ width:16px; height:10px; }
  .section{ padding:32px 0; }
  .feature-grid{ grid-template-columns: 1fr; }
  .hero__title{ font-size:20px; white-space: normal; }
  .hero__lead{ font-size:14px; }
  .btn{ padding:10px 16px; font-size:13px; }
  .footer__grid{ gap:30px; }
  .footer__title{ margin-bottom:12px; }
  .footer__bottom{ flex-direction:column; text-align:center; gap:10px; }
}
/* Drop Zone Styles */
.drop-zone {
  position: relative;
  border: 1.5px dashed var(--line);
  border-radius: var(--radius-sm);
  padding: 30px 20px;
  background: rgba(255,255,255,.3);
  text-align: center;
  transition: all .2s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.drop-zone:hover, .drop-zone.is-dragover {
  border-color: var(--brand);
  background: rgba(161,58,30,.04);
}
.drop-zone__input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.drop-zone__icon { font-size: 24px; color: var(--brand); }
.drop-zone__text { font-size: 13px; color: var(--muted); }
.drop-zone__file-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  background: rgba(255,255,255,.8);
  padding: 4px 10px;
  border-radius: 6px;
  margin-top: 5px;
  display: none;
}
.drop-zone.has-files .drop-zone__file-name { display: block; }
.drop-zone.has-files { border: 2px solid var(--brand); background: rgba(161,58,30,.02); }

.drop-zone__preview {
  position: absolute;
  inset: 10px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  display: none;
  z-index: 1;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.drop-zone.has-files .drop-zone__preview { display: block; }
