/* ==========================================================================
   AKGÜN YATIRIM — Premium Design System
   Awwwards / Apple / Linear / Stripe Aesthetics — v3 Final
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & Root Variables
   -------------------------------------------------------------------------- */
:root {
  --color-olive-primary: #2D4724;
  --color-olive-light: #3A5A2E;
  --color-forest-dark: #142211;
  --color-forest-deep: #0D160B;
  --color-gold-accent: #C8A253;
  --color-gold-bright: #D4AF37;
  --color-gold-glow: rgba(200, 162, 83, 0.18);

  --bg-primary: #F8F9F5;
  --bg-secondary: #F0F2EB;
  --bg-card: rgba(255, 255, 255, 0.92);
  --bg-card-hover: rgba(255, 255, 255, 1);
  --bg-dark: #142211;

  --text-primary: #1A1D19;
  --text-secondary: #4A5248;
  --text-muted: #7A8378;
  --text-inverse: #F0F2EB;
  --text-inverse-muted: #8FA88C;

  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(45, 71, 36, 0.09);
  --glass-border-gold: rgba(200, 162, 83, 0.25);

  --shadow-sm: 0 2px 12px rgba(20, 34, 17, 0.04);
  --shadow-md: 0 8px 28px rgba(20, 34, 17, 0.07);
  --shadow-lg: 0 20px 50px -10px rgba(20, 34, 17, 0.13);
  --shadow-gold: 0 10px 28px rgba(200, 162, 83, 0.2);

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;

  --section-pad: clamp(72px, 9vw, 130px);
  --container-max: 1280px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 9999px;

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast: 0.22s var(--ease-expo);
  --t-normal: 0.4s var(--ease-expo);
}

/* --------------------------------------------------------------------------
   2. Base Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg-primary);
}

body {
  font-family: var(--font-sans);
  line-height: 1.68;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button, input { font: inherit; border: none; outline: none; background: none; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--color-olive-primary); color: #fff; }

/* --------------------------------------------------------------------------
   3. Layout Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
  position: relative;
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-inverse);
}

.section-dark .section-title { color: #fff; }
.section-dark .section-description { color: var(--text-inverse-muted); }

.text-center { text-align: center; }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* --------------------------------------------------------------------------
   4. Typography
   -------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(45, 71, 36, 0.07);
  color: var(--color-olive-primary);
  border: 1px solid rgba(45, 71, 36, 0.13);
  margin-bottom: 18px;
}

.badge-gold {
  background: rgba(200, 162, 83, 0.1);
  color: var(--color-gold-accent);
  border-color: rgba(200, 162, 83, 0.25);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(40px, 6vw, 65px);
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--color-forest-dark);
  margin-bottom: 18px;
}

.section-description {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.72;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--t-normal);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-olive-primary);
  color: #fff;
  box-shadow: 0 8px 22px rgba(45, 71, 36, 0.22);
}
.btn-primary:hover {
  background: var(--color-olive-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(45, 71, 36, 0.3);
  color: #fff;
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold-accent), var(--color-gold-bright));
  color: var(--color-forest-dark);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(200, 162, 83, 0.35);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-forest-dark);
  border: 1.5px solid rgba(20, 34, 17, 0.14);
}
.btn-outline:hover {
  background: #fff;
  border-color: var(--color-olive-primary);
  color: var(--color-olive-primary);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--color-forest-dark);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-icon {
  width: 18px;
  height: 18px;
  transition: transform var(--t-fast);
}
.btn:hover .btn-icon { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   6. Header & Navigation
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--t-normal);
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
  z-index: 1001;
  flex-shrink: 0;
}

.brand-logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
  transition: transform var(--t-fast);
}

.brand-logo:hover img { transform: scale(1.03); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 8px 13px;
  border-radius: var(--radius-pill);
  transition: all var(--t-fast);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--color-olive-primary);
  background: rgba(45, 71, 36, 0.06);
}

.nav-link.active {
  color: var(--color-olive-primary);
  background: rgba(45, 71, 36, 0.09);
  font-weight: 600;
}

/* On page-hero (transparent header context), nav text white */
.header:not(.scrolled) .nav-link { color: rgba(255,255,255,0.9); }
.header:not(.scrolled) .nav-link:hover,
.header:not(.scrolled) .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.15);
}

