/* ======================================
   FındıkTakip Landing Page — Custom Styles
   Brand: Forest Green Primary #2D6A4F
   Font: Plus Jakarta Sans
   ====================================== */

:root {
  /* Brand colors — matched to app theme */
  --primary: #2D6A4F;
  --primary-light: #52B788;
  --primary-dark: #1B4332;
  --primary-surface: #D8F3DC;
  --secondary: #40916C;

  /* Feature accent colors */
  --accent-amber: #D97706;
  --accent-amber-light: #F59E0B;
  --accent-red: #C0392B;
  --accent-red-light: #E8837A;
  --accent-blue: #2563EB;
  --accent-blue-light: #60A5FA;
  --accent-purple: #6D28D9;
  --accent-purple-light: #A78BFA;
  --accent-teal: #0891B2;
  --accent-teal-light: #22D3EE;
  --accent-indigo: #4F46E5;
  --accent-indigo-light: #818CF8;
  --accent-gold: #CA8A04;
  --accent-gold-light: #EAB308;

  /* Neutrals */
  --bg: #FFFFFF;
  --bg-subtle: #F9FAFB;
  --bg-muted: #F3F4F6;
  --text: #111827;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;
  --border: #E5E7EB;

  /* Shadows */
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 6px 16px rgba(0, 0, 0, 0.06);
  --shadow-elevated: 0 12px 24px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.04);
  --shadow-hero: 0 24px 48px rgba(27, 67, 50, 0.18);
  --shadow-glow: 0 0 40px rgba(82, 183, 136, 0.35);

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-3xl: 32px;

  /* Layout */
  --nav-height: 72px;
  --max-width: 1200px;
}

/* ======================================
   Reset & Base
   ====================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img, svg { display: block; max-width: 100%; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
}

/* ======================================
   Typography
   ====================================== */

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
}

h1 { font-size: clamp(2.25rem, 5vw + 1rem, 4.5rem); }
h2 { font-size: clamp(1.875rem, 3vw + 1rem, 3rem); }
h3 { font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.5rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--primary-surface);
  color: var(--primary-dark);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid rgba(45, 106, 79, 0.12);
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 64px;
  line-height: 1.6;
}

/* ======================================
   Buttons
   ====================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(45, 106, 79, 0.32);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 106, 79, 0.4);
}

.btn-secondary {
  background: white;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-ghost {
  color: var(--text-secondary);
  padding: 10px 16px;
}

.btn-ghost:hover { color: var(--primary); background: var(--primary-surface); }

.btn-lg {
  padding: 18px 36px;
  font-size: 17px;
  border-radius: var(--radius-lg);
}

/* ======================================
   Navigation
   ====================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  z-index: 100;
  transition: all 0.3s ease;
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-soft);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav-logo img {
  height: 36px;
  width: 36px;
  object-fit: contain;
  border-radius: 8px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-menu a {
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-menu a:hover {
  color: var(--primary);
  background: var(--primary-surface);
}

.nav-menu a.nav-ads-link {
  color: var(--primary);
  background: var(--primary-surface);
}

.nav-menu a.nav-ads-link:hover {
  color: #fff;
  background: var(--primary);
}

.nav-menu a.nav-ads-link.active {
  color: #fff;
  background: var(--primary);
}

.nav-menu a.active:not(.nav-ads-link) {
  color: var(--primary);
  background: var(--primary-surface);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch {
  position: relative;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.lang-btn:hover { background: var(--bg-muted); color: var(--text); }

.lang-btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}

.lang-switch.open .lang-btn svg { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevated);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
  list-style: none;
}

.lang-switch.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  transition: background 0.15s;
}

.lang-menu button:hover { background: var(--bg-muted); }
.lang-menu button.active { background: var(--primary-surface); color: var(--primary-dark); font-weight: 600; }
.lang-menu .flag { font-size: 18px; line-height: 1; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--text);
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
  display: block;
}

.menu-toggle:hover { background: var(--bg-muted); }
.menu-toggle:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; }

/* Consistent focus ring for all interactive elements */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Mobile-only CTA inside the dropdown — hidden on desktop, hidden on mobile until ≤640px */
.nav-menu .nav-cta-mobile { display: none; }

