/* ==========================================================================
   TRIGYA SERVICES — Design tokens
   Deep Navy / Royal Blue / White / Bright Red / Premium Gold
   Display: Sora · Body: Manrope · Marathi: Noto Sans Devanagari
   ========================================================================== */

:root {
  /* Colors */
  --navy-950: #070b1f;
  --navy-900: #0a1230;
  --navy-800: #101a42;
  --navy-700: #16215a;
  --royal-600: #1d3ee0;
  --royal-500: #2f52f7;
  --royal-400: #5b74ff;
  --royal-tint: #eef1ff;
  --red-600: #d81c2e;
  --red-500: #ef2338;
  --gold-500: #d8ab4c;
  --gold-400: #f1cf80;
  --gold-300: #f7e3ae;
  --white: #ffffff;
  --paper: #f6f7fb;
  --ink-900: #0d1226;
  --ink-700: #2b3150;
  --ink-500: #5b6280;
  --ink-300: #9ba1bd;
  --line: #e6e8f2;

  /* Gradients */
  --grad-navy: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 45%, var(--navy-800) 100%);
  --grad-royal: linear-gradient(135deg, var(--royal-600), var(--royal-400));
  --grad-gold: linear-gradient(120deg, var(--gold-500) 0%, var(--gold-300) 55%, var(--gold-500) 100%);
  --grad-red-gold: linear-gradient(120deg, var(--red-500) 0%, var(--gold-400) 100%);

  /* Type */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-mr: 'Noto Sans Devanagari', var(--font-body);

  /* Shape / motion */
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-soft: 0 20px 50px -20px rgba(10, 18, 48, 0.25);
  --shadow-lift: 0 30px 70px -25px rgba(10, 18, 48, 0.4);
  --ease: cubic-bezier(.22,1,.36,1);
  --dur: .6s;

  --container: 1180px;
}

@media (prefers-color-scheme: dark) { :root { color-scheme: light; } }

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); }
p { margin: 0; }
:focus-visible { outline: 2.5px solid var(--royal-500); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999; opacity: .025; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.section__inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section__head { max-width: 620px; margin-bottom: 56px; }
.section__head--light { max-width: 640px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--royal-600); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 20px; height: 2px; background: var(--grad-red-gold); border-radius: 2px; }
.eyebrow--light { color: var(--gold-400); }

.section__title { font-size: clamp(28px, 4vw, 42px); line-height: 1.14; font-weight: 700; color: var(--ink-900); letter-spacing: -.01em; }
.section__title--light { color: var(--white); }
.section__desc { margin-top: 16px; font-size: 17px; line-height: 1.65; color: var(--ink-500); max-width: 46ch; }

.text-gradient-gold {
  background: var(--grad-red-gold);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: .01em;
  padding: 14px 26px; border-radius: var(--radius-pill); white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: 10px 18px; font-size: 13.5px; }
.btn--lg { padding: 16px 30px; font-size: 15.5px; }

.btn--primary { background: var(--grad-royal); color: var(--white); box-shadow: 0 14px 30px -10px rgba(29, 62, 224, .55); }
.btn--primary:hover { box-shadow: 0 18px 36px -8px rgba(29, 62, 224, .65); }

.btn--whatsapp { background: #1fb855; color: var(--white); box-shadow: 0 14px 30px -10px rgba(31, 184, 85, .5); }
.btn--whatsapp:hover { box-shadow: 0 18px 36px -8px rgba(31, 184, 85, .6); }

.btn--outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.35); }
.btn--outline:hover { border-color: var(--gold-400); color: var(--gold-300); }

.btn--ghost { background: transparent; color: var(--ink-900); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--royal-500); color: var(--royal-600); }

.btn--solid { background: var(--navy-900); color: var(--white); }
.btn--solid:hover { background: var(--royal-600); }

.btn--glow { background: var(--grad-red-gold); color: var(--navy-950); box-shadow: 0 20px 50px -12px rgba(216, 171, 76, .55); font-weight: 700; }
.btn--glow:hover { box-shadow: 0 24px 56px -10px rgba(216, 171, 76, .7); }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--delay, 0s); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Topbar + Nav
   ========================================================================== */
