:root {
  /* Aangan brand palette */
  --cream: #f4edd8;
  --cream-soft: #faf5e6;
  --cream-deep: #ede2c3;
  --navy: #1f1b2e;
  --navy-soft: #2d2740;
  --coral: #d16042;
  --coral-deep: #b54b2f;
  --ink: #1a1622;
  --ink-soft: #4a4458;
  --ink-muted: #6e687c;
  --line: rgba(31, 27, 46, 0.12);
  --line-soft: rgba(31, 27, 46, 0.06);
  --shadow-sm: 0 2px 8px rgba(31, 27, 46, 0.06);
  --shadow-md: 0 10px 30px rgba(31, 27, 46, 0.08);
  --shadow-lg: 0 30px 60px rgba(31, 27, 46, 0.12);
  --radius: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Demo accents (used in Solutions / Mobile app showcase) */
  --warm-1: #e8a07a;
  --warm-2: #6a8a6f;
  --warm-3: #c47a55;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--coral); text-decoration: none; }
a:hover { color: var(--coral-deep); }

h1, h2, h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin: 0 0 16px;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); }
h3 { font-size: 1.2rem; font-weight: 700; }

p { margin: 0 0 16px; color: var(--ink-soft); }

em { color: var(--coral); font-style: italic; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 18px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 5vw, 64px);
  background: rgba(244, 237, 216, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(244, 237, 216, 0.95);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}

.brand img { border-radius: 10px; }

.brand strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.brand small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--navy); }

.nav-cta {
  display: inline-block;
  background: var(--navy);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.nav-cta:hover { background: var(--coral); color: var(--cream); }

@media (max-width: 1024px) {
  .nav-links { display: none; }
}

/* ============================================
   BUTTONS
   ============================================ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  font-family: inherit;
}

.button.primary {
  background: var(--navy);
  color: var(--cream);
}

.button.primary:hover {
  background: var(--coral);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.button.ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.button.ghost:hover {
  background: var(--navy);
  color: var(--cream);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: clamp(50px, 8vw, 110px) clamp(20px, 5vw, 64px) clamp(70px, 10vw, 130px);
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(209, 96, 66, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 70px);
  align-items: center;
}

.hero-copy { max-width: 620px; }

.hero h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  margin-bottom: 24px;
}

.hero h1 em {
  display: inline;
  color: var(--coral);
  font-style: italic;
}

.hero-text {
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-row span {
  font-size: 0.85rem;
  background: var(--cream-soft);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  color: var(--navy);
  font-weight: 500;
  border: 1px solid var(--line-soft);
}

/* Hero visual: a balanced card stack */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preview-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 100%;
  max-width: 480px;
}

.preview-card-top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  background: var(--cream-soft);
  border-bottom: 1px solid var(--line-soft);
}

.preview-card-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.preview-card-top span:nth-child(1) { background: #f0a899; }
.preview-card-top span:nth-child(2) { background: #f4cf85; }
.preview-card-top span:nth-child(3) { background: #a8c89e; }

.preview-card-top p {
  margin: 0 0 0 12px;
  font-size: 0.85rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.preview-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 24px;
}

.preview-tile {
  background: var(--cream-soft);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid var(--line-soft);
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.preview-tile.feature {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--cream);
  min-height: 140px;
  position: relative;
  overflow: hidden;
}

.preview-tile.feature::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(209, 96, 66, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.preview-tile.feature strong { color: var(--cream); font-size: 1.2rem; position: relative; z-index: 1; }
.preview-tile.feature small { color: rgba(244, 237, 216, 0.78); position: relative; z-index: 1; }

.preview-tile strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.preview-tile small {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.5;
  display: block;
}

@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { justify-content: flex-start; }
  .preview-card { max-width: 520px; }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  margin: 0 clamp(20px, 5vw, 64px) clamp(60px, 8vw, 100px);
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 70px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 70px);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(209, 96, 66, 0.25) 0%, transparent 60%);
}

.contact-copy { position: relative; z-index: 1; }
.contact-copy .eyebrow { color: var(--coral); }
.contact-copy h2 { color: var(--cream); }
.contact-copy p { color: rgba(244, 237, 216, 0.78); }

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.contact-details span {
  background: rgba(244, 237, 216, 0.08);
  padding: 14px 20px;
  border-radius: 14px;
  font-size: 0.95rem;
  border: 1px solid rgba(244, 237, 216, 0.12);
}

.contact-details b {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 4px;
  font-weight: 700;
}

.contact-details a {
  color: var(--cream);
  font-weight: 500;
}

.contact-details a:hover { color: var(--coral); }

.contact-form {
  background: var(--cream);
  border-radius: 20px;
  padding: 32px;
  display: grid;
  gap: 14px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  color: var(--ink);
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--coral);
}

.contact-form textarea { resize: vertical; min-height: 110px; }