@media (max-width: 1080px) {
  .nav-menu { display: none; }
  .menu-toggle { display: flex; }
  .nav-inner { gap: 12px; }
  .nav-actions { gap: 8px; }
  .nav-actions .btn { padding: 10px 18px; font-size: 14px; }
  .nav-mobile-open .nav-menu {
    display: flex;
    position: absolute;
    top: var(--nav-height);
    left: 16px;
    right: 16px;
    flex-direction: column;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elevated);
    padding: 12px;
    gap: 4px;
    align-items: stretch;
    z-index: 100;
  }
  .nav-mobile-open .nav-menu li {
    width: 100%;
    list-style: none;
  }
  .nav-mobile-open .nav-menu a {
    display: block;
    width: 100%;
    padding: 14px 16px;
    box-sizing: border-box;
    text-align: left;
  }
  .nav-mobile-open .nav-menu a.nav-ads-link {
    margin-top: 6px;
  }
  .nav-mobile-open .nav-menu a {
    white-space: normal;
  }
}

/* Very narrow phones: hide standalone CTA in nav (it's inside the dropdown menu instead) */
@media (max-width: 640px) {
  .nav-actions .btn { display: none; }
  .nav-menu .nav-cta-mobile { display: list-item; }
  .nav-mobile-open .nav-menu .nav-cta-mobile a {
    margin-top: 6px;
    background: var(--primary);
    color: #fff;
    text-align: center;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 14px rgba(45, 106, 79, 0.32);
  }
  .nav-mobile-open .nav-menu .nav-cta-mobile a:hover {
    background: var(--primary-dark);
  }
  .nav-inner { gap: 8px; }
  .lang-btn { padding: 8px 10px; }
}

/* Brand text next to logo — visible on desktop, hidden on mobile */
@media (max-width: 640px) {
  .nav-logo span { display: none; }
}

/* ======================================
   Hero
   ====================================== */

.hero {
  position: relative;
  padding: calc(var(--nav-height) + 64px) 0 96px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(82, 183, 136, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 60%, rgba(45, 106, 79, 0.12), transparent 60%),
    linear-gradient(180deg, #FAFDFB 0%, #FFFFFF 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 106, 79, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 106, 79, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
}

.hero-content .eyebrow { margin-bottom: 24px; }

.hero h1 {
  margin-bottom: 24px;
}

.hero h1 .highlight {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 8px;
  background: rgba(82, 183, 136, 0.2);
  border-radius: 2px;
  z-index: -1;
}

.hero-subtitle {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 560px;
}

@media (max-width: 960px) { .hero-subtitle { margin-left: auto; margin-right: auto; } }

.hero-cta {
  display: flex;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

@media (max-width: 960px) { .hero-cta { justify-content: center; } }
@media (max-width: 480px) { .hero-cta { flex-direction: column; } .hero-cta .btn { width: 100%; } }

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 960px) { .hero-trust { justify-content: center; } }

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

/* Phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}

.phone-frame {
  position: relative;
  width: 300px;
  height: 600px;
  background: linear-gradient(145deg, #1f2937 0%, #0f172a 100%);
  border-radius: 48px;
  padding: 14px;
  box-shadow:
    0 30px 60px -10px rgba(0, 0, 0, 0.3),
    0 18px 36px -8px rgba(45, 106, 79, 0.25),
    0 0 0 1px rgba(0, 0, 0, 0.08),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  transform: rotate(-4deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-frame:hover { transform: rotate(0deg) translateY(-8px); }

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.phone-screen-app {
  background: #FFFFFF;
  padding: 0;
  gap: 0;
}

.phone-screen-app img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-elevated);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
}

.float-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.float-card-icon svg { width: 20px; height: 20px; }

.float-card-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.float-card-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.float-weather {
  top: 60px;
  left: -20px;
  animation-delay: 0s;
}

.float-weather .float-card-icon { background: #DBEAFE; color: var(--accent-blue); }

.float-price {
  top: 180px;
  right: -30px;
  animation-delay: 1.5s;
}

.float-price .float-card-icon { background: #FEE2E2; color: var(--accent-red); }

.float-ai {
  bottom: 80px;
  left: -30px;
  animation-delay: 3s;
}

.float-ai .float-card-icon { background: #EDE9FE; color: var(--accent-purple); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 640px) {
  .hero-visual { min-height: 480px; }
  .phone-frame { width: 240px; height: 480px; }
  .float-weather { top: 40px; left: 0; }
  .float-price { top: 140px; right: 0; }
  .float-ai { bottom: 60px; left: 0; }
}

/* ======================================
   Stats
   ====================================== */

.stats {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

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

.stat-value {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
}

/* ======================================
   Features
   ====================================== */

.features .eyebrow,
.screenshots .eyebrow,
.pricing .eyebrow,
.faq .eyebrow { display: flex; justify-content: center; margin: 0 auto 20px; width: fit-content; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 960px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  padding: 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--feature-color, var(--primary));
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
  border-color: transparent;
}

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

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--feature-color, var(--primary));
  background: var(--feature-bg, var(--primary-surface));
}