.topbar { background: var(--navy-950); color: rgba(255,255,255,.75); font-size: 12.5px; }
.topbar__inner { max-width: var(--container); margin: 0 auto; padding: 8px 24px; display: flex; justify-content: space-between; gap: 16px; }
.topbar__phone { color: var(--gold-300); font-weight: 600; }
@media (max-width: 640px) { .topbar__inner { justify-content: center; } .topbar__item:first-child { display: none; } }

.nav { position: sticky; top: 0; z-index: 500; background: rgba(255,255,255,.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
.nav.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px -20px rgba(10,18,48,.3); }
.nav__inner { max-width: var(--container); margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 24px; }

.nav__brand { display: inline-flex; align-items: center; gap: 10px; }
.nav__mark {
  width: 38px; height: 38px; border-radius: 11px; background: var(--grad-navy);
  color: var(--gold-400); font-family: var(--font-display); font-weight: 800; font-size: 18px;
  display: grid; place-items: center; box-shadow: 0 8px 18px -6px rgba(10,18,48,.5);
}
.nav__brand-text { font-family: var(--font-display); font-weight: 700; font-size: 16.5px; color: var(--navy-900); letter-spacing: .02em; }
.nav__brand-text em { font-style: normal; color: var(--royal-600); }

.nav__links { display: flex; align-items: center; gap: 30px; margin: 0 auto; }
.nav__links a { font-size: 14.5px; font-weight: 600; color: var(--ink-700); position: relative; padding: 6px 0; }
.nav__links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--grad-red-gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav__links a:hover { color: var(--navy-900); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 34px; height: 34px; align-items: center; justify-content: center; }
.nav__toggle span { width: 22px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav__links { position: fixed; top: 0; right: 0; height: 100vh; width: min(78vw, 320px); background: var(--white);
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 6px; padding: 100px 28px 28px;
    transform: translateX(100%); transition: transform .4s var(--ease); box-shadow: -20px 0 50px -20px rgba(10,18,48,.3); }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav__actions { display: none; }
  .nav__toggle { display: flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; background: var(--grad-navy); overflow: hidden; padding: 76px 0 110px; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; }
.hero__glow--blue { width: 520px; height: 520px; background: var(--royal-500); top: -160px; right: -120px; animation: float1 12s ease-in-out infinite; }
.hero__glow--red { width: 380px; height: 380px; background: var(--red-600); bottom: -140px; left: -80px; opacity: .3; animation: float2 14s ease-in-out infinite; }
.hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 56px 56px; mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 90%);
}
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px, 30px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px, -25px); } }

.hero__inner {
  position: relative; z-index: 1; max-width: var(--container); margin: 0 auto; padding: 40px 24px 0;
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 40px;
}

.badge {
  display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.85); font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  backdrop-filter: blur(6px);
}
.badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 0 4px rgba(216,171,76,.2); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }

.hero__title { margin-top: 22px; font-size: clamp(40px, 6.4vw, 74px); font-weight: 800; line-height: 1.02; color: var(--white); letter-spacing: -.01em; }
.hero__title-accent { color: var(--gold-300); }

.hero__tagline { margin-top: 18px; font-size: clamp(20px, 2.6vw, 28px); font-weight: 600; color: rgba(255,255,255,.92); font-family: var(--font-display); }
.hero__sub { margin-top: 14px; font-size: 15.5px; font-weight: 600; color: rgba(255,255,255,.55); letter-spacing: .02em; }
.hero__marathi { margin-top: 10px; font-family: var(--font-mr); font-size: 16px; color: var(--gold-300); font-weight: 500; }

.hero__cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }

/* Hero visual — orbit composition */
.hero__visual { display: flex; align-items: center; justify-content: center; position: relative; min-height: 460px; }
.orbit { position: relative; width: 420px; height: 420px; max-width: 100%; }

.orbit__ring { position: absolute; inset: 0; border-radius: 50%; border: 1px dashed rgba(255,255,255,.14); }
.orbit__ring--1 { animation: spin 40s linear infinite; }
.orbit__ring--2 { inset: 38px; animation: spin 50s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }

