/* ============ RESET ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', sans-serif;
  background: #08081a;
  color: #f0ebe1;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; }
::selection { background: #c8a24e; color: #08081a; }

/* ============ LAYOUT ============ */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.wrap-narrow { max-width: 800px; }
.gold { color: #c8a24e; }

.section {
  padding: 70px 0;
}
.section-alt {
  background: #0d0d24;
}
.section-head {
  text-align: center;
  margin: 0 auto 40px;
  max-width: 800px;
}

/* ============ TYPOGRAPHY ============ */
.tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c8a24e;
  margin-bottom: 12px;
}
.h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 16px;
}
.lead {
  font-size: 0.95rem;
  color: #9a9ab0;
  line-height: 1.8;
}

/* ============ PRELOADER ============ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #08081a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
.preloader.hide { opacity: 0; visibility: hidden; }
.pre-inner { text-align: center; }
.pre-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #c8a24e;
  margin: 0 auto 16px;
}
.pre-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: #c8a24e;
  margin-bottom: 20px;
}
.pre-bar {
  width: 160px;
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}
.pre-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #c8a24e, #e2c97e);
  animation: fill 1.8s ease forwards;
}
@keyframes fill { to { width: 100%; } }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn-gold {
  background: linear-gradient(135deg, #c8a24e, #e2c97e);
  color: #08081a;
  box-shadow: 0 4px 16px rgba(200,162,78,0.2);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,162,78,0.35);
}
.btn-line {
  background: transparent;
  color: #c8a24e;
  border: 1.5px solid #c8a24e;
}
.btn-line:hover {
  background: #c8a24e;
  color: #08081a;
}
.btn-full { width: 100%; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(8,8,26,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1002;
}
.logo-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #c8a24e;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}
.menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: rgba(8,8,26,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 30px;
  gap: 20px;
  transition: right 0.35s ease;
  z-index: 999;
}
.menu.open {
  display: flex;
  right: 0;
}
.menu-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #9a9ab0;
  transition: color 0.3s;
  padding: 5px 0;
}
.menu-link:hover { color: #ffffff; }
.menu-cta {
  background: linear-gradient(135deg, #c8a24e, #e2c97e);
  color: #08081a !important;
  padding: 10px 24px !important;
  border-radius: 999px;
  margin-top: 16px;
}
.menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1002;
  background: transparent;
}
.menu-btn span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s;
  display: block;
}
.menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 110px 0 60px;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}
.orb1 {
  width: 280px;
  height: 280px;
  background: #c8a24e;
  top: -60px;
  right: -60px;
  opacity: 0.1;
}
.orb2 {
  width: 240px;
  height: 240px;
  background: #4a3592;
  bottom: -60px;
  left: -60px;
  opacity: 0.15;
}
.hero-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,162,78,0.2);
  border-radius: 999px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  color: #e2c97e;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: #c8a24e;
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #ffffff;
}
.hero-title em { font-style: italic; color: #c8a24e; }
.hero-desc {
  font-size: 0.92rem;
  color: #9a9ab0;
  line-height: 1.8;
  margin-bottom: 24px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-trust {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  color: #6e6e88;
}
.hero-photo {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
}
.hero-img {
  width: 100%;
  border-radius: 20px;
  border: 2px solid rgba(200,162,78,0.2);
  aspect-ratio: 3/4;
  object-fit: cover;
}
.hero-card {
  position: absolute;
  background: rgba(13,13,36,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(200,162,78,0.2);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.hero-card strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: #c8a24e;
}
.hero-card small {
  display: block;
  font-size: 0.65rem;
  color: #9a9ab0;
}
.hc-emoji { font-size: 1.2rem; }
.hero-card-1 { bottom: 15px; left: -10px; }
.hero-card-2 { top: 15px; right: -10px; }

/* ============ STATS ============ */
.stats {
  padding: 40px 0;
  background: #0d0d24;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: center;
}
.stat-box { padding: 12px 6px; }
.stat-box h3, .stat-box span {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #c8a24e;
  display: inline;
}
.stat-box span { font-size: 1.2rem; }
.stat-box p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.65rem;
  color: #6e6e88;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
  margin-top: 4px;
}