.feature-icon svg { width: 26px; height: 26px; }

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}

.feature-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-card[data-color="green"]  { --feature-color: var(--primary);       --feature-bg: #D8F3DC; }
.feature-card[data-color="amber"]  { --feature-color: var(--accent-amber);  --feature-bg: #FEF3C7; }
.feature-card[data-color="blue"]   { --feature-color: var(--accent-blue);   --feature-bg: #DBEAFE; }
.feature-card[data-color="red"]    { --feature-color: var(--accent-red);    --feature-bg: #FEE2E2; }
.feature-card[data-color="purple"] { --feature-color: var(--accent-purple); --feature-bg: #EDE9FE; }
.feature-card[data-color="teal"]   { --feature-color: var(--accent-teal);   --feature-bg: #CFFAFE; }
.feature-card[data-color="indigo"] { --feature-color: var(--accent-indigo); --feature-bg: #E0E7FF; }
.feature-card[data-color="gold"]   { --feature-color: var(--accent-gold);   --feature-bg: #FEF9C3; }

/* ======================================
   Roles
   ====================================== */

.roles {
  position: relative;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-subtle) 100%);
}

.roles .eyebrow {
  display: flex;
  justify-content: center;
  margin: 0 auto 20px;
  width: fit-content;
}

.roles-list {
  display: flex;
  flex-direction: column;
  gap: 96px;
  max-width: 1100px;
  margin: 0 auto;
}

.role-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

.role-card:nth-child(even) .role-visual { order: 2; }
.role-card:nth-child(even) .role-content { order: 1; }

@media (max-width: 860px) {
  .roles-list { gap: 64px; }
  .role-card { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .role-card:nth-child(even) .role-visual { order: 0; }
  .role-card:nth-child(even) .role-content { order: 0; }
}

.role-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 24px;
}

.role-visual::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 48px;
  background: var(--role-glow, rgba(82, 183, 136, 0.18));
  filter: blur(60px);
  z-index: 0;
}

.role-phone {
  position: relative;
  z-index: 1;
  width: 280px;
  background: linear-gradient(145deg, #1f2937 0%, #0f172a 100%);
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 30px 60px -12px rgba(0, 0, 0, 0.32),
    0 14px 28px -8px rgba(27, 67, 50, 0.2),
    0 0 0 1px rgba(0, 0, 0, 0.08),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
  transform: rotate(-3deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.role-card:nth-child(even) .role-phone {
  transform: rotate(3deg);
}

.role-card:hover .role-phone {
  transform: rotate(0) translateY(-6px);
}

.role-phone img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top center;
  border-radius: 34px;
  display: block;
}

.role-content {
  max-width: 460px;
}

.role-card:nth-child(even) .role-content {
  margin-left: auto;
}

@media (max-width: 860px) {
  .role-content { max-width: 520px; margin: 0 auto !important; }
}

.role-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--role-badge-bg, var(--primary-surface));
  color: var(--role-badge-color, var(--primary-dark));
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid var(--role-badge-border, rgba(45, 106, 79, 0.14));
}

.role-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--role-dot, var(--primary));
}

.role-content h3 {
  font-size: clamp(1.5rem, 2.2vw + 0.5rem, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.2;
}

.role-content p {
  font-size: 16.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 24px;
}

.role-features {
  list-style: none;
  display: grid;
  gap: 10px;
}

.role-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 860px) {
  .role-features li { justify-content: center; text-align: left; }
}

.role-features li svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  padding: 3px;
  border-radius: 50%;
  background: var(--role-check-bg, var(--primary-surface));
  color: var(--role-check-color, var(--primary));
  margin-top: 0;
}

/* Role color themes */
.role-card[data-role="farmer"] {
  --role-glow: rgba(82, 183, 136, 0.22);
  --role-badge-bg: #D8F3DC;
  --role-badge-color: #1B4332;
  --role-badge-border: rgba(45, 106, 79, 0.18);
  --role-dot: #2D6A4F;
  --role-check-bg: #D8F3DC;
  --role-check-color: #2D6A4F;
}

.role-card[data-role="company"] {
  --role-glow: rgba(245, 158, 11, 0.18);
  --role-badge-bg: #FEF3C7;
  --role-badge-color: #92400E;
  --role-badge-border: rgba(217, 119, 6, 0.22);
  --role-dot: #D97706;
  --role-check-bg: #FEF3C7;
  --role-check-color: #B45309;
}

.role-card[data-role="worker"] {
  --role-glow: rgba(192, 57, 43, 0.16);
  --role-badge-bg: #FEE2E2;
  --role-badge-color: #991B1B;
  --role-badge-border: rgba(192, 57, 43, 0.22);
  --role-dot: #C0392B;
  --role-check-bg: #FEE2E2;
  --role-check-color: #C0392B;
}

/* ======================================
   Screenshots
   ====================================== */

.screenshots { background: var(--bg-subtle); position: relative; overflow: hidden; }

.screenshots::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(82, 183, 136, 0.12), transparent 60%);
  pointer-events: none;
}