.contact-form button {
  margin-top: 8px;
  background: var(--navy);
  color: var(--cream);
  padding: 14px;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.contact-form button:hover { background: var(--coral); }

.form-note {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin: 6px 0 0;
  text-align: center;
}

@media (max-width: 880px) {
  .contact-section { grid-template-columns: 1fr; }
}

/* ============================================
   LOGO STRIP
   ============================================ */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 4vw, 56px);
  padding: 40px clamp(20px, 5vw, 64px);
  margin: 0 auto;
  max-width: 1100px;
  color: var(--ink-muted);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.logo-strip span {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--navy);
}

/* ============================================
   SECTION (generic)
   ============================================ */
.section {
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 64px);
  max-width: 1280px;
  margin: 0 auto;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2 em {
  color: var(--coral);
  font-style: italic;
}

.section-heading p {
  font-size: 1.08rem;
  margin-top: 14px;
}

/* ============================================
   SERVICE GRID
   ============================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--cream-soft);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--line-soft);
  transition: all 0.25s;
}

.service-card:hover {
  background: white;
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card .icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--coral);
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--navy);
}

.service-card p {
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================
   AANGAN SECTION — recreated from your promo images
   ============================================ */
.aangan-band {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  position: relative;
  overflow: hidden;
}

.aangan-band::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(209, 96, 66, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.aangan-band .section-heading {
  text-align: left;
  margin: 0 0 56px;
  max-width: 720px;
  position: relative;
}

.aangan-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 24px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.aangan-link-row a {
  color: var(--coral);
  font-weight: 600;
}

.aangan-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.aangan-tile {
  background: var(--cream-soft);
  border-radius: 24px;
  padding: 32px 24px;
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  min-height: 480px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.aangan-tile.hero-tile {
  background: linear-gradient(165deg, #faf5e6 0%, #f4e3d6 70%, #ebcdb8 100%);
}

.aangan-tile.feature-tile {
  background: var(--cream-soft);
}

.aangan-tile.join-tile {
  background: linear-gradient(165deg, #ede2c3 0%, #d8cba5 100%);
}

.aangan-tile .mini-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.aangan-tile .mini-brand .a-mark {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--cream);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.aangan-tile .mini-brand p {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
}

.aangan-tile .mini-brand p small {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 600;
  margin-top: 3px;
}

.aangan-tile h3.headline {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 18px;
  font-weight: 700;
}

.aangan-tile h3.headline em { color: var(--coral); font-style: italic; }

.aangan-tile p.lede {
  color: var(--ink-soft);
  font-size: 0.95rem;
  margin: 0 0 24px;
}

.aangan-tile .pill-cta {
  margin-top: auto;
  background: var(--navy);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  width: fit-content;
  text-decoration: none;
}

.aangan-tile .pill-cta:hover { background: var(--coral); color: var(--cream); }

.reconnect-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 14px; }

.reconnect-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
}

.reconnect-list li .check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.reconnect-list li .check::after {
  content: "✓";
  font-size: 0.75rem;
  color: var(--navy);
  font-weight: 700;
}

.aangan-tile .footer-line {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--coral);
  font-size: 1.1rem;
  text-align: center;
}

@media (max-width: 980px) {
  .aangan-gallery { grid-template-columns: 1fr; }
  .aangan-tile { min-height: auto; }
}

/* ============================================
   MOBILE APP PORTFOLIO (3 demos)
   ============================================ */
.app-portfolio {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius-lg);
  margin: 0 clamp(20px, 5vw, 64px);
  padding: clamp(50px, 7vw, 90px) clamp(30px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}

.app-portfolio::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(209, 96, 66, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.app-portfolio .section-heading {
  text-align: center;
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
}

.app-portfolio .section-heading .eyebrow { color: var(--coral); }
.app-portfolio .section-heading h2 { color: var(--cream); }
.app-portfolio .section-heading h2 em { color: var(--coral); }
.app-portfolio .section-heading p { color: rgba(244, 237, 216, 0.78); }

.phone-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.phone-demo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.phone-frame {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9 / 19;
  background: #0c0a14;
  border-radius: 38px;
  padding: 10px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  position: relative;
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #0c0a14;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Demo 1: Restaurant app */
.demo-restaurant {
  background: linear-gradient(180deg, #faf5e6 0%, #f0d9c0 100%);
  padding: 50px 18px 18px;
  color: var(--navy);
}

.demo-restaurant .app-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}

.demo-restaurant .app-top b {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--navy);
}

.demo-restaurant .app-top .star {
  background: var(--navy); color: var(--cream);
  padding: 4px 10px; border-radius: 12px; font-size: 0.7rem; font-weight: 600;
}

.demo-restaurant .hero-img {
  width: 100%; height: 110px;
  background: linear-gradient(135deg, #d16042 0%, #b54b2f 100%);
  border-radius: 14px;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.demo-restaurant .hero-img::after {
  content: "Today's Special"; position: absolute; bottom: 8px; left: 10px;
  color: white; font-size: 0.7rem; font-weight: 600;
}

.demo-restaurant .menu-item {
  background: white; border-radius: 12px; padding: 10px;
  display: flex; align-items: center; gap: 10px; margin-bottom: 8px;
}
.demo-restaurant .menu-thumb {
  width: 38px; height: 38px; border-radius: 8px;
  background: linear-gradient(135deg, #e8a07a, #c47a55);
  flex-shrink: 0;
}
.demo-restaurant .menu-item.alt .menu-thumb {
  background: linear-gradient(135deg, #a8c89e, #6a8a6f);
}
.demo-restaurant .menu-item .info { flex: 1; }
.demo-restaurant .menu-item b { font-size: 0.78rem; display: block; color: var(--navy); }
.demo-restaurant .menu-item small { font-size: 0.65rem; color: var(--ink-muted); }
.demo-restaurant .menu-item .price { font-size: 0.8rem; font-weight: 700; color: var(--coral); }

/* Demo 2: School app */
.demo-school {
  background: linear-gradient(180deg, #1f1b2e 0%, #2d2740 100%);
  padding: 50px 18px 18px;
  color: var(--cream);
}

.demo-school .app-top {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(244,237,216,0.12);
}

.demo-school .school-badge {
  width: 36px; height: 36px;
  background: var(--coral); border-radius: 8px;
  display: grid; place-items: center;
  font-family: "Playfair Display", serif;
  font-weight: 700; color: var(--cream); font-size: 0.95rem;
}

.demo-school .app-top b {
  font-family: "Playfair Display", serif;
  font-size: 1rem; color: var(--cream); display: block;
}
.demo-school .app-top small {
  font-size: 0.65rem; color: rgba(244,237,216,0.6);
  letter-spacing: 0.1em; text-transform: uppercase;
}

.demo-school .stat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  margin-bottom: 14px;
}
.demo-school .stat-card {
  background: rgba(244,237,216,0.08); border-radius: 10px;
  padding: 10px;
}
.demo-school .stat-card b {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem; color: var(--coral);
  display: block; line-height: 1;
}
.demo-school .stat-card small {
  font-size: 0.65rem; color: rgba(244,237,216,0.7);
  display: block; margin-top: 4px;
}

.demo-school .notice {
  background: rgba(244,237,216,0.06); border-radius: 10px;
  padding: 10px; margin-bottom: 8px;
  border-left: 2px solid var(--coral);
}
.demo-school .notice b { font-size: 0.72rem; color: var(--cream); display: block; }
.demo-school .notice small { font-size: 0.62rem; color: rgba(244,237,216,0.65); }

/* Demo 3: Local shop app */
.demo-shop {
  background: linear-gradient(180deg, #ede2c3 0%, #d8cba5 100%);
  padding: 50px 18px 18px;
  color: var(--navy);
}

.demo-shop .app-top {
  margin-bottom: 14px;
}

.demo-shop .app-top b {
  font-family: "Playfair Display", serif;
  font-size: 1rem; color: var(--navy); display: block;
}
.demo-shop .app-top small { font-size: 0.7rem; color: var(--ink-muted); }

.demo-shop .search-bar {
  background: white; border-radius: 20px;
  padding: 8px 14px; font-size: 0.72rem; color: var(--ink-muted);
  margin-bottom: 12px;
}

.demo-shop .product-grid-demo {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.demo-shop .product-card-demo {
  background: white; border-radius: 12px; padding: 10px;
}
.demo-shop .product-img-demo {
  width: 100%; aspect-ratio: 1; border-radius: 8px; margin-bottom: 6px;
}
.demo-shop .product-img-demo.p1 { background: linear-gradient(135deg, #a8c89e, #6a8a6f); }
.demo-shop .product-img-demo.p2 { background: linear-gradient(135deg, #e8a07a, #c47a55); }
.demo-shop .product-img-demo.p3 { background: linear-gradient(135deg, #d16042, #b54b2f); }
.demo-shop .product-img-demo.p4 { background: linear-gradient(135deg, #f0c971, #c9a14c); }

.demo-shop .product-card-demo b { font-size: 0.7rem; display: block; color: var(--navy); }
.demo-shop .product-card-demo .price { font-size: 0.75rem; font-weight: 700; color: var(--coral); }

.phone-demo .caption {
  text-align: center;
  margin-top: 24px;
  color: var(--cream);
}

.phone-demo .caption b {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--cream);
  display: block;
  margin-bottom: 4px;
}

.phone-demo .caption small {
  display: block;
  color: rgba(244, 237, 216, 0.65);
  font-size: 0.85rem;
}

@media (max-width: 880px) {
  .phone-grid { grid-template-columns: 1fr; gap: 50px; }
  .phone-frame { max-width: 260px; margin: 0 auto; }
}

/* ============================================
   BUSINESS BAND (Local business platform)
   ============================================ */
.business-band {
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%);
}

.business-band .section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.business-ui {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.business-panel,
.catalog-panel {
  background: white;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}

.profile-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.shop-mark {
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--coral);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.profile-head b {
  display: block;
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.profile-head small {
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--cream-soft);
  border-radius: 14px;
}

.metric-row span {
  text-align: center;
}

.metric-row b {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--coral);
  display: block;
}

.metric-row small {
  font-size: 0.72rem;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.wall-post {
  padding: 16px;
  border-radius: 12px;
  background: var(--cream-soft);
  border-left: 3px solid var(--coral);
}

.wall-post b {
  color: var(--navy);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.wall-post p {
  margin: 6px 0 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.catalog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.catalog-head h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin: 0;
}

.catalog-head button {
  background: var(--navy);
  color: var(--cream);
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.product-card {
  background: var(--cream-soft);
  border-radius: 14px;
  padding: 14px;
  border: 1px solid var(--line-soft);
}

.product-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  margin-bottom: 12px;
}

.product-img.green  { background: linear-gradient(135deg, #a8c89e, #6a8a6f); }
.product-img.blue   { background: linear-gradient(135deg, #c5b8e0, #6e5f9c); }
.product-img.orange { background: linear-gradient(135deg, #e8a07a, #c47a55); }

.product-card b {
  display: block;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.product-card small {
  display: block;
  font-size: 0.78rem;
  color: var(--ink-muted);
  margin-bottom: 6px;
}

.product-card strong {
  display: block;
  font-family: "Playfair Display", serif;
  color: var(--coral);
  font-size: 1.05rem;
  font-weight: 700;
}

@media (max-width: 880px) {
  .business-ui { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   PROOF SECTION
   ============================================ */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.proof-grid article {
  background: var(--cream-soft);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--line-soft);
  border-top: 3px solid var(--coral);
}

.proof-grid article b {
  display: block;
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.proof-grid article p { margin: 0; font-size: 0.96rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-grid article {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-grid article::before {
  content: "“";
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  color: var(--coral);
  position: absolute;
  top: 6px;
  left: 20px;
  line-height: 1;
  opacity: 0.5;
}

.testimonial-grid article p {
  position: relative;
  z-index: 1;
  font-family: "Playfair Display", serif;
  font-size: 1.08rem;
  color: var(--navy);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 20px;
}

.testimonial-grid article b {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
}

.testimonial-grid article small {
  color: var(--ink-muted);
  font-size: 0.82rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  color: var(--cream);
  padding: 50px clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand { color: var(--cream); }
.footer-brand strong { color: var(--cream); }
.footer-brand small { color: rgba(244, 237, 216, 0.65); }

.site-footer p { color: rgba(244, 237, 216, 0.7); margin: 0; font-size: 0.92rem; }
.site-footer a { color: var(--coral); font-weight: 600; }
.site-footer a:hover { color: var(--cream); }

/* ============================================
   SEND MODAL (email + gmail + copy)
   ============================================ */
.send-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.send-modal.is-open { display: flex; }

.send-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 27, 46, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: fadeIn 0.18s ease;
}

.send-modal-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.22s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

.send-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: var(--ink-muted);
  cursor: pointer;
  border-radius: 50%;
  display: grid;
  place-items: center;
  line-height: 1;
}

.send-modal-close:hover {
  background: rgba(31, 27, 46, 0.08);
  color: var(--navy);
}

.send-modal-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.2;
}

.send-modal-sub {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0 0 24px;
}

.send-modal-sub b { color: var(--navy); }

.send-options {
  display: grid;
  gap: 12px;
}

.send-option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.18s ease;
}

.send-option:hover {
  border-color: var(--coral);
  background: var(--cream-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.send-option:active { transform: translateY(0); }

.send-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--navy);
  color: var(--coral);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 700;
}

.send-option > span:last-child {
  display: block;
  flex: 1;
}

.send-option b {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 2px;
  font-weight: 600;
}

.send-option small {
  display: block;
  color: var(--ink-muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.send-status {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 500;
  min-height: 1px;
}

.send-status:empty { padding: 0; }
.send-status.is-success { background: rgba(168, 200, 158, 0.25); color: #2e5a3a; }
.send-status.is-error   { background: rgba(209, 96, 66, 0.15);  color: var(--coral-deep); }

@media (max-width: 520px) {
  .send-modal-card { padding: 28px 22px; }
  .send-modal-card h3 { font-size: 1.35rem; }
  .send-option { padding: 14px; gap: 12px; }
  .send-icon { width: 40px; height: 40px; font-size: 1.15rem; }
}
