:root {
  --primary: #0A1628;
  --primary-light: #1E3A5F;
  --primary-mid: #162B4D;
  --accent: #2563EB;
  --accent-dark: #1D4ED8;
  --accent-light: #3B82F6;
  --cta: #fe0000;
  --cta-dark: #fe0000;
  --cta-light: #fe0000;
  --success: #10B981;
  --text: #0F172A;
  --text-secondary: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --bg: #F8FAFC;
  --bg-white: #FFFFFF;
  --bg-dark: #0A1628;
  --bg-section: #F1F5F9;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --shadow-sm: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-accent: 0 8px 25px rgba(37,99,235,0.25);
  --shadow-cta: 0 8px 25px rgba(254,0,0,0.35);
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --section-py: 5rem;
  --section-py-sm: 3rem;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --container-max: 1280px;
  --header-height: 80px;
  --header-height-scrolled: 64px;
}

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

html {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

a {
  color: #fff;
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--accent-dark);
}

strong {
  font-weight: 700;
  color: var(--text);
}

em {
  font-style: italic;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* 
==========================================================================
   3. Layout Utilities
   ========================================================================== 
*/
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-py) 0;
}

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

.section--dark h2, .section--dark h3, .section--dark h4 {
  color: var(--bg-white);
}

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

.section--gray {
  background-color: var(--bg-section);
}

.grid {
  display: grid;
  gap: 2rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }

.section-padding {
  padding: var(--section-py) 0;
}

.bg-dark {
  background-color: var(--bg-dark);
  color: var(--bg-white);
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
  color: var(--bg-white);
}

.bg-light {
  background-color: var(--bg-section);
}

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

.text-white {
  color: var(--bg-white);
}

.w-100 {
  width: 100%;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 2.5rem;
}

/* 
==========================================================================
   4. Button System
   ========================================================================== 
*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  transition: all var(--transition-base);
  text-decoration: none;
  border: 1px solid transparent;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  color: var(--bg-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-accent);
}

.btn-cta {
  background-color: var(--cta);
  color: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.btn-cta:hover {
  background-color: var(--cta-dark);
  color: var(--bg-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-cta);
}

.btn-outline {
  background-color: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background-color: var(--bg-white);
}

.btn-white {
  background-color: var(--bg-white);
  color: var(--accent);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background-color: var(--bg);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-outline-primary:hover {
  background-color: var(--accent);
  color: var(--bg-white);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--bg-white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--bg-white);
}

.btn-ghost {
  background-color: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  background-color: var(--border-light);
  color: var(--text);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: var(--radius-lg);
}

.btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.25rem;
  border-radius: var(--radius-xl);
}

/* 
==========================================================================
   5. HEADER
   ========================================================================== 
*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background-color: rgba(10, 22, 40, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header.scrolled .header-inner {
  height: var(--header-height-scrolled);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  transition: height var(--transition-base);
}

.header-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo-img {
  max-height: 60px;
  max-width: 180px;
  height: auto;
  object-fit: contain;
}

.main-nav,
.header-nav {
  display: flex;
  align-items: center;
}

.main-nav .nav-list,
.header-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav .nav-list a,
.header-nav .nav-list a,
.nav-link {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
  text-decoration: none;
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.main-nav .nav-list a::after,
.header-nav .nav-list a::after,
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--cta);
  transition: width var(--transition-base);
}

.main-nav .nav-list a:hover,
.main-nav .nav-list a.active,
.header-nav .nav-list a:hover,
.header-nav .nav-list a.active,
.nav-link:hover,
.nav-link.active {
  color: var(--cta-light);
}

.main-nav .nav-list a:hover::after,
.main-nav .nav-list a.active::after,
.header-nav .nav-list a:hover::after,
.header-nav .nav-list a.active::after,
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-cta,
.header-cta-btn {
  font-size: 0.9rem;
  padding: 0.65rem 1.25rem;
  white-space: nowrap;
}

.hamburger-menu,
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line,
.mobile-menu-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger-menu.active .hamburger-line:nth-child(1),
.mobile-menu-toggle.open span:nth-child(1) {
  transform: translateY(8.75px) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2),
.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3),
.mobile-menu-toggle.open span:nth-child(3) {
  transform: translateY(-8.75px) rotate(-45deg);
}

.mobile-nav-overlay {
  display: none;
}

/* 
==========================================================================
   6. HERO
   ========================================================================== 
*/
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-mid) 100%);
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 2.5rem);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 40%),
              radial-gradient(circle at 20% 80%, rgba(254, 0, 0, 0.1) 0%, transparent 40%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-bg-decoration {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.hero-orb-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -80px;
  background: rgba(37, 99, 235, 0.35);
}

.hero-orb-2 {
  width: 360px;
  height: 360px;
  bottom: -140px;
  left: -100px;
  background: rgba(254, 0, 0, 0.25);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--bg-white);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero-badge i {
  color: var(--cta);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--success);
  flex-shrink: 0;
}