.screenshots > .container { position: relative; }

/* Slider wrap */
.slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8px;
}

/* Fade edges so slides fade out at the container edges */
.slider::before,
.slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 44px;
  width: 80px;
  pointer-events: none;
  z-index: 2;
}
.slider::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-subtle), transparent);
}
.slider::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-subtle), transparent);
}

/* Scrollable track */
.slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 40px 36px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.slider-track::-webkit-scrollbar { display: none; }
.slider-track.is-dragging { cursor: grabbing; scroll-behavior: auto; }

/* Individual slide */
.slider-slide {
  flex: 0 0 auto;
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0;
  scroll-snap-align: center;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-slide img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top center;
  border-radius: 36px;
  background: #FFFFFF;
  padding: 10px;
  box-shadow:
    0 20px 40px -12px rgba(27, 67, 50, 0.22),
    0 10px 20px -8px rgba(0, 0, 0, 0.12),
    0 0 0 1.5px rgba(17, 24, 39, 0.06),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.8);
  transition: all 0.5s ease;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.slider-slide.is-active {
  transform: translateY(-6px);
}

.slider-slide.is-active img {
  box-shadow:
    0 30px 60px -12px rgba(27, 67, 50, 0.35),
    0 14px 28px -8px rgba(0, 0, 0, 0.18),
    0 0 0 2px rgba(45, 106, 79, 0.22);
}

.slider-slide:not(.is-active) img {
  opacity: 0.72;
}

.slider-slide figcaption {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  text-align: center;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s, transform 0.3s;
}

.slider-slide.is-active figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation arrows */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: white;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--border);
  z-index: 3;
  transition: all 0.25s;
}

.slider-nav:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 12px 24px rgba(45, 106, 79, 0.3);
}

.slider-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

.slider-nav svg { width: 22px; height: 22px; }

.slider-nav-prev { left: 8px; }
.slider-nav-next { right: 8px; }

@media (max-width: 720px) {
  .slider::before, .slider::after { width: 40px; }
  .slider-nav { width: 44px; height: 44px; }
  .slider-nav-prev { left: 4px; }
  .slider-nav-next { right: 4px; }
}

@media (max-width: 480px) {
  .slider-track { padding: 16px 20px 32px; gap: 16px; }
  .slider-slide { width: 220px; }
  .slider-nav { display: none; }
}

/* Dot indicators */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.slider-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.16);
  padding: 0;
  transition: all 0.25s;
}

.slider-dots button:hover { background: rgba(17, 24, 39, 0.32); }

.slider-dots button.is-active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ======================================
   Pricing
   ====================================== */

.pricing-toggle {
  display: inline-flex;
  padding: 4px;
  background: var(--bg-muted);
  border-radius: 999px;
  margin: 0 auto 48px;
  position: relative;
}