/* Override: non-hero pages start scrolled */
.page-header-light .header:not(.scrolled) .nav-link { color: var(--text-primary); }
.page-header-light .header:not(.scrolled) .nav-link:hover { background: rgba(45,71,36,0.06); color: var(--color-olive-primary); }
.page-header-light .header:not(.scrolled) .nav-link.active { background: rgba(45,71,36,0.09); color: var(--color-olive-primary); }

/* Mobile toggle */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 18px;
  cursor: pointer;
  z-index: 1002;
  flex-shrink: 0;
}

.mobile-nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-forest-dark);
  border-radius: 2px;
  transition: all var(--t-fast);
}

.header:not(.scrolled) .mobile-nav-toggle span { background: #fff; }

.mobile-nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-nav-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(380px, 100%);
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 80px 32px 40px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
    transition: right var(--t-normal);
    border-radius: 0;
    z-index: 1000;
  }
  .nav-menu.active { right: 0; }
  .nav-menu .nav-link { color: var(--text-primary) !important; font-size: 1.1rem; padding: 12px 16px; }
  .mobile-nav-toggle { display: flex; }
}

/* --------------------------------------------------------------------------
   7. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(14,24,12,0.78) 0%, rgba(20,34,17,0.52) 50%, rgba(14,24,12,0.90) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  color: #fff;
  padding: 0 16px;
}

.hero-badge {
  background: rgba(255,255,255,0.12);
  color: var(--color-gold-bright);
  border-color: rgba(212,175,55,0.3);
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.22);
}

.hero-title .text-highlight {
  background: linear-gradient(135deg, #fff 20%, var(--color-gold-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.72;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-features-bar {
  margin-top: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 14px 32px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(14px);
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}

.hero-feature-icon {
  width: 18px;
  height: 18px;
  color: var(--color-gold-bright);
}

/* Scroll indicator */
.scroll-down-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.scroll-down-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 11px;
  position: relative;
}

.scroll-down-wheel {
  width: 3px;
  height: 7px;
  background: var(--color-gold-bright);
  border-radius: 2px;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite ease-in-out;
}

.scroll-down-arrow {
  width: 14px;
  height: 14px;
  animation: bounceArrow 1.8s infinite ease-in-out;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  75% { opacity: 0; transform: translateX(-50%) translateY(12px); }
  100% { opacity: 0; transform: translateX(-50%) translateY(0); }
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  40% { transform: translateY(5px); }
  60% { transform: translateY(2px); }
}

/* --------------------------------------------------------------------------
   8. Stats Section
   -------------------------------------------------------------------------- */
.stats-section {
  margin-top: -56px;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border: 1px solid var(--glass-border-gold);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-lg);
}

.stat-item {
  text-align: center;
  padding: 10px 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(20,34,17,0.08);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--color-olive-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-number span { color: var(--color-gold-accent); }

.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --------------------------------------------------------------------------
   9. Feature Split Layout
   -------------------------------------------------------------------------- */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.feature-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.feature-media img {
  width: 100%;
  height: clamp(320px, 45vw, 520px);
  object-fit: cover;
  display: block;
}

.feature-badge-floating {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  border: 1px solid var(--glass-border-gold);
  box-shadow: var(--shadow-md);
}

.feature-badge-floating h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-forest-dark);
  margin-bottom: 2px;
}

.feature-badge-floating p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.feature-content { display: flex; flex-direction: column; }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.feature-item-inline {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-item-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: rgba(45,71,36,0.09);
  color: var(--color-olive-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item-content h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-forest-dark);
  margin-bottom: 4px;
}