/* ============ ABOUT ============ */
.about-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about-photo-box {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
}
.about-img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8a24e, #e2c97e);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(200,162,78,0.35);
  padding: 8px;
  text-align: center;
}
.about-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #08081a;
  line-height: 1;
}
.about-badge span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.5rem;
  font-weight: 600;
  color: #08081a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin-top: 4px;
}
.prose { margin-bottom: 24px; }
.prose p {
  color: #c5c5d8;
  margin-bottom: 14px;
  font-size: 0.92rem;
}
.prose strong { color: #ffffff; }
.prose h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #c8a24e;
  margin: 24px 0 10px;
}

/* ============ GRID ============ */
.grid {
  display: grid;
  gap: 16px;
}
.grid-3, .grid-4 {
  grid-template-columns: 1fr;
}

/* ============ CARDS (WHO + DIFFERENCE) ============ */
.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 24px 20px;
  transition: all 0.3s ease;
}
.card:hover, .card:active {
  border-color: rgba(200,162,78,0.2);
}
.card-ico { font-size: 1.6rem; margin-bottom: 12px; }
.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.card p {
  color: #9a9ab0;
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ============ SERVICES ============ */
.service {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c8a24e, #e2c97e);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service:hover::before, .service:active::before { transform: scaleX(1); }
.service:hover, .service:active { border-color: rgba(200,162,78,0.2); }
.svc-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.svc-ico {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(200,162,78,0.15), rgba(200,162,78,0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.svc-no {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(200,162,78,0.1);
}
.service h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.service > p {
  color: #9a9ab0;
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.service ul {
  list-style: none;
  margin-bottom: 14px;
  flex-grow: 1;
}
.service ul li {
  color: #c5c5d8;
  font-size: 0.82rem;
  padding: 4px 0 4px 16px;
  position: relative;
  line-height: 1.55;
}
.service ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 6px;
  color: #c8a24e;
  font-size: 0.55rem;
}
.svc-best {
  font-size: 0.8rem;
  color: #6e6e88;
  padding: 10px 12px;
  background: rgba(200,162,78,0.05);
  border-radius: 8px;
  border-left: 3px solid #c8a24e;
  margin-bottom: 14px;
  line-height: 1.5;
}
.svc-best strong { color: #c8a24e; }
.svc-cta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #c8a24e;
  margin-top: auto;
  transition: opacity 0.3s;
}
.svc-cta:hover { opacity: 0.8; }

/* ============ PROCESS ============ */
.process-list {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.process-item {
  display: flex;
  gap: 18px;
  margin-bottom: 32px;
  position: relative;
}
.process-item:last-child { margin-bottom: 0; }
.process-item::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 56px;
  bottom: -32px;
  width: 2px;
  background: rgba(200,162,78,0.2);
}
.process-item:last-child::after { display: none; }
.proc-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #08081a;
  border: 2px solid #c8a24e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #c8a24e;
  position: relative;
  z-index: 2;
}
.proc-content { padding-top: 6px; }
.proc-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 8px;
}
.proc-content p {
  color: #9a9ab0;
  font-size: 0.88rem;
  line-height: 1.75;
}

/* ============ QUOTE ============ */
.quote-box {
  text-align: center;
  max-width: 600px;
  margin: 32px auto 0;
}
.quote-box p {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: #e2c97e;
  line-height: 1.7;
}

/* ============ TESTIMONIALS ============ */
.testimonial {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
}
.t-stars {
  color: #c8a24e;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial > p {
  font-size: 0.88rem;
  color: #f0ebe1;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 18px;
  flex-grow: 1;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c8a24e, #e2c97e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #08081a;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.t-author h4 {
  font-size: 0.9rem;
  color: #ffffff;
}
.t-author span {
  font-size: 0.75rem;
  color: #6e6e88;
}

/* ============ GENRE ============ */
.genre-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  transition: all 0.3s ease;
}
.genre-box:hover, .genre-box:active { border-color: rgba(200,162,78,0.2); }
.g-ico { font-size: 1.8rem; margin-bottom: 10px; }
.genre-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
  color: #ffffff;
  margin-bottom: 8px;
}
.genre-box p {
  font-size: 0.78rem;
  color: #9a9ab0;
  line-height: 1.6;
}

/* ============ FAQ ============ */
.faq-list { }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 500;
  text-align: left;
  gap: 12px;
  background: transparent;
}
.faq-plus {
  color: #c8a24e;
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.3s;
  line-height: 1;
  flex-shrink: 0;
}
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-bottom 0.4s ease;
}
.faq-item.open .faq-body {
  max-height: 500px;
  padding-bottom: 18px;
}
.faq-body p {
  color: #9a9ab0;
  font-size: 0.88rem;
  line-height: 1.8;
}