.hero-title {
  color: var(--bg-white);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-title .accent {
  color: var(--accent-light);
}

.hero-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--bg-white);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 620px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hero-image-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.hero-slider-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-2xl);
}

.hero-image-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-2xl);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0.25) 100%);
}

.hero-card {
  position: absolute;
  background: rgba(10, 22, 40, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  animation: float 6s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  z-index: 10;
}

.hero-card-1 {
  top: -15px;
  right: -10px;
}

.hero-card-2 {
  bottom: -20px;
  left: -10px;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  animation-delay: 3s;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.hero-card-label {
  color: #94A3B8;
  font-size: 0.8rem;
  font-weight: 500;
}

.hero-card-number {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 1.05rem;
}

.hero-card-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(254, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-card-content {
  display: flex;
  flex-direction: column;
}

.hero-card-title {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.hero-card-sub {
  color: #94A3B8;
  font-size: 0.8rem;
  margin-bottom: 0;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: var(--success);
  border-radius: 50%;
  position: relative;
}

.status-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 18px;
  height: 18px;
  background-color: rgba(16, 185, 129, 0.4);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.decorative-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
  opacity: 0.5;
}

.orb-1 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  top: 20%;
  right: 20%;
}

.orb-2 {
  width: 250px;
  height: 250px;
  background: var(--cta);
  bottom: 10%;
  left: 20%;
}

/* 
==========================================================================
   7. STATS CARDS
   ========================================================================== 
*/
.hero-stats-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 6rem;
}

.stat-glass-card {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.75rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform var(--transition-base), background-color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.stat-glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cta), var(--cta-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.stat-glass-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(251, 146, 60, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.stat-glass-card:hover::before {
  transform: scaleX(1);
}

.stat-glass-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(251, 146, 60, 0.15);
  color: var(--cta-light);
  margin-bottom: 0.85rem;
  transition: transform var(--transition-base), background-color var(--transition-base);
}

.stat-glass-card:hover .stat-glass-icon {
  transform: scale(1.12) rotate(-6deg);
  background: #fff;
}

.stat-glass-number {
  display: block;
  color: var(--cta-light);
  font-weight: 800;
  font-size: 0.875rem;
  letter-spacing: 1px;
  opacity: 0.75;
  margin-bottom: 0.4rem;
}

.stat-glass-title {
  color: var(--bg-white);
  font-size: 1.125rem;
  margin-bottom: 0.4rem;
}

.stat-glass-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* 
==========================================================================
   8. HOW IT WORKS
   ========================================================================== 
*/
.how-it-works {
  background-color: var(--bg-section);
  text-align: center;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.section-subtitle {
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.section-divider::before {
  content: '';
  width: 60px;
  height: 3px;
  border-radius: var(--radius-full);
  background-color: var(--accent);
}

.section-divider::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--text-muted);
}

.section-description {
  color: var(--text-muted);
  font-size: 1.125rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  padding-top: 3rem;
}

.step-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.75rem 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-icon-wrap {
  position: relative;
  width: 92px;
  height: 92px;
  margin: -4.5rem auto 1.25rem;
}

.step-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 2px solid var(--step-color, var(--accent));
  color: var(--step-color, var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 34px;
  height: 34px;
  padding: 0 0.4rem;
  border-radius: var(--radius-full);
  background-color: var(--step-color, var(--accent));
  color: var(--bg-white);
  font-size: 0.8125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  border: 3px solid var(--bg-white);
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step-desc {
  margin-bottom: 1.5rem;
}

.step-card::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  border-radius: var(--radius-full);
  background-color: var(--step-color, var(--accent));
  margin: 0 auto;
}

.steps-connector {
  position: absolute;
  top: calc(3rem + 46px);
  height: 0;
  border-top: 2px dotted var(--border);
  z-index: 0;
}

.steps-connector-1 {
  left: 30%;
  width: 12%;
  border-top-color: var(--accent);
}

.steps-connector-2 {
  left: 63%;
  width: 12%;
  border-top-color: var(--success);
}

.steps-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.steps-connector-1::after {
  background-color: var(--accent);
}

.steps-connector-2::after {
  background-color: var(--success);
}

/* 
==========================================================================
   9. SERVICES
   ========================================================================== 
*/
.services {
  background-color: var(--bg-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  background-color: var(--bg-white);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-light);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: var(--bg-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card > p {
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.service-list li svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.service-card .btn {
  width: 100%;
}

/* 
==========================================================================
   10. BRANDS
   ========================================================================== 
*/
.brands {
  background-color: var(--bg-section);
  text-align: center;
}
.brands .container {
  margin-bottom: 1rem;
}
.brands-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.brands-track {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  width: max-content;
  padding: 0.5rem 1.5rem;
  animation: brands-scroll 32s linear infinite;
}
.brands-marquee:hover .brands-track {
  animation-play-state: paused;
}
.brand-card {
  flex: 0 0 200px;
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.brand-logo-area {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.brand-logo-area img {
  max-height: 90px;
  max-width: 85%;
  object-fit: contain;
}
@keyframes brands-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .brands-track {
    animation: none;
  }
}

/* 
==========================================================================
   11. WHY US
   ========================================================================== 
*/
.why-us {
  background-color: var(--bg-white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-us-eyebrow {
  display: inline-block;
  color: #0a1628;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid #ff0707;
}

.why-us-title {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.why-us-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.why-us-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.why-card {
  position: relative;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 2rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #0a1628;
  box-shadow: 0 0 0 1px rgba(10, 22, 40, 0.35);
  animation: pulse-dot 2.4s infinite;
}

.why-card-icon {
  display: inline-flex;
  color: #0a1628;
  margin-bottom: 1rem;
  transition: transform var(--transition-base);
}

.why-card:hover .why-card-icon {
  transform: scale(1.15) rotate(-6deg);
}

.why-card h4 {
  font-size: 1.0625rem;
  margin-bottom: 0.4rem;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.why-card::after {
  content: '';
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 0;
  height: 3px;
  border-radius: var(--radius-full);
  background-color: #ff0707;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-us-visual {
  position: relative;
  min-height: 460px;
}

.why-us-connector {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  color: #ff0707;
}

.why-us-img {
  position: absolute;
  border-radius: var(--radius-2xl);
  object-fit: cover;
  box-shadow: var(--shadow-xl);
}

.why-us-img-1 {
  top: 0;
  left: 0;
  width: 58%;
  height: 46%;
  z-index: 1;
}

.why-us-img-2 {
  bottom: 0;
  right: 0;
  width: 58%;
  height: 46%;
  z-index: 1;
}

.why-card.reveal {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* 
==========================================================================
   12. CALL CENTER
   ========================================================================== 
*/
.call-center {
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
  padding: var(--section-py) 0;
}

.call-center::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--primary-light) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.2;
}

.call-center-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  color: var(--bg-white);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.call-center-title {
  color: var(--bg-white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.call-center-desc {
  color: var(--text-light);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.call-center-phone-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.phone-ring-animation {
  width: 80px;
  height: 80px;
  background-color: rgba(254, 0, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.phone-ring-animation::before,
.phone-ring-animation::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--cta);
  animation: ring-pulse 2s infinite;
  opacity: 0;
}

.phone-ring-animation::after {
  animation-delay: 1s;
}

.call-center-number {
  color: var(--bg-white);
  font-size: 2.5rem;
  font-weight: 800;
  text-decoration: none;
  transition: color var(--transition-base);
}

.call-center-number:hover {
  color: var(--cta);
}

/* 
==========================================================================
   13. FAQ
   ========================================================================== 
*/
.service-faq {
  --faq-dark: #0a1628;
  --faq-text: #0a1628;
  --faq-muted: #667085;
  --faq-border: #e6eaf0;
  --faq-card: #f7f9fc;
  --faq-card-hover: #eef2f6;
  --faq-accent: #0a1628;

  position: relative;
  padding: 80px 0;
  background: #ffffff;
}

.service-faq .container {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}


/* GRID */

.service-faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}


/* SOL ALAN */

.service-faq-left {
  position: sticky;
  top: 120px;
}

.service-faq-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;

  color: var(--faq-dark);

  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.service-faq-title {
  margin: 0 0 16px;

  color: var(--faq-text);

  font-size: clamp(1.875rem, 3.2vw, 2.5rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -1.4px;
}

.service-faq-description {
  max-width: 500px;
  margin: 0;

  color: var(--faq-muted);

  font-size: 0.875rem;
  line-height: 1.75;
}


/* ALT YARDIM KUTUSU */

.service-faq-help {
  margin-top: 30px;
  padding: 22px;

  border: 1px solid var(--faq-border);
  border-radius: 12px;

  background: #f8fafc;
}

.service-faq-help-title {
  display: block;
  margin-bottom: 8px;

  color: var(--faq-text);

  font-size: 0.9375rem;
  line-height: 1.4;
  font-weight: 700;
}

.service-faq-help p {
  margin: 0 0 18px;

  color: var(--faq-muted);

  font-size: 0.8125rem;
  line-height: 1.65;
}

.service-faq-help-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;
  padding: 0 20px;

  border-radius: 7px;

  background: var(--faq-dark);
  color: #ffffff;

  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-faq-help-btn:hover {
  background: #152640;
  color: #ffffff;

  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(10, 22, 40, 0.15);
}


/* SAĞ ACCORDION */

.service-faq-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-faq-item {
  border: 1px solid var(--faq-border);
  border-radius: 10px;

  background: #ffffff;

  overflow: hidden;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.service-faq-item:hover {
  border-color: #cbd3de;
}

.service-faq-item.active {
  border-color: var(--faq-dark);

  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.07);
}


/* BUTON */

.service-faq-btn {
  width: 100%;
  min-height: 60px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 16px 20px;

  border: none;

  background: var(--faq-card);

  color: var(--faq-text);

  font-family: inherit;
  font-size: 0.875rem;
  line-height: 1.45;
  font-weight: 600;

  text-align: left;

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.service-faq-btn:hover {
  background: var(--faq-card-hover);
}

.service-faq-item.active .service-faq-btn {
  background: var(--faq-dark);
  color: #ffffff;
}


/* PLUS */

.service-faq-plus {
  position: relative;

  flex: 0 0 18px;

  width: 18px;
  height: 18px;
}

.service-faq-plus::before,
.service-faq-plus::after {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  width: 12px;
  height: 2px;

  border-radius: 10px;

  background: currentColor;

  transform: translate(-50%, -50%);

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.service-faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.service-faq-item.active .service-faq-plus::after {
  opacity: 0;

  transform:
    translate(-50%, -50%)
    rotate(0);
}


/* CONTENT */

.service-faq-content {
  max-height: 0;

  overflow: hidden;

  background: #ffffff;

  transition: max-height 0.4s ease;
}

.service-faq-content-inner {
  padding: 18px 20px 20px;
}

.service-faq-content p {
  margin: 0;

  color: var(--faq-muted);

  font-size: 0.875rem;
  line-height: 1.7;
}


/* TABLET */

@media (max-width: 1000px) {

  .service-faq {
    padding: 65px 0;
  }

  .service-faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-faq-left {
    position: static;
  }

}


/* MOBİL */

@media (max-width: 767px) {

  .service-faq {
    padding: 50px 0;
  }

  .service-faq .container {
    width: calc(100% - 28px);
  }

  .service-faq-grid {
    gap: 32px;
  }

  .service-faq-label {
    font-size: 0.8125rem;
  }

  .service-faq-title {
    font-size: 1.875rem;
    letter-spacing: -1px;
  }

  .service-faq-description {
    font-size: 0.875rem;
  }

  .service-faq-help {
    margin-top: 24px;
    padding: 19px;
  }

  .service-faq-help-title {
    font-size: 0.875rem;
  }

  .service-faq-help p {
    font-size: 0.8125rem;
  }

  .service-faq-btn {
    min-height: 56px;
    padding: 14px 16px;

    font-size: 0.875rem;
  }

  .service-faq-content-inner {
    padding: 15px 16px 17px;
  }

  .service-faq-content p {
    font-size: 0.8125rem;
  }

}
/* 
==========================================================================
   14. FINAL CTA
   ========================================================================== 
*/
.final-cta {
  background: #0a1628;
  padding: 2rem 0;
  text-align: center;
  color: var(--bg-white);
}

.final-cta-card {
  max-width: 800px;
  margin: 0 auto;
}

.final-title {
  color: var(--bg-white);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.final-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.final-phone {
  font-size: 2rem;
  font-weight: 800;
  color: var(--bg-white);
  margin-bottom: 1.5rem;
}

/* 
==========================================================================
   15. FOOTER
   ========================================================================== 
*/
.site-footer {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.footer-logo-link img {
  max-height: 100px;
  max-width: 280px;
  height: auto;
  object-fit: contain;
}

.footer-desc {
  color: #94A3B8;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-heading {
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: var(--cta);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.footer-brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1rem;
}

.footer-brands-grid a {
  color: #94A3B8;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.footer-brands-grid a:hover {
  color: var(--cta-light);
  transform: translateX(3px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #94A3B8;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.footer-contact li svg {
  flex-shrink: 0;
  stroke: var(--cta);
  margin-top: 0.2rem;
}

.footer-contact a {
  color: #FFFFFF;
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color var(--transition-fast);
  word-break: break-word;
}

.footer-contact a:hover {
  color: var(--cta-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-bottom .copyright {
  color: #94A3B8;
  font-size: 0.875rem;
  margin-bottom: 0;
}

.footer-bottom .disclaimer {
  color: #64748B;
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* 
==========================================================================
   16. MOBILE STICKY BAR
   ========================================================================== 
*/
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}

.mobile-cta-bar .flex {
  width: 100%;
}

.mobile-cta-call,
.mobile-cta-service {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  color: var(--bg-white);
  font-weight: 600;
  text-decoration: none;
  text-align: center;
}

.mobile-cta-call {
  background-color: var(--cta);
}

.mobile-cta-service {
  background-color: var(--primary-mid);
}

/* 
==========================================================================
   17. FLOATING PHONE BUTTON
   ========================================================================== 
*/
.floating-phone {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 64px;
  height: 64px;
  background-color: var(--success);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: var(--shadow-lg);
  z-index: 998;
  text-decoration: none;
  transition: transform var(--transition-base);
}

.floating-phone:hover {
  transform: scale(1.1);
}

.floating-phone::before,
.floating-phone::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--success);
  animation: ring-pulse 2s infinite;
  opacity: 0;
}

.floating-phone::after {
  animation-delay: 1s;
}

/* 
==========================================================================
   18. SCROLL REVEAL
   ========================================================================== 
*/
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* 
==========================================================================
   19. KEYFRAMES
   ========================================================================== 
*/
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

@keyframes pulse-dot {
  0% { transform: scale(0.8); opacity: 0.8; }
  50% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(0.8); opacity: 0; }
}

@keyframes ring-pulse {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* 
==========================================================================
   20. ACCESSIBILITY & PREFERS REDUCED MOTION
   ========================================================================== 
*/
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* 
==========================================================================
   21. RESPONSIVE BREAKPOINTS
   ========================================================================== 
*/

/* --- 1024px (Tablets Landscape & Small Desktops) --- */
@media (max-width: 1024px) {
  :root {
    --section-py: 4rem;
  }

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  .hero-title { font-size: 2.75rem; }
  
  .hero-content {
    gap: 2rem;
  }

  .hero-stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3.5rem;
  }

  .steps-grid {
    gap: 1.5rem;
  }
  
  .steps-connector {
    display: none;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-us-features {
    align-items: center;
  }
  
  .feature-item {
    text-align: left;
    max-width: 500px;
  }

  .call-center-number {
    font-size: 2rem;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

/* --- 992px (Tablets & Mobile) --- */
@media (max-width: 992px) {
  :root {
    --header-height: 70px;
    --section-py: 3.5rem;
  }

  /* Header & Navigation */
  .main-nav {
    display: none;
  }

  .hamburger-menu,
  .mobile-menu-toggle {
    display: flex;
  }

  /* Mobile Menu Styles */
  .site-header nav.main-nav.mobile-open,
  .site-header nav.mobile-open {
  display: block;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #0A1628;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  padding: 1.5rem;
  z-index: 1000;
  }

  .site-header nav.main-nav.mobile-open .nav-list,
  .site-header nav.mobile-open .nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }

  .site-header nav.main-nav.mobile-open .nav-link,
  .site-header nav.main-nav.mobile-open .nav-list a,
  .site-header nav.mobile-open .nav-link {
    color: #FFFFFF;
    font-size: 1.1rem;
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
    display: block;
  }

  .site-header nav.main-nav.mobile-open .nav-list li:last-child a {
    border-bottom: none;
  }

  .mobile-nav-overlay.active {
    display: block;
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
  }
}

/* --- 768px (Tablets Portrait & Mobile) --- */
@media (max-width: 768px) {
  :root {
    --header-height: 70px;
    --section-py: 3rem;
  }

  .header-cta {
    display: none;
  }

  /* Hero Section */
  .hero {
    padding-top: calc(var(--header-height) + 2rem);
    text-align: center;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-text {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .hero-actions,
  .hero-trust {
    justify-content: center;
  }
  
  .hero-visual {
    min-height: auto;
    width: 100%;
    margin-top: 1.5rem;
  }

  .hero-card-1 {
    top: -10px;
    right: 0;
  }

  .hero-card-2 {
    bottom: -15px;
    left: 0;
  }

  /* Hero Stats Cards */
  .hero-stats-row {
    grid-template-columns: 1fr;
    gap: 0.875rem;
    margin-top: 3rem;
  }

  /* Grids to 1 Column */
  .steps-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .step-card {
    max-width: 400px;
    margin: 0 auto;
  }

  /* Call Center */
  .call-center-number {
    font-size: 1.75rem;
  }
  
  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Mobile CTA elements */
  .mobile-cta-bar {
    display: block;
  }

  .floating-phone {
    display: none; /* Hide on mobile since we have the sticky bar */
  }

  /* Adjust body padding for sticky bar */
  body {
    padding-bottom: 60px;
  }
}

/* --- 480px (Small Mobile Phones) --- */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-dark-card {
    padding: 2rem 1.5rem;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .call-center-inner {
    gap: 2rem;
  }

  .footer-brands-grid {
    grid-template-columns: 1fr;
  }
}


/* 
==========================================================================
   5b. HEADER DROPDOWN (Markalar)
   ========================================================================== 
*/
.nav-item.has-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex !important;
  align-items: center;
  gap: 0.35rem;
}

.dropdown-arrow {
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.nav-item.has-dropdown:hover .dropdown-arrow,
.nav-item.has-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  padding: 0.5rem;
  list-style: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.15rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  z-index: 1100;
}

/* Küçük ok/üçgen */
.dropdown-menu::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-bottom-color: #FFFFFF;
}

.dropdown-menu li {
  margin: 0;
}

/* 
  ÖNEMLİ: .main-nav .nav-list a, .header-nav .nav-list a, .nav-link
  kuralları (Header bölümü, madde 5) bu linkleri de kapsıyor çünkü
  dropdown-menu, .nav-list içinde iç içe (nested). O kural metni
  beyaz yapıp ::after alt çizgi animasyonu ekliyor - bu yüzden
  beyaz zemin üstünde beyaz yazı görünmüyordu. Aşağıdaki, aynı üç
  seçiciyi tam olarak eşleştirip ezmek için gereken specificity'yi
  taşıyor.
*/
.main-nav .nav-list .dropdown-menu a,
.header-nav .nav-list .dropdown-menu a,
.nav-list .dropdown-menu a.nav-link,
.dropdown-menu a {
  color: var(--text) !important;
  font-weight: 500 !important;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  white-space: nowrap;
  display: block;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.main-nav .nav-list .dropdown-menu a::after,
.header-nav .nav-list .dropdown-menu a::after,
.dropdown-menu a::after {
  content: none !important;
}

.dropdown-menu a:hover {
  background-color: var(--bg-section) !important;
  color: var(--accent) !important;
}

/* Masaüstü: hover ile aç */
@media (min-width: 993px) {
  .nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

/* Mobil: tıklama ile aç (main-nav.mobile-open içinde), dropdown normal akışa döner */
@media (max-width: 992px) {
  .dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    grid-template-columns: 1fr;
    background-color: rgba(255, 255, 255, 0.04);
    border: none;
    box-shadow: none;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: max-height var(--transition-base);
  }

  .dropdown-menu::before {
    display: none;
  }

  .nav-item.has-dropdown.open .dropdown-menu {
  max-height: 700px;
  padding: 0.5rem 0 0.5rem 1rem;
  }

  .dropdown-menu a,
  .main-nav .nav-list .dropdown-menu a {
    color: rgba(255, 255, 255, 0.75) !important;
    padding: 0.6rem 0.5rem;
  }

  .dropdown-menu a:hover {
    background-color: transparent !important;
    color: #FFFFFF !important;
  }
}

/*
 * ============================================================
 * UYGULAMA TALİMATI
 * ============================================================
 * Bu kuralı ana CSS dosyanıza (style.css) veya header.php
 * içindeki <style> bloğuna ekleyin.
 *
 * Mantık: Mobil menü açıkken "Markalar" başlığına tıklandığında
 * açılan .dropdown-menu şu an dar bir sütun halinde ortada duruyor
 * (sağında solunda boşluk var). Bunu tam genişliğe yayıp 2 sütunlu
 * grid yapıyoruz.
 *
 * NOT: .dropdown-menu ve .nav-item.has-dropdown class isimleri
 * header.php'deki markalar dropdown menüsünde kullanılan isimler.
 * Sizin dosyanızda farklıysa (örn. .sub-menu, .brands-dropdown)
 * class adını ona göre değiştirin.
 * ============================================================
 */

@media (max-width: 768px) {
  /* Dropdown menüyü tam genişliğe yay */
  .main-nav .nav-item.has-dropdown .dropdown-menu {
    width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
    box-sizing: border-box;
  }

  /* 2 sütunlu grid düzeni */
  .main-nav .nav-item.has-dropdown .dropdown-menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Her marka linki grid hücresine tam otursun */
  .main-nav .nav-item.has-dropdown .dropdown-menu li {
    width: 100%;
  }
  .main-nav .nav-item.has-dropdown .dropdown-menu li a {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  /* "Markalar" başlığını diğer menü öğeleri (Ürünlerimiz, Hizmetlerimiz vb.) gibi ortala */
  .main-nav .nav-item.has-dropdown .dropdown-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
    width: 100%;
  }
}