/* ============================================================
   BY CRM — Digtek Dark Theme
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ---- CSS Variables ---- */
:root {
  --bg-primary:    #0b1121;
  --bg-secondary:  #0f1929;
  --bg-card:       #111d35;
  --bg-card-hover: #172040;
  --bg-section:    #0d1628;

  --accent:        #f97316;
  --accent-dark:   #ea6a0a;
  --accent-light:  #fbb36a;
  --blue:          #3b82f6;
  --blue-dark:     #1d4ed8;
  --green:         #22c55e;
  --purple:        #8b5cf6;

  --text-white:    #f1f5f9;
  --text-light:    #cbd5e1;
  --text-muted:    #64748b;
  --text-dim:      #334155;

  --border:        #1e2d4a;
  --border-light:  #2a3d5c;

  --radius:        12px;
  --radius-lg:     20px;
  --radius-sm:     8px;
  --shadow:        0 4px 32px rgba(0,0,0,.45);
  --shadow-card:   0 2px 20px rgba(0,0,0,.35);
  --transition:    all .3s ease;

  --font:          'Poppins', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p { color: var(--text-light); }

/* ---- Section Tag ---- */
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.3);
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}

/* ---- Section Header ---- */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* ---- Gradient Text ---- */
.gradient-text {
  background: linear-gradient(135deg, #f97316, #fb923c, #fdba74);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(249,115,22,.35);
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,.45);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid var(--border-light);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(59,130,246,.35);
}
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }

.btn-sm { padding: 8px 20px; font-size: .85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(11,17,33,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }
.nav-logo .logo-dot { width: 8px; height: 8px; background: var(--accent); border-radius: 50%; display: inline-block; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-light);
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--accent); background: rgba(249,115,22,.08); }

.nav-link .chevron {
  font-size: .65rem;
  transition: transform .2s;
}
.nav-item:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(10px);
  transition: all .25s ease;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  font-size: .875rem;
  color: var(--text-light);
  border-radius: 6px;
  transition: var(--transition);
}
.dropdown-menu a:hover { background: rgba(249,115,22,.1); color: var(--accent); }
.dropdown-menu a i { font-size: 1rem; color: var(--accent); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 10px 0;
  font-size: .95rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .mobile-sub { padding-left: 16px; font-size: .875rem; }
.mobile-nav-actions { display: flex; gap: 10px; margin-top: 16px; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-actions .btn { display: none; }
  .nav-actions .btn:last-child { display: inline-flex; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(59,130,246,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(249,115,22,.06) 0%, transparent 55%);
}

/* Decorative Shapes */
.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(249,115,22,.15);
  animation: spin 30s linear infinite;
}
.shape-1 { width: 500px; height: 500px; top: -100px; right: -100px; animation-duration: 40s; }
.shape-2 { width: 300px; height: 300px; bottom: 50px; right: 200px; border-color: rgba(59,130,246,.12); animation-duration: 25s; animation-direction: reverse; }
.shape-3 { width: 200px; height: 200px; top: 30%; left: -50px; border-color: rgba(139,92,246,.1); animation-duration: 35s; }
.shape-dot { position: absolute; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; opacity: .4; }
.dot-1 { top: 20%; left: 15%; animation: float 4s ease-in-out infinite; }
.dot-2 { top: 60%; left: 40%; animation: float 6s ease-in-out infinite 1s; }
.dot-3 { top: 35%; right: 25%; animation: float 5s ease-in-out infinite 2s; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,.1);
  border: 1px solid rgba(249,115,22,.3);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: .05em;
}
.hero-badge i { font-size: .85rem; }