.orbit__center {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 148px; height: 148px; border-radius: 50%;
  background: linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  box-shadow: 0 0 60px rgba(91,116,255,.35), inset 0 0 30px rgba(255,255,255,.06);
  animation: breathe 5s ease-in-out infinite;
}
@keyframes breathe { 0%,100% { box-shadow: 0 0 60px rgba(91,116,255,.35), inset 0 0 30px rgba(255,255,255,.06); } 50% { box-shadow: 0 0 80px rgba(91,116,255,.5), inset 0 0 30px rgba(255,255,255,.1); } }
.orbit__center-mark { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--gold-300); }
.orbit__center-text { font-family: var(--font-display); font-weight: 700; font-size: 11.5px; letter-spacing: .06em; color: var(--white); text-align: center; line-height: 1.3; }

.orbit__card {
  position: absolute; width: 118px; padding: 14px 12px; border-radius: 16px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center;
  box-shadow: var(--shadow-soft); animation: floatCard 6s ease-in-out infinite;
}
.orbit__icon { font-size: 24px; }
.orbit__label { font-size: 11.5px; font-weight: 700; color: rgba(255,255,255,.9); line-height: 1.3; }

.orbit__card--1 { top: -6px; left: 4%; animation-delay: 0s; }
.orbit__card--2 { top: -6px; right: 4%; animation-delay: .6s; }
.orbit__card--3 { bottom: -6px; left: 4%; animation-delay: 1.2s; }
.orbit__card--4 { bottom: -6px; right: 4%; animation-delay: 1.8s; }
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.orbit__badge {
  position: absolute; display: flex; flex-direction: column; align-items: flex-start; gap: 1px;
  padding: 10px 16px; border-radius: 14px; background: var(--grad-red-gold); color: var(--navy-950);
  box-shadow: 0 16px 34px -10px rgba(216,171,76,.55); animation: floatCard 7s ease-in-out infinite;
}
.orbit__badge-amount { font-family: var(--font-display); font-weight: 800; font-size: 17px; line-height: 1; }
.orbit__badge-label { font-size: 10px; font-weight: 700; }
.orbit__badge--price1 { top: 42%; left: -14px; animation-delay: .3s; }
.orbit__badge--price2 { bottom: 22%; right: -20px; animation-delay: .9s; }

.hero__scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); width: 26px; height: 42px; border-radius: 14px; border: 1.5px solid rgba(255,255,255,.3); display: flex; justify-content: center; padding-top: 8px; z-index: 2; }
.hero__scroll span { width: 4px; height: 8px; border-radius: 2px; background: var(--gold-300); animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(12px); } }

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__cta { justify-content: center; }
  .hero__visual { min-height: 380px; margin-top: 20px; }
  .orbit { width: 340px; height: 340px; }
}
@media (max-width: 420px) {
  .orbit { width: 290px; height: 290px; }
  .orbit__card { width: 96px; padding: 10px; }
}

/* ==========================================================================
   Stats strip
   ========================================================================== */
.stats { background: var(--white); border-bottom: 1px solid var(--line); position: relative; margin-top: -1px; }
.stats__inner { max-width: var(--container); margin: 0 auto; padding: 40px 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; text-align: center; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 3.4vw, 34px); background: var(--grad-royal); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { font-size: 13px; font-weight: 600; color: var(--ink-500); letter-spacing: .02em; }
.stat__divider { width: 1px; height: 40px; background: var(--line); flex-shrink: 0; }
@media (max-width: 700px) {
  .stats__inner { flex-wrap: wrap; gap: 26px 12px; }
  .stat { flex: 1 1 40%; }
  .stat__divider { display: none; }
}

/* ==========================================================================
   Services
   ========================================================================== */
.services { padding: 110px 0 100px; background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.service-card {
  position: relative; padding: 30px 26px 28px; border-radius: var(--radius-lg); background: var(--white);
  border: 1px solid var(--line); box-shadow: var(--shadow-soft); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.service-card::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .4s var(--ease); z-index: 0; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lift); }
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }

.service-card--blue::before { background: linear-gradient(160deg, rgba(47,82,247,.07), transparent 60%); }
.service-card--blue:hover { border-color: rgba(47,82,247,.35); }
.service-card--navy::before { background: linear-gradient(160deg, rgba(10,18,48,.07), transparent 60%); }
.service-card--navy:hover { border-color: rgba(10,18,48,.3); }
.service-card--red::before { background: linear-gradient(160deg, rgba(239,35,56,.07), transparent 60%); }
.service-card--red:hover { border-color: rgba(239,35,56,.3); }
.service-card--gold::before { background: linear-gradient(160deg, rgba(216,171,76,.12), transparent 60%); }
.service-card--gold:hover { border-color: rgba(216,171,76,.45); }

.service-card__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 18px; }
.service-card__icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; font-size: 26px;
  background: var(--grad-navy); box-shadow: var(--shadow-soft); transition: transform .4s var(--ease);
}
.service-card:hover .service-card__icon { transform: scale(1.08) rotate(-4deg); }
.service-card__num { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--ink-300); letter-spacing: .05em; }

.service-card__title { font-size: 21px; font-weight: 700; color: var(--ink-900); margin-bottom: 8px; }
.service-card__desc { font-size: 14.5px; line-height: 1.6; color: var(--ink-500); margin-bottom: 16px; }
.service-card__desc em { color: var(--ink-700); font-style: normal; font-weight: 600; }

.service-card__highlight { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.service-card__highlight span { display: flex; align-items: baseline; gap: 8px; font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--royal-600); background: var(--royal-tint); padding: 9px 14px; border-radius: 12px; }
.service-card__highlight small { font-family: var(--font-body); font-weight: 700; font-size: 12px; color: var(--ink-700); }

.service-card__list { margin-bottom: 20px; flex: 1; }
.service-card__list--tall { min-height: 4px; }
.service-card__list li { position: relative; padding-left: 20px; font-size: 13.8px; color: var(--ink-500); line-height: 2; }
.service-card__list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--grad-red-gold); }

.service-card__cta { margin-top: auto; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--navy-900); display: inline-flex; align-items: center; gap: 6px; transition: gap .3s var(--ease), color .3s var(--ease); }
.service-card__cta:hover { gap: 10px; color: var(--royal-600); }

@media (max-width: 1080px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .service-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Why choose
   ========================================================================== */
.why { position: relative; background: var(--grad-navy); padding: 110px 0; overflow: hidden; }
.why__bg { position: absolute; inset: 0; background-image: radial-gradient(circle at 15% 20%, rgba(47,82,247,.18), transparent 40%), radial-gradient(circle at 85% 80%, rgba(216,171,76,.14), transparent 45%); }
.why .section__inner { position: relative; z-index: 1; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  padding: 30px 26px; border-radius: var(--radius-md); background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(6px);
  transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.08); border-color: rgba(216,171,76,.4); }
.why-card__icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(216,171,76,.12); color: var(--gold-300); margin-bottom: 16px; }
.why-card__icon svg { width: 22px; height: 22px; }
.why-card h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.why-card p { font-size: 13.8px; color: rgba(255,255,255,.55); line-height: 1.55; }

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Offer
   ========================================================================== */
.offer { position: relative; padding: 120px 0; background: linear-gradient(150deg, var(--navy-950) 0%, #2a0d16 55%, var(--navy-950) 100%); overflow: hidden; text-align: center; }
.offer__bg { position: absolute; inset: 0; }
.offer__glow { position: absolute; border-radius: 50%; filter: blur(100px); }
.offer__glow--gold { width: 460px; height: 460px; background: var(--gold-500); opacity: .22; top: -120px; left: -60px; }
.offer__glow--red { width: 460px; height: 460px; background: var(--red-600); opacity: .28; bottom: -140px; right: -60px; }
.offer__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }

.offer__title { margin-top: 8px; font-size: clamp(36px, 6vw, 64px); font-weight: 800; color: var(--white); letter-spacing: -.01em;
  background: var(--grad-red-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }

.offer__grid { margin-top: 40px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; }
.offer__block {
  display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 34px 46px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(8px);
  min-width: 200px;
}
.offer__amount { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 6vw, 58px); color: var(--gold-300); line-height: 1; }
.offer__label { font-size: 13.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,.7); }
.offer__x { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: rgba(255,255,255,.35); }