.pricing-toggle-wrap {
  display: flex;
  justify-content: center;
}

.pricing-toggle button {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: 999px;
  transition: all 0.25s;
  position: relative;
  z-index: 1;
}

.pricing-toggle button.active {
  background: white;
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.pricing-toggle .save-badge {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  background: var(--primary-surface);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

@media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; } }

.pricing-card {
  padding: 36px 32px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-2xl);
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
}

.pricing-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(216, 243, 220, 0.3) 0%, rgba(255, 255, 255, 1) 60%);
  box-shadow: var(--shadow-card);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  inset: -1.5px;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  z-index: -1;
  opacity: 0.15;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(45, 106, 79, 0.3);
}

.pricing-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  min-height: 40px;
}

.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.pricing-price {
  font-size: 44px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-period {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 600;
}

.pricing-billing-note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 28px;
  min-height: 18px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.5;
}

.pricing-features li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 1px;
}

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

/* ======================================
   FAQ
   ====================================== */

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.2s;
}

.faq-item:hover { border-color: var(--primary-light); }
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow-card); }

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
}

.faq-item.open .faq-question { color: var(--primary-dark); }

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s;
  color: var(--text-secondary);
}

.faq-item.open .faq-toggle {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}

.faq-toggle svg { width: 16px; height: 16px; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ======================================
   Download CTA
   ====================================== */

.download {
  padding: 80px 0;
}

.download-card {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px;
  background:
    radial-gradient(ellipse 70% 100% at 80% 20%, rgba(82, 183, 136, 0.4), transparent 70%),
    radial-gradient(ellipse 60% 100% at 20% 80%, rgba(64, 145, 108, 0.3), transparent 70%),
    linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: var(--radius-3xl);
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-hero);
}

.download-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.download-card > * { position: relative; }

.download-card h2 {
  color: white;
  margin-bottom: 16px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.download-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.store-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: #111827;
  color: white;
  border-radius: var(--radius-md);
  transition: all 0.25s;
  min-width: 200px;
}

.store-btn:hover {
  background: black;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.store-btn-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  position: relative;
}

.store-btn-disabled .store-btn-bottom {
  background: rgba(255, 255, 255, 0.15);
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  display: inline-block;
  width: fit-content;
  margin-top: 2px;
}

.store-btn svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}

.store-btn-top {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

.store-btn-bottom {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

@media (max-width: 640px) {
  .download-card { padding: 56px 24px; }
  .store-buttons { flex-direction: column; align-items: stretch; gap: 12px; }
  .store-btn { min-width: 0; width: 100%; padding: 14px 20px; justify-content: center; }
  .store-btn-bottom { font-size: 15px; }
}

/* ======================================
   Footer
   ====================================== */

.footer {
  padding: 80px 0 32px;
  background: #0f1419;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.footer-brand-logo img {
  height: 40px;
  width: 40px;
  object-fit: contain;
  border-radius: 9px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.58);
}

.footer-col h4 {
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 12px; }

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col a:hover { color: white; }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-made {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ======================================
   Ads / Reklam Page
   ====================================== */

.ads-hero {
  position: relative;
  padding: calc(var(--nav-height) + 72px) 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%, rgba(82, 183, 136, 0.22), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 60%, rgba(45, 106, 79, 0.14), transparent 60%),
    linear-gradient(180deg, #FAFDFB 0%, #FFFFFF 100%);
}

.ads-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 106, 79, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 106, 79, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 30%, black, transparent 70%);
  pointer-events: none;
}

.ads-hero > .container { position: relative; }

.ads-hero-inner {
  max-width: 840px;
  margin: 0 auto 64px;
  text-align: center;
}

.ads-hero-inner .eyebrow { margin-bottom: 24px; }

.ads-hero h1 { margin-bottom: 24px; }

.ads-hero h1 .highlight {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ads-hero-subtitle {
  font-size: clamp(17px, 1.5vw, 20px);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 auto 40px;
  max-width: 640px;
}

.ads-hero .hero-cta { justify-content: center; }
.ads-hero .hero-trust { justify-content: center; }

.ads-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 32px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
}

@media (max-width: 768px) {
  .ads-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 24px; }
}

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

