/* =========================================================
   AntiRibet ID - main.css
   Concept: Clean Lightmode + Soft Red Yellow + Soft Parallax
   Note: Responsive rules taruh di responsive.css
========================================================= */

/* =========================
   1. CSS VARIABLES
========================= */

:root {
  /* Brand Color */
  --color-red: #e45d55;
  --color-red-dark: #c84a43;
  --color-red-soft: #ffe5e2;
  --color-red-pale: #fff3f1;

  --color-yellow: #f6c85f;
  --color-yellow-dark: #d8a942;
  --color-yellow-soft: #fff3cf;
  --color-yellow-pale: #fffaf0;

  /* Neutral Lightmode */
  --color-white: #ffffff;
  --color-cream: #fffdf8;
  --color-soft-bg: #fff8ec;
  --color-light-gray: #f6f4ef;
  --color-border: #ece6dc;

  --color-text: #2a2523;
  --color-heading: #171312;
  --color-muted: #746d68;

  /* Utility */
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #1eb85a;

  /* Shadow */
  --shadow-xs: 0 8px 22px rgba(42, 37, 35, 0.06);
  --shadow-sm: 0 14px 34px rgba(42, 37, 35, 0.08);
  --shadow-md: 0 22px 60px rgba(42, 37, 35, 0.1);
  --shadow-red: 0 18px 42px rgba(228, 93, 85, 0.18);

  /* Radius */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 38px;
  --radius-full: 999px;

  /* Layout */
  --container-width: 1180px;
  --nav-height: 82px;
  --section-padding: 110px;

  /* Transition */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s ease;
  --transition-slow: 0.6s ease;
}

/* =========================
   2. RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  background: var(--color-cream);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  cursor: pointer;
  background: transparent;
}

ul,
ol {
  list-style: none;
}

/* =========================
   3. GLOBAL LAYOUT
========================= */

.container {
  width: min(100% - 40px, var(--container-width));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: var(--section-padding) 0;
}

.section-light {
  background: var(--color-cream);
}

.section-soft {
  background: linear-gradient(180deg, var(--color-cream), var(--color-soft-bg));
}

.section-header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 15px;
  margin-bottom: 18px;
  border-radius: var(--radius-full);
  background: var(--color-red-pale);
  color: var(--color-red-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.section-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-yellow);
  box-shadow: 0 0 0 5px rgba(246, 200, 95, 0.2);
}

.section-title {
  color: var(--color-heading);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.section-description {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.text-red {
  color: var(--color-red);
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-red), var(--color-yellow-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.highlight {
  display: inline;
  padding: 0 8px 3px;
  border-radius: 10px;
  background: var(--color-yellow-soft);
  color: var(--color-red-dark);
}

/* =========================
   4. BUTTONS
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-full);
  font-weight: 850;
  line-height: 1;
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal),
    background var(--transition-normal),
    color var(--transition-normal),
    border-color var(--transition-normal);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  color: var(--color-white);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  box-shadow: 0 24px 55px rgba(228, 93, 85, 0.26);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-heading);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background: var(--color-yellow-soft);
  border-color: rgba(216, 169, 66, 0.35);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
  box-shadow: 0 16px 38px rgba(37, 211, 102, 0.22);
}

.btn-whatsapp:hover {
  background: var(--color-whatsapp-dark);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-red);
  font-weight: 850;
  transition: gap var(--transition-normal), color var(--transition-normal);
}

.btn-link:hover {
  gap: 13px;
  color: var(--color-red-dark);
}

/* =========================
   5. NAVBAR
========================= */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  height: var(--nav-height);
  transition:
    background var(--transition-normal),
    box-shadow var(--transition-normal),
    backdrop-filter var(--transition-normal);
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 34px rgba(42, 37, 35, 0.07);
}

.navbar {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 15px;
  background: var(--color-white);
  box-shadow: var(--shadow-xs);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  color: var(--color-heading);
  font-size: 1rem;
  font-weight: 950;
  letter-spacing: -0.025em;
}

.brand-tagline {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 650;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  position: relative;
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 800;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 3px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--color-red), var(--color-yellow));
  transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-red);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: var(--radius-full);
  background: var(--color-heading);
  transition:
    transform var(--transition-normal),
    opacity var(--transition-normal);
}

/* =========================
   6. HERO SECTION
========================= */

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-height) + 70px) 0 86px;
  background:
    radial-gradient(circle at 10% 16%, rgba(246, 200, 95, 0.28), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(228, 93, 85, 0.14), transparent 25%),
    linear-gradient(180deg, var(--color-cream), var(--color-yellow-pale));
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: -180px;
  top: 160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(246, 200, 95, 0.2);
  filter: blur(8px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -170px;
  bottom: 80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(228, 93, 85, 0.13);
  filter: blur(10px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.92fr);
  align-items: center;
  gap: 58px;
}