.hero h1 { margin-bottom: 20px; font-weight: 800; }
.hero h1 span { color: var(--accent); }

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero-stat-item .num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}
.hero-stat-item .num span { color: var(--accent); }
.hero-stat-item .lbl { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 1;
}
.hero-dashboard {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.hero-dashboard::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue), var(--purple));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.dash-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dash-dots span:nth-child(1) { background: #ef4444; }
.dash-dots span:nth-child(2) { background: #f59e0b; }
.dash-dots span:nth-child(3) { background: #22c55e; }
.dash-title { font-size: .8rem; color: var(--text-muted); flex: 1; text-align: center; }
.dash-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 16px; }
.dash-metric {
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}
.dash-metric .val { font-size: 1.3rem; font-weight: 700; color: var(--text-white); }
.dash-metric .lbl { font-size: .7rem; color: var(--text-muted); }
.dash-chart {
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 90px;
}
.bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: rgba(249,115,22,.3);
  transition: var(--transition);
  cursor: pointer;
}
.bar:hover { background: var(--accent); }
.bar.active { background: var(--accent); }
.dash-list { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.dash-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-secondary);
  border-radius: 6px;
  padding: 9px 12px;
  font-size: .8rem;
}
.dash-row-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dash-row-name { flex: 1; color: var(--text-light); }
.dash-row-badge {
  font-size: .7rem;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 600;
}
.badge-green { background: rgba(34,197,94,.15); color: #22c55e; }
.badge-orange { background: rgba(249,115,22,.15); color: var(--accent); }
.badge-blue { background: rgba(59,130,246,.15); color: var(--blue); }

/* ============================================================
   LOGOS SECTION
   ============================================================ */
.logos-section {
  padding: 50px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}
.logos-section .label {
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px 56px;
}
.logo-item {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: .05em;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-item:hover { color: var(--text-muted); }
.logo-item i { font-size: 1.3rem; }

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.features-section { padding: 100px 0; }

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: visible;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.feature-card:hover {
  border-color: var(--border-light);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  background: rgba(249,115,22,.12);
  color: var(--accent);
  transition: var(--transition);
}
.feature-card:hover .feature-icon { background: var(--accent); color: #fff; }
.feature-icon.blue { background: rgba(59,130,246,.12); color: var(--blue); }
.feature-card:hover .feature-icon.blue { background: var(--blue); color: #fff; }
.feature-icon.green { background: rgba(34,197,94,.12); color: var(--green); }
.feature-card:hover .feature-icon.green { background: var(--green); color: #fff; }
.feature-icon.purple { background: rgba(139,92,246,.12); color: var(--purple); }
.feature-card:hover .feature-icon.purple { background: var(--purple); color: #fff; }

.feature-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }
.feature-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 16px;
  transition: var(--transition);
}
.feature-card .read-more:hover { gap: 10px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-section {
  padding: 100px 0;
  background: var(--bg-section);
}
.step-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-4px); border-color: var(--border-light); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(249,115,22,.35);
}
.step-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.step-card p { font-size: .9rem; color: var(--text-muted); }
.step-arrow {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 1.4rem;
  z-index: 1;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(249,115,22,.08) 0%, rgba(59,130,246,.06) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-num {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num .accent { color: var(--accent); }
.stat-label { font-size: .9rem; color: var(--text-muted); }
.stat-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

/* ============================================================
   VERIMOR SECTION
   ============================================================ */
.verimor-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.verimor-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(59,130,246,.06) 0%, transparent 70%);
}
.verimor-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,.1);
  border: 1px solid rgba(59,130,246,.3);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 20px;
}
.verimor-features { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.verimor-feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.verimor-feat:hover { border-color: var(--blue); background: var(--bg-card-hover); }
.verimor-feat .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(59,130,246,.12);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.verimor-feat h4 { font-size: .95rem; color: var(--text-white); margin-bottom: 2px; }
.verimor-feat p { font-size: .82rem; color: var(--text-muted); }

.verimor-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.verimor-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.verimor-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.verimor-card i { font-size: 2rem; color: var(--blue); margin-bottom: 12px; display: block; }
.verimor-card h4 { font-size: 1rem; margin-bottom: 8px; }
.verimor-card p { font-size: .82rem; color: var(--text-muted); }

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section { padding: 100px 0; background: var(--bg-section); }

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
}
.pricing-toggle span { font-size: .9rem; color: var(--text-muted); font-weight: 500; }
.pricing-toggle span.active-label { color: var(--text-white); }
.toggle-switch {
  position: relative;
  width: 56px;
  height: 28px;
}
.toggle-switch input { display: none; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  transition: .3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--accent);
  transition: .3s;
}
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(28px); }
.toggle-badge {
  font-size: .7rem;
  background: rgba(34,197,94,.15);
  color: var(--green);
  border-radius: 10px;
  padding: 2px 8px;
  font-weight: 700;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-light);
  box-shadow: var(--shadow-card);
}
.pricing-card.popular {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(249,115,22,.06), var(--bg-card));
}
.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name { font-size: .85rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.plan-price { margin-bottom: 8px; }
.plan-price .amount { font-size: 2.6rem; font-weight: 800; color: var(--text-white); line-height: 1; }
.plan-price .currency { font-size: 1.3rem; font-weight: 700; color: var(--accent); vertical-align: super; }
.plan-price .period { font-size: .85rem; color: var(--text-muted); }
.plan-desc { font-size: .85rem; color: var(--text-muted); margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.plan-features { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  color: var(--text-light);
}
.plan-features li i { color: var(--green); font-size: .9rem; flex-shrink: 0; }
.plan-features li.disabled { color: var(--text-muted); }
.plan-features li.disabled i { color: var(--text-dim); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 100px 0; }

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border-light); transform: translateY(-3px); }
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; display: flex; gap: 4px; }
.testimonial-text { font-size: .9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.author-name { font-size: .9rem; font-weight: 600; color: var(--text-white); }
.author-title { font-size: .78rem; color: var(--text-muted); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { padding: 100px 0; background: var(--bg-section); }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--accent); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  background: var(--bg-card);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-white);
  gap: 12px;
  transition: var(--transition);
}
.faq-question:hover { background: var(--bg-card-hover); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--accent); color: #fff; transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  background: var(--bg-secondary);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 16px 22px; font-size: .875rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, rgba(249,115,22,.1) 0%, rgba(59,130,246,.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(249,115,22,.08);
}
.cta-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 14px; }
.cta-section p { color: var(--text-muted); font-size: 1.05rem; max-width: 500px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(249,115,22,.06) 0%, transparent 70%);
}
.page-hero .section-tag { display: inline-block; }
.page-hero h1 { position: relative; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 580px; margin: 16px auto 0; position: relative; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: .85rem;
  color: var(--text-muted);
  position: relative;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--text-dim); }
