:root {
  --gold: #C5973A;
  --gold-light: #E2B95A;
  --gold-dim: #8B6520;
  --dark: #080B12;
  --dark-2: #0E1220;
  --dark-3: #141926;
  --dark-card: #111520;
  --text: #E8E4D8;
  --text-muted: #8A8880;
  --border: rgba(197, 151, 58, 0.18);
  --white: #F4F0E8;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Syne', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
.cursor {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998;
  width: 36px; height: 36px;
  border: 1px solid rgba(197, 151, 58, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.18s ease, width 0.3s ease, height 0.3s ease;
}
body:hover .cursor { opacity: 1; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 2px; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 60px;
  backdrop-filter: blur(20px);
  background: rgba(8, 11, 18, 0.85);
  border-bottom: 1px solid var(--border);
  transition: padding 0.4s ease;
}
nav.scrolled { padding: 14px 60px; }
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--text-muted);
  text-decoration: none; transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold); padding: 10px 22px; font-size: 11px;
  font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: none; transition: all 0.3s ease; font-family: 'Syne', sans-serif;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--gold); color: var(--dark); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  padding: 140px 60px 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 70% at 65% 40%, rgba(197,151,58,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 50% 50% at 20% 80%, rgba(197,151,58,0.05) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(197,151,58,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,151,58,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 100%);
}
.hero-line {
  position: absolute; top: 0; left: 50%; width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-dim) 40%, transparent);
  height: 100%; opacity: 0.3;
}

.hero-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 36px; position: relative; z-index: 1;
  opacity: 0; animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero-tag::before {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 7vw, 110px);
  font-weight: 300; line-height: 0.95;
  letter-spacing: -0.02em;
  position: relative; z-index: 1;
  opacity: 0; animation: fadeUp 0.9s 0.4s ease forwards;
}
.hero-headline em {
  font-style: italic; color: var(--gold);
  display: block;
}

.hero-sub {
  max-width: 560px; margin-top: 36px;
  font-size: 15px; line-height: 1.8; color: var(--text-muted);
  position: relative; z-index: 1;
  opacity: 0; animation: fadeUp 0.9s 0.6s ease forwards;
}

.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-top: 52px;
  position: relative; z-index: 1;
  opacity: 0; animation: fadeUp 0.9s 0.8s ease forwards;
}
.btn-primary {
  background: var(--gold); color: var(--dark);
  padding: 12px 24px; font-size: 11px; font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  transition: all 0.3s ease; cursor: none;
  font-family: 'Syne', sans-serif;
  border: none;
  width: max-content;
  max-width: 100%;
  text-align: center;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 20px 40px rgba(197,151,58,0.25); }
.btn-ghost {
  border: 1px solid var(--border); color: var(--text-muted);
  padding: 12px 24px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; display: inline-block;
  transition: all 0.3s ease; cursor: none;
  font-family: 'Syne', sans-serif;
  width: max-content;
  max-width: 100%;
  text-align: center;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-scroll {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeUp 0.9s 1.2s ease forwards;
  z-index: 1;
}
.hero-scroll span {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2s ease infinite;
}

.hero-stats {
  position: absolute; right: 60px; bottom: 80px;
  display: flex; flex-direction: column; gap: 28px;
  z-index: 1;
  opacity: 0; animation: fadeLeft 0.9s 1s ease forwards;
}
.stat-item { text-align: right; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 600; color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

/* SUBPAGE HEADER */
.page-header {
  min-height: 45vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 160px 60px 60px;
  border-bottom: 1px solid var(--border);
  background: var(--dark-2);
}
.page-header-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(197,151,58,0.06) 0%, transparent 80%);
}
.page-header .hero-headline {
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.page-header .hero-headline em {
  display: inline-block;
  margin-top: 4px;
}

/* SECTIONS */
section { position: relative; }

.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 60px; }

/* ABOUT */
.about {
  padding: 120px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 10px; margin-bottom: 24px;
}
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 400; line-height: 1.1; letter-spacing: -0.01em;
}
.section-headline em { color: var(--gold); font-style: italic; }
.section-text { font-size: 15px; line-height: 1.85; color: var(--text-muted); margin-top: 24px; }

.check-list { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.check-item {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--text);
}
.check-icon {
  width: 22px; height: 22px; border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 10px; color: var(--gold);
}