.feature-item-content p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.62;
}

/* --------------------------------------------------------------------------
   10. Glass Cards
   -------------------------------------------------------------------------- */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3.5vw, 38px);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-normal), box-shadow var(--t-normal), border-color var(--t-normal);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-olive-primary), var(--color-gold-accent));
  opacity: 0;
  transition: opacity var(--t-fast);
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--glass-border-gold);
}

.glass-card:hover::before { opacity: 1; }

/* Card with image */
.card-image-wrap {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-expo);
}

.glass-card:hover .card-image-wrap img { transform: scale(1.06); }

.card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(14, 24, 12, 0.82);
  color: var(--color-gold-accent);
  backdrop-filter: blur(8px);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-forest-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card-text {
  font-size: 0.94rem;
  color: var(--text-secondary);
  line-height: 1.66;
  margin-bottom: 18px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(20,34,17,0.06);
  margin-top: auto;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-olive-primary);
}

.card-link svg {
  width: 15px;
  height: 15px;
  transition: transform var(--t-fast);
}

.glass-card:hover .card-link svg { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   11. Comparison Table
   -------------------------------------------------------------------------- */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
  margin-top: 28px;
}

.comparison-table th, .comparison-table td {
  padding: 16px 22px;
  text-align: left;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(20,34,17,0.08);
  color: var(--text-primary);
}

.comparison-table td {
  color: var(--text-secondary);
}

.comparison-table td strong {
  color: var(--color-forest-dark);
}

.comparison-table th {
  background: var(--color-forest-dark);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
}

.comparison-table tr:hover td { background: rgba(45,71,36,0.03); }

/* Dark Section Table Variant */
.section-dark .comparison-table {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: var(--text-inverse);
}

.section-dark .comparison-table th {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-gold-bright);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.section-dark .comparison-table td {
  color: var(--text-inverse-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-dark .comparison-table td strong {
  color: #ffffff;
}

.section-dark .comparison-table tr:hover td {
  background: rgba(255, 255, 255, 0.06);
}

.section-dark .comparison-table tr:first-child td {
  background: rgba(200, 162, 83, 0.08);
}

.section-dark .comparison-table tr:first-child:hover td {
  background: rgba(200, 162, 83, 0.14);
}

/* --------------------------------------------------------------------------
   12. Quote Cards
   -------------------------------------------------------------------------- */
.quote-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,249,245,0.98));
  border: 1px solid var(--glass-border-gold);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
}

.quote-icon { width: 36px; height: 36px; color: var(--color-gold-accent); margin-bottom: 14px; }
.quote-text { font-style: italic; font-size: 1rem; color: var(--text-primary); line-height: 1.72; margin-bottom: 18px; }
.quote-author { font-weight: 700; font-size: 0.92rem; color: var(--color-olive-primary); }
.quote-role { font-size: 0.82rem; color: var(--text-muted); margin-top: 3px; }

/* --------------------------------------------------------------------------
   13. Accordion / FAQ
   -------------------------------------------------------------------------- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.accordion-item.active {
  border-color: rgba(45,71,36,0.2);
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  width: 100%;
  padding: 20px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-forest-dark);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.accordion-header:hover { color: var(--color-olive-primary); }

.accordion-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(45,71,36,0.08);
  color: var(--color-olive-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-normal), background var(--t-fast);
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  background: var(--color-olive-primary);
  color: #fff;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-expo);
  padding: 0 26px;
  font-size: 0.96rem;
  color: var(--text-secondary);
  line-height: 1.72;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
  padding-bottom: 24px;
}

/* --------------------------------------------------------------------------
   14. Floating Buttons (WhatsApp / Phone)
   -------------------------------------------------------------------------- */
.floating-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 22px rgba(0,0,0,0.18);
  transition: all var(--t-normal);
  position: relative;
}

