/* ===== OpenProfil - Ana Stil Dosyası ===== */
:root {
  --bg-gradient-start: #e0e7ff;
  --bg-gradient-end: #ede9fe;
  --bg-light: #edf4fa;
  --bg-light-alt: #e9eff6;
  --text-dark: #1e293b;
  --text-muted: #475569;
  --accent-purple: #7c3aed;
  --accent-purple-hover: #6d28d9;
  --accent-pink: #ec4899;
  --accent-blue: #3b82f6;
  --accent-green: #10b981;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --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-glow: 0 10px 40px rgba(124, 58, 237, 0.2);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --about-purple: #5b21b6;
  --about-purple-light: #7c3aed;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-end) 100%);
  min-height: 100vh;
  color: var(--text-dark);
  overflow-x: hidden;
  max-width: 100vw;
}

/* ----- Header ----- */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
}

.logo-icon.logo-img {
  background: none;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-select {
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  border: none;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-dark);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

/* Mobil menü butonu - sadece menü gizlendiğinde görünür */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text-dark);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.menu-toggle:hover {
  background: var(--accent-purple);
  color: #fff;
}
.menu-toggle:active {
  transform: scale(0.97);
}
.menu-toggle i {
  font-size: 1.25rem;
}
.menu-toggle .icon-open { display: block; }
.menu-toggle .icon-close { display: none; }
.menu-toggle.is-open .icon-open { display: none; }
.menu-toggle.is-open .icon-close { display: block; }

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Mobil menü overlay + panel */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}
.nav-mobile.is-open {
  visibility: visible;
  opacity: 1;
}
.nav-mobile-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 41, 59, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.nav-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  max-width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  padding: 1.25rem 1rem 2rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.nav-mobile.is-open .nav-mobile-panel {
  transform: translateX(0);
}
.nav-mobile-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: var(--radius);
  background: rgba(30, 41, 59, 0.08);
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.2s, color 0.2s;
}
.nav-mobile-close:hover {
  background: var(--accent-purple);
  color: #fff;
}
.nav-mobile-close i {
  font-size: 1.2rem;
}
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.nav-mobile-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
.nav-mobile-links a:hover {
  background: rgba(124, 58, 237, 0.12);
  color: var(--accent-purple);
}
.nav-mobile-links a i {
  width: 24px;
  text-align: center;
  color: var(--accent-purple);
  opacity: 0.9;
}

.nav a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--accent-purple);
}

/* ----- Hero ----- */
.hero {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
  text-align: center;
}

/* Hero dekor görselleri (+.png ve donut.png) */
.deco-plus {
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  width: 80px;
  height: 80px;
}

.deco-plus.deco-img {
  object-fit: contain;
  display: block;
}

.deco-ring {
  position: absolute;
  right: 5%;
  top: 45%;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
}

.deco-ring.deco-img {
  object-fit: contain;
  display: block;
}