.about-visual {
  position: relative;
  background: var(--dark-card);
  border: 1px solid var(--border);
  padding: 60px 50px;
  overflow: hidden;
}
.about-visual::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(197,151,58,0.12) 0%, transparent 70%);
}
.about-visual-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400; font-style: italic;
  color: var(--text-muted); margin-bottom: 40px; line-height: 1.6;
}
.pillars { display: flex; flex-direction: column; gap: 0; }
.pillar {
  display: flex; align-items: stretch;
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  gap: 20px;
}
.pillar:last-child { border-bottom: none; }
.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; color: var(--gold-dim);
  min-width: 28px; padding-top: 2px;
}
.pillar-text { font-size: 13px; font-weight: 600; color: var(--text); letter-spacing: 0.02em; }

/* SOLUTIONS */
.solutions { padding: 120px 0; }
.solutions-top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 70px; }
.solutions-cta-wrap { text-align: right; }

.cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.card {
  background: var(--dark-card);
  padding: 48px 44px;
  position: relative; overflow: hidden;
  transition: background 0.4s ease;
}
.card::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width 0.5s ease;
}
.card:hover { background: var(--dark-3); }
.card:hover::after { width: 100%; }
.card-icon {
  display: block;
  margin-bottom: 24px;
  width: 28px;
  height: 28px;
}
.card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600; margin-bottom: 14px;
  color: var(--white);
}
.card-text { font-size: 13px; line-height: 1.8; color: var(--text-muted); }
.card-num {
  position: absolute; top: 30px; right: 34px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px; font-weight: 700; color: rgba(197,151,58,0.06);
  line-height: 1; pointer-events: none;
}

/* TECH */
.tech {
  padding: 120px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.tech-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }

.tech-features { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); }
.tech-feature {
  padding: 28px 26px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.tech-feature:nth-child(even) { border-right: none; }
.tech-feature:nth-child(5), .tech-feature:nth-child(6) { border-bottom: none; }
.tech-feature:hover { background: rgba(197,151,58,0.04); }
.tf-title { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.tf-text { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

.tech-visual {
  position: relative;
}
.tech-diagram {
  background: var(--dark-card);
  border: 1px solid var(--border);
  padding: 60px 50px;
  position: relative; overflow: hidden;
}
.tech-diagram::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 20px,
    rgba(197,151,58,0.02) 20px, rgba(197,151,58,0.02) 21px
  );
}
.td-center {
  text-align: center; position: relative; z-index: 1;
  padding: 40px 20px;
  border: 1px solid var(--gold-dim);
  margin: 0 auto;
  max-width: 260px;
}
.td-label {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.td-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 400;
}
.td-nodes { display: flex; justify-content: space-around; margin-top: 40px; position: relative; z-index: 1; }
.td-node {
  text-align: center; font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted);
}
.td-node-dot {
  width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  margin: 0 auto 8px;
}

/* FRANCHISE */
.franchise { padding: 120px 0; }
.franchise-headline-block { text-align: center; max-width: 700px; margin: 0 auto 80px; }
.franchise-headline-block .section-label { justify-content: center; }
.franchise-headline-block .section-label::before { display: none; }

.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.benefit {
  padding: 40px 34px; background: var(--dark);
  transition: background 0.3s;
  position: relative;
}
.benefit:hover { background: var(--dark-card); }
.benefit-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 300; color: rgba(197,151,58,0.15);
  line-height: 1; margin-bottom: 20px;
}
.benefit-title { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.benefit-text { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* IMPACT PHRASE */
.impact {
  padding: 36px 0;
  background: var(--gold);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.impact::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    90deg, rgba(0,0,0,0.04) 0px, rgba(0,0,0,0.04) 1px,
    transparent 1px, transparent 60px
  );
}
.impact-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 500; color: var(--dark);
  letter-spacing: 0.02em;
  position: relative; z-index: 1;
}
.impact-text em { font-style: italic; }

/* INTELLIGENCE */
.intelligence {
  padding: 120px 0;
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
}
.intel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.intel-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.intel-metric {
  padding: 28px 24px;
  border: 1px solid var(--border);
  background: var(--dark-card);
  transition: border-color 0.3s, transform 0.3s;
}
.intel-metric:hover { border-color: var(--gold); transform: translateY(-4px); }
.im-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 300; color: var(--gold);
  line-height: 1;
}
.im-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 8px; }