.offer .btn--glow { margin-top: 44px; }

@media (max-width: 560px) { .offer__block { padding: 26px 30px; min-width: unset; flex: 1 1 42%; } }

/* ==========================================================================
   About
   ========================================================================== */
.about { padding: 120px 0; }
.about__inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }

.about__visual { position: relative; display: flex; align-items: center; justify-content: center; height: 380px; }
.about__card {
  width: 260px; height: 300px; border-radius: 28px; background: var(--grad-navy); position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  box-shadow: var(--shadow-lift);
}
.about__card-mark { font-family: var(--font-display); font-weight: 800; font-size: 46px; color: var(--gold-300); }
.about__card-text { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--white); text-align: center; letter-spacing: .02em; line-height: 1.3; }
.about__card-text em { font-style: normal; color: var(--royal-400); }
.about__card-sub { margin-top: 10px; font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.5); }

.about__ring { position: absolute; border-radius: 28px; border: 1.5px solid var(--line); z-index: 1; }
.about__ring--1 { width: 260px; height: 300px; top: 22px; left: 22px; border-color: rgba(216,171,76,.5); }
.about__ring--2 { width: 260px; height: 300px; bottom: 22px; right: 22px; border-color: rgba(47,82,247,.25); }

.about__text { display: block; margin-top: 18px; font-size: 15.5px; line-height: 1.75; color: var(--ink-500); max-width: 54ch; }
.about__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.about__badge { padding: 9px 18px; border-radius: var(--radius-pill); background: var(--royal-tint); color: var(--royal-600); font-weight: 700; font-size: 13px; }

@media (max-width: 900px) { .about__inner { grid-template-columns: 1fr; gap: 50px; } .about__visual { height: 320px; } }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery { padding: 100px 0 120px; background: var(--paper); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 170px; gap: 18px; }
.gallery-item { position: relative; border-radius: var(--radius-md); overflow: hidden; grid-column: span 1; grid-row: span 1; box-shadow: var(--shadow-soft); }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }

.gallery-item__ph { position: absolute; inset: 0; display: grid; place-items: center; transition: transform .5s var(--ease); }
.gallery-item__ph span { font-size: 44px; filter: drop-shadow(0 6px 10px rgba(0,0,0,.15)); }
.gallery-item:hover .gallery-item__ph { transform: scale(1.08); }

.gallery-item__ph--1 { background: linear-gradient(150deg, var(--royal-600), var(--royal-400)); }
.gallery-item__ph--2 { background: linear-gradient(150deg, var(--navy-900), var(--navy-700)); }
.gallery-item__ph--3 { background: linear-gradient(150deg, var(--red-600), #f0577a); }
.gallery-item__ph--4 { background: linear-gradient(150deg, var(--navy-800), var(--royal-600)); }
.gallery-item__ph--5 { background: linear-gradient(150deg, var(--gold-500), var(--gold-300)); }
.gallery-item__ph--6 { background: linear-gradient(150deg, var(--royal-500), var(--red-500)); }

.gallery-item__tag {
  position: absolute; left: 16px; bottom: 14px; z-index: 2; color: var(--white); font-weight: 700; font-size: 13.5px;
  padding: 7px 14px; border-radius: var(--radius-pill); background: rgba(10,18,48,.35); backdrop-filter: blur(4px);
}

@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; } .gallery-item--wide { grid-column: span 2; } .gallery-item--tall { grid-row: span 1; } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } .gallery-item--wide, .gallery-item--tall { grid-column: span 1; grid-row: span 1; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding: 100px 0 120px; }
.faq__inner { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; background: var(--white); transition: border-color .3s, box-shadow .3s; }
.faq-item.is-open { border-color: rgba(216,171,76,.5); box-shadow: var(--shadow-soft); }