.ads-stat-value {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.ads-stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Audience */
.ads-audience { padding: 96px 0; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 960px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .audience-grid { grid-template-columns: 1fr; } }

.audience-card {
  padding: 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.3s;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
  border-color: transparent;
}

.audience-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-surface);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.audience-icon svg { width: 26px; height: 26px; }

.audience-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}

.audience-card p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Sectors */
.ads-sectors {
  padding: 96px 0;
  background: var(--bg-subtle);
}

.sectors-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 860px) { .sectors-list { grid-template-columns: 1fr; } }

@media (max-width: 560px) {
  .sector-card {
    flex-direction: column;
    gap: 18px;
    padding: 24px;
  }
  .sector-icon { width: 48px; height: 48px; }
  .sector-icon svg { width: 24px; height: 24px; }
}

.sector-card {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  transition: all 0.3s;
  align-items: flex-start;
}

.sector-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
  border-color: var(--primary-light);
}

.sector-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--primary-surface);
  color: var(--primary);
}

.sector-icon svg { width: 28px; height: 28px; }

.sector-card[data-sector-index="1"] .sector-icon { background: #FEF3C7; color: var(--accent-amber); }
.sector-card[data-sector-index="2"] .sector-icon { background: #D1FAE5; color: #047857; }
.sector-card[data-sector-index="3"] .sector-icon { background: #DBEAFE; color: var(--accent-blue); }

.sector-body { flex: 1; min-width: 0; }

.sector-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-surface);
  color: var(--primary-dark);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.sector-card[data-sector-index="1"] .sector-badge { background: #FEF3C7; color: #92400E; }
.sector-card[data-sector-index="2"] .sector-badge { background: #D1FAE5; color: #065F46; }
.sector-card[data-sector-index="3"] .sector-badge { background: #DBEAFE; color: #1E40AF; }

.sector-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

.sector-body > p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.sector-body ul { list-style: none; display: grid; gap: 8px; }

.sector-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.sector-body ul li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 2px;
}

/* Placements */
.ads-placements { padding: 96px 0; }

.placements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 960px) { .placements-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
  .placements-grid { grid-template-columns: 1fr; }
  .placement-card {
    flex-direction: column;
    gap: 8px;
    padding: 24px;
  }
  .placement-num { font-size: 28px; padding-top: 0; }
}

.placement-card {
  padding: 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  position: relative;
  display: flex;
  gap: 16px;
  transition: all 0.3s;
}

.placement-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.placement-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-light);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  line-height: 1;
  padding-top: 2px;
}

.placement-body { flex: 1; min-width: 0; }

.placement-format {
  display: inline-block;
  padding: 3px 10px;
  background: var(--bg-muted);
  color: var(--text-secondary);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.placement-body h3 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.placement-body p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 12px;
}

.placement-impression {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-dark);
  padding: 6px 10px;
  background: var(--primary-surface);
  border-radius: 8px;
  display: inline-block;
}

.placements-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
  margin: 40px auto 0;
  padding: 16px 24px;
  background: var(--primary-surface);
  color: var(--primary-dark);
  border-radius: var(--radius-md);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.5;
}

/* Formats */
.ads-formats {
  padding: 96px 0;
  background: var(--bg-subtle);
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 960px) { .formats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .formats-grid { grid-template-columns: 1fr; } }

.format-card {
  padding: 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.3s;
}

.format-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
  border-color: transparent;
}

.format-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-surface);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.format-icon svg { width: 24px; height: 24px; }

.format-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}

.format-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.format-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-dark);
  padding-top: 12px;
  border-top: 1px dashed var(--border);
}

/* Targeting */
.ads-targeting { padding: 96px 0; }

.targeting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 860px) { .targeting-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .targeting-grid { grid-template-columns: 1fr; } }

.targeting-card {
  padding: 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all 0.3s;
}

.targeting-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.targeting-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 16px rgba(45, 106, 79, 0.28);
}

.targeting-icon svg { width: 26px; height: 26px; }

.targeting-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  letter-spacing: -0.015em;
}

.targeting-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Process */
.ads-process {
  padding: 96px 0;
  background: var(--bg-subtle);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 860px) { .process-steps { grid-template-columns: 1fr; gap: 24px; } }

.process-step {
  position: relative;
  padding: 32px 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
}