.floating-btn-whatsapp { background: #25D366; }
.floating-btn-whatsapp:hover { transform: scale(1.1); box-shadow: 0 10px 28px rgba(37,211,102,0.38); }

.floating-btn-phone { background: var(--color-olive-primary); }
.floating-btn-phone:hover { transform: scale(1.1); box-shadow: 0 10px 28px rgba(45,71,36,0.38); }

.floating-btn svg { width: 25px; height: 25px; fill: currentColor; }

.floating-tooltip {
  position: absolute;
  right: 64px;
  background: rgba(14,24,12,0.9);
  color: #fff;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-fast);
  pointer-events: none;
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
  visibility: visible;
  right: 62px;
}

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--color-forest-dark);
  color: var(--text-inverse);
  padding-top: 72px;
  padding-bottom: 36px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 52px;
}

.footer-brand img { height: 42px; margin-bottom: 18px; }

.footer-brand p {
  color: var(--text-inverse-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 300px;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gold-bright);
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  color: var(--text-inverse-muted);
  font-size: 0.9rem;
  transition: all var(--t-fast);
}

.footer-links a:hover { color: #fff; padding-left: 4px; }

.footer-contact-info { display: flex; flex-direction: column; gap: 14px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-inverse-muted);
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold-bright);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-inverse-muted);
  font-size: 0.84rem;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  color: var(--color-gold-accent);
  transition: color var(--t-fast);
}

.footer-bottom a:hover { color: var(--color-gold-bright); }

/* --------------------------------------------------------------------------
   16. Inner Page Hero Banner
   -------------------------------------------------------------------------- */
.page-hero {
  padding-top: 150px;
  padding-bottom: 60px;
  background: linear-gradient(175deg, rgba(45,71,36,0.07) 0%, var(--bg-primary) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 60% 40%, rgba(45,71,36,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--color-forest-dark);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.breadcrumb a { color: var(--color-olive-primary); font-weight: 600; }
.breadcrumb a:hover { color: var(--color-gold-accent); }

/* --------------------------------------------------------------------------
   17. Scroll Reveal Animations
   -------------------------------------------------------------------------- */
.reveal-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease-expo), transform 0.75s var(--ease-expo);
  will-change: opacity, transform;
}

.reveal-slide-up {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.85s var(--ease-expo), transform 0.85s var(--ease-expo);
  will-change: opacity, transform;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.85s var(--ease-expo), transform 0.85s var(--ease-expo);
  will-change: opacity, transform;
}

.reveal-fade.is-visible,
.reveal-slide-up.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* --------------------------------------------------------------------------
   18. Scroll Progress Bar & Preloader & Back to Top
   -------------------------------------------------------------------------- */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  z-index: 10001;
  pointer-events: none;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--color-olive-primary), var(--color-gold-accent));
  transition: width 0.1s linear;
}

#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-spinner {
  width: 52px;
  height: 52px;
  border: 2.5px solid rgba(200,162,83,0.2);
  border-top-color: var(--color-gold-bright);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.preloader-logo { height: 44px; width: auto; opacity: 0.85; }

@keyframes spin { to { transform: rotate(360deg); } }

.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20,34,17,0.8);
  color: var(--color-gold-bright);
  border: 1px solid rgba(200,162,83,0.25);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all var(--t-normal);
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}

.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--color-olive-primary); transform: translateY(-2px) scale(1.05); }
.back-to-top svg { width: 18px; height: 18px; }

/* --------------------------------------------------------------------------
   19. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .feature-split { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; padding: 24px; }
  .stat-item:nth-child(2)::after { display: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: clamp(56px, 10vw, 90px); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-features-bar { flex-direction: column; gap: 14px; border-radius: var(--radius-md); }
  .comparison-table { font-size: 0.84rem; }
  .comparison-table th, .comparison-table td { padding: 12px 14px; }
}

@media (max-width: 540px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item::after { display: none !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-cta-group { flex-direction: column; width: 100%; }
  .hero-cta-group .btn { width: 100%; }
}