.faq-item__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 24px; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink-900); }
.faq-item__icon { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.faq-item__icon::before, .faq-item__icon::after { content: ''; position: absolute; background: var(--royal-600); border-radius: 2px; transition: transform .35s var(--ease), background .35s var(--ease); }
.faq-item__icon::before { width: 14px; height: 2px; top: 9px; left: 3px; }
.faq-item__icon::after { width: 2px; height: 14px; top: 3px; left: 9px; }
.faq-item.is-open .faq-item__icon::after { transform: rotate(90deg); }
.faq-item.is-open .faq-item__icon::before, .faq-item.is-open .faq-item__icon::after { background: var(--red-500); }

.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); border-top: 0 solid var(--line); }
.faq-item.is-open .faq-item__a { max-height: 220px; border-top: 1px solid var(--line); }
.faq-item__a p { padding: 18px 24px 22px; font-size: 14.8px; line-height: 1.7; color: var(--ink-500); border-left: 3px solid; border-image: var(--grad-red-gold) 1; margin-left: 24px; padding-left: 16px; }

/* ==========================================================================
   Contact CTA band
   ========================================================================== */
.cta-band { position: relative; padding: 110px 0; text-align: center; overflow: hidden; background: var(--grad-navy); }
.cta-band__bg { position: absolute; inset: 0; background-image: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(47,82,247,.25), transparent 70%); }
.cta-band__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.cta-band__title { font-size: clamp(30px, 5vw, 48px); font-weight: 800; color: var(--white); line-height: 1.16; }
.cta-band__text { margin-top: 16px; font-size: 16.5px; color: rgba(255,255,255,.6); }
.cta-band__actions { margin-top: 34px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--navy-950); color: rgba(255,255,255,.6); padding: 70px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__tagline { margin-top: 14px; font-size: 14px; color: rgba(255,255,255,.5); }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.06); display: grid; place-items: center; color: var(--gold-300); transition: background .3s, transform .3s; }
.footer__icon:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }

.footer__heading { display: block; font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.9); margin-bottom: 18px; }
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a { font-size: 14.5px; transition: color .3s; }
.footer__nav a:hover { color: var(--gold-300); }
.footer__contact p { font-size: 14.5px; line-height: 1.6; margin-bottom: 14px; }
.footer__contact a { font-weight: 700; color: var(--gold-300); }

.footer__bottom { text-align: center; padding: 22px 24px; font-size: 12.5px; color: rgba(255,255,255,.35); }

@media (max-width: 760px) { .footer__inner { grid-template-columns: 1fr; gap: 32px; text-align: left; } }

/* ==========================================================================
   Floating WhatsApp + mobile sticky bar
   ========================================================================== */
.float-wa {
  position: fixed; right: 24px; bottom: 28px; z-index: 400; width: 60px; height: 60px; border-radius: 50%;
  background: #1fb855; color: var(--white); display: grid; place-items: center;
  box-shadow: 0 16px 34px -8px rgba(31,184,85,.55); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  animation: waPulse 2.6s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.08); box-shadow: 0 20px 40px -6px rgba(31,184,85,.65); }
@keyframes waPulse { 0%,100% { box-shadow: 0 16px 34px -8px rgba(31,184,85,.55), 0 0 0 0 rgba(31,184,85,.4); } 50% { box-shadow: 0 16px 34px -8px rgba(31,184,85,.55), 0 0 0 12px rgba(31,184,85,0); } }

.sticky-bar { display: none; }

@media (max-width: 760px) {
  .float-wa { right: 16px; bottom: 84px; width: 54px; height: 54px; }
  .sticky-bar {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
    background: var(--white); border-top: 1px solid var(--line); box-shadow: 0 -10px 30px -18px rgba(10,18,48,.35);
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  }
  .sticky-bar__btn { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 8px 4px; border-radius: 14px; font-family: var(--font-display); font-weight: 700; font-size: 11.5px; color: var(--ink-700); }
  .sticky-bar__btn span { font-size: 18px; }
  .sticky-bar__btn--wa { color: #1fb855; }
  body { padding-bottom: 74px; }
}

/* ==========================================================================
   Utility: section spacing rhythm on small screens
   ========================================================================== */
@media (max-width: 640px) {
  .services, .why, .offer, .about, .gallery, .faq, .cta-band { padding-top: 76px; padding-bottom: 76px; }
  .section__head { margin-bottom: 40px; }
}