.breadcrumb .current { color: var(--accent); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { padding: 100px 0; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(249,115,22,.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: .85rem; color: var(--text-muted); margin-bottom: 3px; }
.contact-info-item p, .contact-info-item a { font-size: 1rem; color: var(--text-white); }
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .85rem; font-weight: 600; color: var(--text-light); margin-bottom: 8px; }
.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  font-family: var(--font);
  font-size: .9rem;
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(249,115,22,.1); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section { padding: 100px 0; }
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--border-light); box-shadow: var(--shadow-card); }
.blog-thumb {
  background: var(--bg-section);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.blog-thumb .thumb-icon { transition: var(--transition); }
.blog-card:hover .blog-thumb .thumb-icon { transform: scale(1.1); color: var(--accent); }
.blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: .7rem;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  padding: 3px 10px;
  border-radius: 10px;
}
.blog-body { padding: 22px; }
.blog-meta { display: flex; gap: 16px; font-size: .78rem; color: var(--text-muted); margin-bottom: 10px; }
.blog-meta i { color: var(--accent); }
.blog-body h3 { font-size: 1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-body p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.blog-body .read-more { font-size: .85rem; color: var(--accent); font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.blog-body .read-more:hover { gap: 9px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-logo { font-size: 1.5rem; font-weight: 800; color: var(--text-white); display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.footer-logo span { color: var(--accent); }
.footer-desc { font-size: .88rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-title { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .875rem; color: var(--text-muted); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--accent); gap: 10px; }
.footer-links a::before { content: '→'; font-size: .7rem; color: var(--accent); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-item i { color: var(--accent); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item p { font-size: .875rem; color: var(--text-muted); }
.footer-newsletter { margin-top: 16px; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-white);
  font-family: var(--font);
  font-size: .85rem;
  outline: none;
}
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form button {
  padding: 10px 18px;
  background: var(--accent);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--accent-dark); }
.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: .82rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .82rem; color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ============================================================
   UTILITY
   ============================================================ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.row { display: flex; flex-wrap: wrap; margin: 0 -12px; }
.col { flex: 1; padding: 0 12px; }
[class^="col-"] { padding: 0 12px; }
.col-12 { width: 100%; }
.col-6 { width: 50%; }
.col-4 { width: 33.333%; }
.col-3 { width: 25%; }
.col-8 { width: 66.666%; }
.col-5 { width: 41.666%; }
.col-7 { width: 58.333%; }

.g-4 > * { padding: 12px; }
.g-3 > * { padding: 9px; }
.g-2 > * { padding: 6px; }
.gy-4 > * { padding-top: 12px; padding-bottom: 12px; }

.d-flex { display: flex; }
.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-3 { gap: 16px; }
.gap-4 { gap: 24px; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 16px; }
.mb-4 { margin-bottom: 24px; }
.mt-4 { margin-top: 24px; }
.mt-5 { margin-top: 32px; }

/* Divider */
.divider {
  height: 1px;
  background: var(--border);
  margin: 60px 0;
}

/* Alert */
.alert-success {
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  color: var(--green);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  display: none;
}

/* Back to top */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  border: none;
}
.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { background: var(--accent-dark); transform: translateY(-3px); }

/* AOS fallback */
[data-aos] { transition-property: opacity, transform; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .col-4 { width: 50%; }
  .col-3 { width: 50%; }
  .col-5, .col-7 { width: 100%; }
  .col-8 { width: 100%; }
  .hero { padding: 120px 0 70px; }
  .hero-visual { margin-top: 48px; }
  .step-arrow { display: none; }
  .verimor-cards { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .col-6, .col-4, .col-3, .col-8 { width: 100%; }
  .hero h1 { font-size: 2.2rem; }
  .pricing-card.popular { transform: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .logos-grid { gap: 24px 36px; }
  .stat-divider { display: none; }
  .stats-section .d-flex { flex-wrap: wrap; justify-content: center; gap: 32px; }
  .verimor-cards { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
}

@media (max-width: 479px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .pricing-toggle { flex-direction: column; gap: 8px; }
}