/* ============ CTA ============ */
.cta-section {
  text-align: center;
}
.cta-inner {
  max-width: 650px;
  margin: 0 auto;
}
.cta-mini {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  color: #6e6e88;
  margin-top: 14px;
}

/* ============ CONTACT ============ */
.contact-wrap {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.info-list { margin: 24px 0; }
.info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.info-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(200,162,78,0.08);
  border: 1px solid rgba(200,162,78,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.info-row h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  color: #6e6e88;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
.info-row p { font-size: 0.9rem; color: #f0ebe1; }
.contact-photo {
  max-width: 240px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(200,162,78,0.2);
  margin: 20px 0;
}
.contact-photo img { width: 100%; }

/* ============ FORM ============ */
.form {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 24px 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #9a9ab0;
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #f0ebe1;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: #c8a24e;
  box-shadow: 0 0 0 3px rgba(200,162,78,0.15);
}
.form-field textarea {
  resize: vertical;
  min-height: 100px;
}
.form-field select option {
  background: #08081a;
  color: #f0ebe1;
}
.form-note {
  font-size: 0.78rem;
  color: #6e6e88;
  text-align: center;
  margin-top: 14px;
}
.form-note strong { color: #c8a24e; }

/* ============ FOOTER ============ */
.footer {
  padding: 40px 0 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.foot-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.foot-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #c8a24e;
}
.foot-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}
.foot-brand > p {
  font-size: 0.82rem;
  color: #6e6e88;
  line-height: 1.6;
}
.foot-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c8a24e;
  margin-bottom: 12px;
}
.foot-col a, .foot-col span {
  display: block;
  font-size: 0.82rem;
  color: #9a9ab0;
  margin-bottom: 8px;
  transition: color 0.3s;
}
.foot-col a:hover { color: #c8a24e; }
.foot-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.foot-bottom p {
  font-size: 0.72rem;
  color: #6e6e88;
}

/* ============ TOP BUTTON ============ */
.top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #c8a24e;
  color: #08081a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(200,162,78,0.2);
}
.top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============ REVEAL ANIM ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   TABLET (768px and up)
============================================ */
@media (min-width: 768px) {
  .wrap { padding: 0 32px; }
  .section { padding: 90px 0; }
  .h2 { font-size: 2.2rem; }
  .hero { padding: 130px 0 80px; }
  .hero-title { font-size: 2.5rem; }
  .hero-desc { font-size: 0.98rem; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .card-wide { grid-column: 1 / -1; }
  .form-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .form { padding: 32px 28px; }
  .foot-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 32px; }
  .about-photo-box { max-width: 340px; }
  .hero-photo { max-width: 340px; }
}

/* ============================================
   DESKTOP (1024px and up)
============================================ */
@media (min-width: 1024px) {
  .section { padding: 110px 0; }
  .h2 { font-size: 2.6rem; }

  .menu-btn { display: none; }
  .menu {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    gap: 26px;
    display: flex !important;
    right: auto;
  }
  .menu-link {
    font-size: 0.82rem;
    padding: 0;
  }
  .menu-cta {
    padding: 9px 22px !important;
    font-size: 0.78rem !important;
    margin-top: 0;
  }

  .hero-wrap {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  .hero-text { flex: 1.2; }
  .hero-photo { flex: 0.8; max-width: 380px; }
  .hero-title { font-size: 3.4rem; }

  .stats-grid { grid-template-columns: repeat(6, 1fr); }
  .stat-box h3, .stat-box span { font-size: 2.4rem; }
  .stat-box span { font-size: 1.4rem; }

  .about-wrap {
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
  }
  .about-photo-box {
    flex-shrink: 0;
    width: 340px;
    max-width: 340px;
    position: sticky;
    top: 100px;
  }

  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }

  .contact-wrap {
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
  }
  .contact-left { flex: 1; }
  .contact-right { flex: 1.1; }
  .form { padding: 40px 34px; }

  .proc-num { width: 60px; height: 60px; font-size: 1.1rem; }
  .process-item::after { left: 29px; top: 64px; }
}

/* ============================================
   LARGE DESKTOP (1200px+)
============================================ */
@media (min-width: 1200px) {
  .hero-title { font-size: 3.8rem; }
  .h2 { font-size: 2.8rem; }
}