.hero-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(calc(-50% + 120px));
  background: var(--white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.hero-badge-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.hero h1 .cta-word {
  display: inline-block;
  background: var(--accent-purple);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-left: 0.25rem;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.avatars {
  display: flex;
  margin-right: 0.5rem;
}

.avatars span,
.avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -10px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.avatars img:first-child {
  margin-left: 0;
}
.avatars span {
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
}

.social-proof-text {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

/* ----- İlk 3 Feature Cards ----- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.feature-card:nth-child(1) .feature-icon {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.feature-card:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
}

.feature-card:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  color: white;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ----- 3D Arka plan + 2 Kart (Mail / Gizlilik) ----- */
.section-delivery {
  position: relative;
  background: var(--bg-light);
  padding: 4rem 2rem;
  overflow: hidden;
}

.section-delivery .deco-arm {
  position: absolute;
  width: 200px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.15;
  pointer-events: none;
}

.section-delivery .deco-arm-left {
  left: -60px;
  top: 30%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
  transform: rotate(-20deg);
}

.section-delivery .deco-arm-right {
  right: -60px;
  top: 40%;
  background: linear-gradient(135deg, var(--accent-green), #34d399);
  transform: rotate(15deg);
  width: 180px;
  height: 100px;
}

.delivery-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.delivery-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}

.delivery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.delivery-card .card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.delivery-card.mail .card-icon {
  background: linear-gradient(135deg, #a7f3d0, var(--accent-green));
}

.delivery-card.privacy .card-icon {
  background: linear-gradient(135deg, #1e293b, #334155);
  color: var(--white);
}

.delivery-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.delivery-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ----- Video Bölümü ----- */
.video-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.video-box {
  background: linear-gradient(135deg, rgba(237, 233, 254, 0.9) 0%, rgba(253, 224, 231, 0.9) 100%);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}

.video-box h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.video-box .video-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.video-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
  color: var(--white);
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.video-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.5);
}

.video-cta .play-icon {
  width: 24px;
  height: 24px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* Tanıtım videosu modal - sabit boyut, sessiz başlar */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
.video-modal-box {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: #1a1a1a;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.video-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}
.video-modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
}
.video-modal-player {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-modal-player iframe,
.video-modal-player video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  object-fit: contain;
}
.video-modal-unmute {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  background: var(--accent-purple);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}
.video-modal-unmute:hover {
  background: var(--accent-purple-hover);
}
.video-modal-unmute.is-muted .video-modal-unmute-icon { opacity: 1; }
.video-modal-unmute.sound-on .video-modal-unmute-icon { opacity: 0; }

/* ----- Premium / AI Bölümü ----- */
.section-premium {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-premium .intro {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.section-premium .headline-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-bottom: 0.5rem;
}

.section-premium .headline-wrap h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
}

.premium-badge {
  display: inline-block;
  background: var(--accent-purple);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}

.section-premium .headline-wrap .after-badge {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-dark);
}

.section-premium .ai-heading {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 3rem;
}

/* ----- Müşteri Yorumları ----- */
.section-reviews {
  background: var(--bg-light-alt);
  padding: 4rem 2rem;
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.reviews-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.reviews-title .icon-bubble {
  width: 32px;
  height: 32px;
  background: var(--accent-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.btn-leave-review {
  background: var(--text-dark);
  color: var(--white);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-leave-review:hover {
  background: var(--accent-purple);
}

.reviews-slider {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  min-height: 260px;
}

.review-card {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.review-card[hidden] {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.reviews-slider .review-nav {
  position: relative;
  z-index: 2;
  margin-top: 1.5rem;
}

.review-card .avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.review-card .name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.review-card .stars {
  color: #fbbf24;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
}

.review-card .text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.review-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.review-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: background 0.2s, color 0.2s;
}

.review-nav button:hover {
  background: var(--accent-purple);
  color: white;
  border-color: var(--accent-purple);
}

.review-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}

.review-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.review-dots span.active {
  background: var(--accent-purple);
  transform: scale(1.2);
}

/* ----- About OpenProfil (Mor Bölüm) ----- */
.section-about {
  position: relative;
  background: linear-gradient(180deg, var(--about-purple) 0%, var(--about-purple-light) 100%);
  padding: 4rem 2rem;
  overflow: hidden;
}

.section-about .deco-wave {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.08;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' d='M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,138.7C672,128,768,160,864,165.3C960,171,1056,149,1152,138.7C1248,128,1344,128,1392,128L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") repeat-x bottom;
  background-size: 120% 200px;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.about-left .label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.75rem;
}

.about-left h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 1.5rem;
}

.about-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.about-buttons .btn {
  display: inline-block;
  background: var(--white);
  color: var(--text-dark);
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.about-right .label {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  margin-bottom: 0.5rem;
}

.about-right p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
}

/* ----- İletişim + Robot + Yasal Metin ----- */
.section-contact {
  background: var(--bg-light);
  padding: 4rem 2rem;
}

.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}

.legal-block h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 1.5rem 0 0.5rem;
}

.legal-block h3:first-child {
  margin-top: 0;
}

.legal-block p,
.legal-block ul {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.legal-block ul {
  padding-left: 1.25rem;
}

.legal-block li {
  margin-bottom: 0.35rem;
}

.contact-robot {
  width: 200px;
  height: auto;
  margin-top: 1rem;
}

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.contact-form-card .form-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-purple);
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
  margin-bottom: 1rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.contact-form .field {
  margin-bottom: 1rem;
}

.contact-form .field.full {
  grid-column: 1 / -1;
}

.btn-submit {
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

/* ----- Footer ----- */
.footer {
  background: var(--bg-light-alt);
  padding: 4rem 2rem 2rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-top {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-tagline {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 0.5rem;
}

.footer-divider {
  height: 1px;
  background: #cbd5e1;
  margin: 2rem 0;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  text-decoration: none;
  display: block;
  margin-bottom: 0.35rem;
}

.footer-col a:hover {
  color: var(--accent-purple);
}

.footer-newsletter input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.footer-newsletter .btn-join {
  background: linear-gradient(180deg, var(--accent-purple), var(--accent-purple-hover));
  color: var(--white);
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: transform 0.2s;
}

.footer-newsletter .btn-join:hover {
  transform: translateY(-2px);
}

/* ----- Chat widget ----- */
.chat-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--accent-blue);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  font-size: 1.5rem;
  transition: transform 0.2s;
  z-index: 1000;
  text-decoration: none;
}

.chat-widget:hover {
  transform: scale(1.05);
}

/* ----- Responsive ----- */
@media (max-width: 900px) {
  .deco-plus,
  .deco-ring {
    display: none;
  }

  .hero-badge {
    position: static;
    transform: none;
    margin-bottom: 1rem;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .delivery-cards {
    grid-template-columns: 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .header {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.75rem 1rem;
  }

  .hero {
    padding: 2rem 1rem 4rem;
  }

  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .hero h1 .cta-word {
    display: block;
    margin: 0.5rem auto 0;
    width: fit-content;
  }

  .hero-desc {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  .about-buttons {
    flex-direction: column;
  }

  .about-buttons .btn {
    text-align: center;
  }

  .section-contact,
  .section-premium,
  .section-about {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .contact-wrap,
  .about-inner {
    padding: 0;
  }

  .footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }
}

/* Mobil - ek küçük ekran ve taşma önleme */
@media (max-width: 480px) {
  .header {
    padding: 0.6rem 0.75rem;
  }

  .logo-wrap {
    padding: 0.4rem 0.75rem;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero-desc {
    font-size: 0.9rem;
  }

  .social-proof-text {
    font-size: 0.85rem;
  }

  .query-widget {
    padding: 1rem 0.75rem 1.5rem;
    min-height: 360px;
  }

  .query-widget-title {
    font-size: 1.15rem;
  }

  .query-widget .platform-select-container,
  .query-widget .form-container,
  .query-widget .services-container {
    padding: 1rem 0.9rem;
    max-width: 100%;
  }

  .query-widget .platform-title,
  .query-widget .welcome-title {
    font-size: 1rem;
    word-break: break-word;
  }

  .query-widget .platform-subtitle,
  .query-widget .welcome-subtitle {
    font-size: 0.8rem;
  }

  .query-widget .platform-btn,
  .query-widget .service-btn {
    padding: 0.65rem 0.75rem;
    font-size: 0.85rem;
  }

  .query-widget .services-grid {
    gap: 0.5rem;
  }

  .features {
    padding: 2rem 1rem;
    gap: 1rem;
  }

  .feature-card {
    padding: 1.25rem 1rem;
  }

  .video-section {
    padding: 2rem 1rem;
  }

  .video-box h2 {
    font-size: 1.25rem;
  }

  .video-cta {
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
  }

  .video-modal-box {
    max-width: calc(100vw - 1.5rem);
    margin: 0 0.75rem;
  }

  .footer-tagline {
    font-size: 0.95rem;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.35rem;
  }

  .logo-text {
    font-size: 1rem;
  }

  .query-widget .platform-btn span,
  .query-widget .service-btn span {
    font-size: 0.8rem;
  }
}

/* Genel taşma önleme */
img {
  max-width: 100%;
  height: auto;
}

.query-widget-inner,
.query-widget .platform-select-container,
.query-widget .form-container,
.query-widget .services-container {
  box-sizing: border-box;
}