/* BRAND */
.brand { padding: 120px 0; }
.brand-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.brand-values { margin-top: 40px; display: flex; flex-direction: column; gap: 0; }
.brand-value {
  display: flex; align-items: center; gap: 24px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.brand-value:last-child { border-bottom: none; }
.brand-value:hover { padding-left: 12px; }
.bv-line { width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }
.bv-text { font-size: 13px; font-weight: 600; color: var(--text); letter-spacing: 0.04em; }

.brand-quote {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 52px 48px;
  position: relative;
}
.bq-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px; color: rgba(197,151,58,0.08);
  line-height: 1; position: absolute; top: 20px; left: 30px;
}
.bq-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-style: italic; font-weight: 400;
  color: var(--white); line-height: 1.55; position: relative; z-index: 1;
}
.bq-sub { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-top: 28px; }

/* FRANCHISEE */
.franchisee {
  padding: 120px 0;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
}
.fr-top { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 70px; }
.fr-support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fr-support {
  padding: 36px 28px;
  border: 1px solid var(--border);
  background: var(--dark-card);
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.fr-support:hover { border-color: var(--gold); }
.fr-support::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.fr-support:hover::before { transform: scaleX(1); }
.frs-icon {
  display: block;
  margin-bottom: 18px;
  width: 24px;
  height: 24px;
}
.frs-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.frs-title { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.frs-text { font-size: 12px; color: var(--text-muted); line-height: 1.7; }

/* CONTACT WRAPPER & FORM */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: flex-start;
  padding: 80px 0 120px;
}
.contact-form-container {
  background: var(--dark-card);
  border: 1px solid var(--border);
  padding: 50px;
  position: relative;
}
.contact-form-container::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 30px;
  color: var(--white);
}
.form-title em { color: var(--gold); font-style: italic; }
.form-group {
  margin-bottom: 24px;
  position: relative;
}
.form-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--dark-2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 18px;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  transition: all 0.3s ease;
  border-radius: 0;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--dark-3);
  box-shadow: 0 0 10px rgba(197, 151, 58, 0.1);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C5973A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 12px;
  padding-right: 40px;
}
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.info-icon {
  color: var(--gold);
  background: rgba(197, 151, 58, 0.05);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.info-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.info-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.info-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.info-text a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.info-text a:hover {
  color: var(--gold);
}

/* CTA FINAL */
.cta-final {
  padding: 160px 0;
  position: relative; overflow: hidden;
  background: var(--dark);
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(197,151,58,0.07) 0%, transparent 70%);
}
.cta-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(197,151,58,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,151,58,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-label { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.cta-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5.5vw, 88px);
  font-weight: 300; line-height: 1;
  letter-spacing: -0.02em; margin-bottom: 20px;
}
.cta-headline em { color: var(--gold); font-style: italic; }
.cta-sub {
  max-width: 600px; margin: 0 auto 56px;
  font-size: 15px; line-height: 1.8; color: var(--text-muted);
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* HIGHLIGHTS SECTION FOR INDEX */
.highlights {
  padding: 120px 0;
  background: var(--dark);
}
.highlight-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.highlight-row:last-child {
  margin-bottom: 0;
}
.highlight-row.reverse {
  direction: rtl;
}
.highlight-row.reverse > * {
  direction: ltr;
}

/* FOOTER */
footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.footer-logo img {
  height: 32px;
  width: auto;
  display: block;
}
.footer-tagline { font-size: 11px; color: var(--text-muted); letter-spacing: 0.1em; margin-top: 6px; text-transform: uppercase; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-links a { font-size: 11px; color: var(--text-muted); text-decoration: none; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 11px; color: var(--text-muted); }

/* REVEAL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 18px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .hero { padding: 120px 24px 80px; }
  .page-header { padding: 120px 24px 60px; min-height: 35vh; }
  .hero-stats { display: none; }
  .section-inner { padding: 0 24px; }
  .about-grid, .tech-grid, .intel-grid, .brand-grid, .franchise .solutions-top,
  .solutions-top, .fr-top, .franchisee .fr-top, .contact-wrapper, .highlight-row { grid-template-columns: 1fr; gap: 40px; }
  .highlight-row { margin-bottom: 80px; }
  .cards-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .fr-support-grid { grid-template-columns: 1fr; }
  .tech-features { grid-template-columns: 1fr; }
  .tech-feature { border-right: none !important; }
  .intel-metrics { grid-template-columns: 1fr 1fr; }
  footer { padding: 40px 24px; flex-direction: column; align-items: flex-start; }
  .impact { padding: 60px 24px; }
  .cta-final { padding: 100px 0; }
  .solutions-cta-wrap { text-align: left; }
  .contact-form-container { padding: 30px 20px; }
}