.hero-content {
  max-width: 690px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px;
  margin-bottom: 24px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(236, 230, 220, 0.9);
  color: var(--color-red-dark);
  box-shadow: var(--shadow-xs);
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
  font-weight: 850;
}

.hero-badge-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-yellow-soft);
}

.hero-title {
  color: var(--color-heading);
  font-size: clamp(3rem, 6vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.078em;
  font-weight: 950;
}

.hero-description {
  max-width: 620px;
  margin-top: 24px;
  color: var(--color-muted);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-points {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 26px;
}

.hero-point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-point::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-yellow);
  box-shadow: 0 0 0 5px rgba(246, 200, 95, 0.18);
}

/* =========================
   7. HERO PARALLAX VISUAL
========================= */

.hero-visual {
  position: relative;
  min-height: 600px;
}

.parallax-scene {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.visual-orbit {
  position: absolute;
  inset: 70px 38px 40px;
  border-radius: 44% 56% 52% 48%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.96), transparent 32%),
    linear-gradient(145deg, rgba(255, 243, 207, 0.85), rgba(255, 229, 226, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.hero-main-card {
  position: absolute;
  top: 118px;
  left: 50%;
  width: min(390px, 86%);
  padding: 26px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
  transform: translateX(-50%) rotate(-2deg);
  z-index: 4;
}

.hero-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.hero-card-title {
  color: var(--color-heading);
  font-size: 1.12rem;
  font-weight: 950;
  letter-spacing: -0.025em;
}

.hero-card-status {
  padding: 6px 11px;
  border-radius: var(--radius-full);
  background: var(--color-yellow-soft);
  color: var(--color-red-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.document-list {
  display: grid;
  gap: 13px;
}

.document-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.82);
  border: 1px solid rgba(236, 230, 220, 0.75);
}

.document-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--color-red-soft), var(--color-yellow-soft));
  color: var(--color-red-dark);
  font-size: 1.25rem;
}

.document-copy strong {
  display: block;
  color: var(--color-heading);
  font-size: 0.94rem;
  line-height: 1.25;
}

.document-copy span {
  display: block;
  margin-top: 3px;
  color: var(--color-muted);
  font-size: 0.8rem;
  line-height: 1.3;
}

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 178px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.floating-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 15px;
  background: var(--color-red-pale);
  color: var(--color-red);
  font-size: 1.2rem;
}

.floating-copy strong {
  display: block;
  color: var(--color-heading);
  font-size: 0.9rem;
  line-height: 1.2;
}

.floating-copy span {
  display: block;
  margin-top: 2px;
  color: var(--color-muted);
  font-size: 0.76rem;
  line-height: 1.25;
}

.floating-card.passport {
  top: 78px;
  left: 0;
}

.floating-card.sim {
  top: 76px;
  right: 0;
}

.floating-card.bpkb {
  right: 12px;
  bottom: 78px;
}

.floating-card.tax {
  left: 24px;
  bottom: 116px;
}

.parallax-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.blob-red {
  width: 126px;
  height: 126px;
  top: 48px;
  left: 36%;
  background: rgba(228, 93, 85, 0.12);
}

.blob-yellow {
  width: 168px;
  height: 168px;
  right: 12%;
  bottom: 18%;
  background: rgba(246, 200, 95, 0.2);
}

.blob-small {
  width: 52px;
  height: 52px;
  left: 14%;
  bottom: 34%;
  background: rgba(228, 93, 85, 0.12);
}

/* =========================
   8. TRUST STRIP
========================= */

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -42px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(236, 230, 220, 0.78);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  background: var(--color-yellow-pale);
}

.trust-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 15px;
  background: var(--color-yellow-soft);
  color: var(--color-red-dark);
  font-size: 1.15rem;
}

.trust-copy strong {
  display: block;
  color: var(--color-heading);
  font-size: 0.92rem;
  line-height: 1.2;
}

.trust-copy span {
  display: block;
  margin-top: 3px;
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

/* =========================
   9. SERVICES SECTION
========================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 340px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition:
    transform var(--transition-normal),
    box-shadow var(--transition-normal),
    border-color var(--transition-normal);
}

.service-card::before {
  content: "";
  position: absolute;
  top: -58px;
  right: -58px;
  width: 154px;
  height: 154px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-red-soft), var(--color-yellow-soft));
  opacity: 0.9;
  transition: transform var(--transition-slow);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(228, 93, 85, 0.28);
  box-shadow: var(--shadow-red);
}

.service-card:hover::before {
  transform: scale(1.18);
}

.service-icon {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--color-red-pale), var(--color-yellow-soft));
  color: var(--color-red);
  font-size: 1.65rem;
}

.service-title {
  position: relative;
  z-index: 2;
  color: var(--color-heading);
  font-size: 1.23rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
  font-weight: 950;
}

.service-description {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.service-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 700;
}

.service-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--color-yellow-soft);
  color: var(--color-red-dark);
  font-size: 0.72rem;
  font-weight: 950;
}

.service-footer {
  position: relative;
  z-index: 2;
  margin-top: 24px;
}

/* =========================
   10. FEATURE / WHY SECTION
========================= */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}

.feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 20px;
  background: var(--color-red-pale);
  color: var(--color-red);
  font-size: 1.5rem;
}

.feature-title {
  color: var(--color-heading);
  font-size: 1.15rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.feature-description {
  margin-top: 10px;
  color: var(--color-muted);
  font-size: 0.95rem;
}

/* =========================
   11. PROCESS SECTION
========================= */

.process-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.process-panel {
  position: relative;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 10%, rgba(246, 200, 95, 0.28), transparent 34%),
    linear-gradient(145deg, var(--color-white), var(--color-yellow-pale));
  border: 1px solid rgba(236, 230, 220, 0.9);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.process-panel-title {
  color: var(--color-heading);
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 950;
}

.process-panel-description {
  margin-top: 14px;
  color: var(--color-muted);
}

.process-list {
  display: grid;
  gap: 16px;
}

.process-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
}

.process-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--color-red), var(--color-red-dark));
  color: var(--color-white);
  font-weight: 950;
}

.process-title {
  color: var(--color-heading);
  font-size: 1.08rem;
  font-weight: 950;
}

.process-description {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 0.94rem;
}

/* =========================
   12. FAQ SECTION
========================= */

.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 22px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  color: var(--color-heading);
  text-align: left;
  font-size: 1rem;
  font-weight: 900;
}

.faq-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-yellow-soft);
  color: var(--color-red-dark);
  transition: transform var(--transition-normal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.faq-answer-inner {
  padding: 0 24px 22px;
  color: var(--color-muted);
  font-size: 0.96rem;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

/* =========================
   13. CTA SECTION
========================= */

.cta-section {
  padding: 90px 0;
}

.cta-box {
  position: relative;
  padding: 58px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 14% 20%, rgba(246, 200, 95, 0.34), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(228, 93, 85, 0.18), transparent 32%),
    linear-gradient(145deg, var(--color-white), var(--color-yellow-pale));
  border: 1px solid rgba(236, 230, 220, 0.92);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.cta-title {
  color: var(--color-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  font-weight: 950;
}

.cta-description {
  margin-top: 16px;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.cta-note {
  margin-top: 18px;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 650;
}

/* =========================
   14. DISCLAIMER CARD
========================= */

.disclaimer-card {
  padding: 24px;
  border-radius: 24px;
  background: var(--color-red-pale);
  border: 1px solid rgba(228, 93, 85, 0.18);
}

.disclaimer-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-red-dark);
  font-weight: 950;
}

.disclaimer-card p {
  color: var(--color-muted);
  font-size: 0.94rem;
}

/* =========================
   15. FOOTER
========================= */

.site-footer {
  padding: 70px 0 28px;
  background: var(--color-heading);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 34px;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 15px;
  background: var(--color-white);
}

.footer-brand-name {
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 950;
}

.footer-description {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.footer-title {
  color: var(--color-white);
  margin-bottom: 16px;
  font-size: 0.98rem;
  font-weight: 950;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.93rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-yellow);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

/* =========================
   16. PAGE HEADER
   For inner pages later
========================= */

.page-header {
  position: relative;
  padding: calc(var(--nav-height) + 78px) 0 78px;
  background:
    radial-gradient(circle at 12% 18%, rgba(246, 200, 95, 0.24), transparent 28%),
    radial-gradient(circle at 86% 8%, rgba(228, 93, 85, 0.12), transparent 25%),
    linear-gradient(180deg, var(--color-cream), var(--color-yellow-pale));
  overflow: hidden;
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--color-red);
}

.page-title {
  color: var(--color-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
  font-weight: 950;
}

.page-description {
  max-width: 690px;
  margin-top: 20px;
  color: var(--color-muted);
  font-size: 1.08rem;
}

/* =========================
   17. FORM ELEMENTS
========================= */

.form-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-label {
  color: var(--color-heading);
  font-size: 0.9rem;
  font-weight: 850;
}

.form-control {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  background: var(--color-cream);
  border: 1px solid var(--color-border);
  color: var(--color-heading);
  outline: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

textarea.form-control {
  min-height: 140px;
  padding: 14px 16px;
  resize: vertical;
}

.form-control:focus {
  background: var(--color-white);
  border-color: rgba(228, 93, 85, 0.45);
  box-shadow: 0 0 0 4px rgba(228, 93, 85, 0.1);
}

/* =========================
   18. UTILITY CLASSES
========================= */

.mt-0 {
  margin-top: 0;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.text-center {
  text-align: center;
}

.hidden {
  display: none !important;
}