.process-num {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.9;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.process-step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Packages — reuse .pricing-grid from main page */
.ads-packages { padding: 96px 0; }
.ads-packages .section-title,
.ads-packages .section-subtitle { /* inherits */ }

/* FAQ on ads page — reuse .faq-list */
.ads-faq {
  padding: 96px 0;
  background: var(--bg-subtle);
}

/* Contact */
.ads-contact { padding: 96px 0 120px; }

.contact-card {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-elevated);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 860px) {
  .contact-card { grid-template-columns: 1fr; gap: 40px; padding: 40px 32px; }
}

@media (max-width: 560px) {
  .contact-card { padding: 32px 24px; }
}

.contact-intro h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-align: left;
}

.contact-intro p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-direct {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--primary-surface);
  border-radius: var(--radius-md);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 14px;
}

.contact-direct a {
  color: var(--primary-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; gap: 20px; } }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-field textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.55;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(82, 183, 136, 0.15);
}

.form-field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.contact-form button[type="submit"] {
  align-self: flex-start;
  margin-top: 8px;
}

@media (max-width: 560px) {
  .contact-form button[type="submit"] { align-self: stretch; width: 100%; }
}

/* ======================================
   Contact page (iletisim)
   ====================================== */

.contact-hero {
  position: relative;
  padding: calc(var(--nav-height) + 72px) 0 64px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 80% 0%, rgba(82, 183, 136, 0.16), transparent 60%),
    radial-gradient(ellipse 55% 45% at 0% 60%, rgba(45, 106, 79, 0.10), transparent 60%),
    linear-gradient(180deg, #FAFDFB 0%, #FFFFFF 100%);
  text-align: center;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 106, 79, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 106, 79, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 40%, black, transparent 70%);
  pointer-events: none;
}

.contact-hero > .container { position: relative; }

.contact-hero .eyebrow { margin-bottom: 24px; }
.contact-hero h1 { margin-bottom: 20px; }
.contact-hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contact-hero-subtitle {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto;
}

.contact-methods-section {
  padding: 64px 0;
  background: var(--bg-subtle);
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

@media (max-width: 860px) { .contact-methods { grid-template-columns: 1fr; } }

.contact-method {
  padding: 32px 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  text-align: center;
  transition: all 0.3s;
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
  border-color: var(--primary-light);
}

.contact-method-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(45, 106, 79, 0.28);
}

.contact-method-icon svg { width: 26px; height: 26px; }

.contact-method-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-method h3 {
  font-size: 18px;
  margin-bottom: 6px;
  letter-spacing: -0.015em;
  word-break: break-word;
}

.contact-method h3 a { color: var(--text); transition: color 0.2s; }
.contact-method h3 a:hover { color: var(--primary); }

.contact-method p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-top: 8px;
}

.contact-form-section { padding: 80px 0 120px; }

.contact-form-section .contact-card {
  /* Inherits .contact-card from above; just ensure it stands alone visually */
  margin-top: 0;
}

/* ======================================
   Legal pages (Terms, Privacy)
   ====================================== */

.legal {
  padding: calc(var(--nav-height) + 64px) 0 96px;
  background: var(--bg-subtle);
  min-height: 100vh;
}

.legal-inner {
  max-width: 820px;
  margin: 0 auto;
  background: white;
  padding: 56px 48px;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-card);
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  transition: color 0.2s;
}

.legal-back:hover { color: var(--primary); }
.legal-back svg { width: 16px; height: 16px; }

.legal h1 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 8px;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.legal-intro {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-secondary);
  padding: 20px 24px;
  background: var(--primary-surface);
  border-radius: var(--radius-md);
  margin-bottom: 40px;
  border-left: 4px solid var(--primary);
}

.legal-section { margin-bottom: 36px; }

.legal-section h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}

.legal-section h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 18px 0 8px;
  letter-spacing: -0.01em;
}

.legal-section p {
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section ul {
  margin: 8px 0 14px;
  padding-left: 0;
  list-style: none;
}

.legal-section ul li {
  position: relative;
  padding: 6px 0 6px 22px;
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.7;
}

.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

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

@media (max-width: 640px) {
  .legal-inner { padding: 32px 24px; }
}

/* ======================================
   Scroll Animations
   ====================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ======================================
   Utility: hidden
   ====================================== */

[hidden] { display: none !important; }
