@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  --pink: #f43f8f;
  --pink-dark: #d92977;
  --magenta: #bb36d8;
  --plum: #4a164f;
  --ink: #211b2c;
  --muted: #776d7d;
  --paper: #fffafc;
  --paper-2: #fff2f8;
  --line: rgba(74, 22, 79, .11);
  --white: #fff;
  --shadow: 0 24px 70px rgba(89, 27, 73, .13);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 5%, rgba(244, 63, 143, .10), transparent 28rem),
    radial-gradient(circle at 94% 16%, rgba(187, 54, 216, .08), transparent 24rem),
    var(--paper);
  font-family: var(--sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }

body.lang-tr .lang-en { display: none !important; }
body.lang-en .lang-tr { display: none !important; }

.site-header,
body:not(.home-page) nav {
  width: min(1180px, calc(100% - 40px));
  height: 76px;
  margin: 18px auto 0;
  padding: 0 22px;
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 24px;
  background: rgba(255, 250, 252, .82);
  box-shadow: 0 12px 34px rgba(79, 25, 70, .08);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--serif); font-weight: 700; font-size: 20px; white-space: nowrap; }
.brand-logo { width: 44px; height: 44px; object-fit: contain; }
.main-nav, body:not(.home-page) .nav-links { display: flex; align-items: center; gap: 26px; }
.main-nav a, body:not(.home-page) .nav-links a { color: var(--muted); font-size: 14px; font-weight: 600; transition: color .2s ease; }
.main-nav a:hover, body:not(.home-page) .nav-links a:hover { color: var(--pink-dark); }
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 6px; padding: 10px 0; border: 0; background: transparent; color: var(--muted); font: inherit; font-size: 14px; font-weight: 600; cursor: pointer; transition: color .2s ease; }
.nav-dropdown-trigger:hover, .nav-dropdown:focus-within .nav-dropdown-trigger { color: var(--pink-dark); }
.nav-chevron { font-size: 17px; line-height: 1; transition: transform .2s ease; }
.nav-dropdown-menu { position: absolute; top: calc(100% + 10px); left: 50%; z-index: 20; width: 238px; padding: 10px; border: 1px solid rgba(244,63,143,.12); border-radius: 18px; background: rgba(255,255,255,.98); box-shadow: 0 18px 50px rgba(79,31,72,.14); opacity: 0; visibility: hidden; transform: translate(-50%, -8px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
.nav-dropdown-menu::before { content: ""; position: absolute; inset: -12px 0 auto; height: 12px; }
.nav-dropdown-menu a { display: block; padding: 11px 13px; border-radius: 12px; color: var(--ink); }
.nav-dropdown-menu a:hover, .nav-dropdown-menu a:focus-visible { background: rgba(244,63,143,.08); }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-dropdown:hover .nav-chevron, .nav-dropdown:focus-within .nav-chevron { transform: rotate(180deg); }
.mobile-legal { display: none; position: relative; }
.mobile-legal summary { display: flex; align-items: center; gap: 6px; padding: 9px 12px; border: 1px solid rgba(244,63,143,.16); border-radius: 999px; color: var(--pink-dark); font-size: 12px; font-weight: 700; cursor: pointer; list-style: none; }
.mobile-legal summary::-webkit-details-marker { display: none; }
.mobile-legal-menu { position: absolute; top: calc(100% + 10px); right: 0; z-index: 30; width: 230px; padding: 10px; border: 1px solid rgba(244,63,143,.12); border-radius: 18px; background: rgba(255,255,255,.98); box-shadow: 0 18px 50px rgba(79,31,72,.14); }
.mobile-legal-menu a { display: block; padding: 11px 13px; border-radius: 12px; color: var(--ink); font-size: 13px; font-weight: 600; }
.mobile-legal-menu a:hover { background: rgba(244,63,143,.08); color: var(--pink-dark); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cta { padding: 11px 18px; border-radius: 999px; background: var(--ink); color: white; font-size: 13px; font-weight: 700; }
.lang-switch { display: flex; gap: 4px; padding: 4px; background: rgba(244,63,143,.07); border-radius: 999px; }
.lang-btn { width: 36px; height: 30px; border: 0; border-radius: 999px; color: var(--muted); background: transparent; cursor: pointer; font-size: 11px; font-weight: 700; }
.lang-btn.active { color: white; background: linear-gradient(135deg, var(--pink), var(--magenta)); box-shadow: 0 5px 14px rgba(244,63,143,.25); }

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 720px;
  margin: 18px auto 0;
  padding: 78px 7%;
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  overflow: hidden;
  border-radius: 38px;
  background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(255,239,247,.88));
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--shadow);
}
.hero-copy { position: relative; z-index: 3; }
.eyebrow { width: fit-content; display: flex; align-items: center; gap: 8px; margin-bottom: 24px; padding: 8px 13px; border: 1px solid rgba(244,63,143,.15); border-radius: 999px; background: rgba(255,255,255,.72); color: var(--pink-dark); font-size: 12px; font-weight: 700; letter-spacing: .03em; }
.spark { color: #f5a623; }
.hero h1 { max-width: 620px; font-family: var(--serif); font-size: clamp(52px, 6vw, 82px); line-height: .99; letter-spacing: -.045em; font-weight: 600; }
.hero h1 em { color: var(--pink); font-weight: 600; }
.hero-lead { max-width: 560px; margin: 28px 0 34px; color: var(--muted); font-size: 17px; }
.hero-actions { display: flex; align-items: center; gap: 14px; }
.btn-primary { min-height: 60px; padding: 10px 22px; display: inline-flex; align-items: center; gap: 13px; border-radius: 18px; color: white; background: linear-gradient(135deg, var(--pink), var(--magenta)); box-shadow: 0 15px 32px rgba(226,49,137,.27); transition: transform .2s ease, box-shadow .2s ease; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 19px 38px rgba(226,49,137,.35); }
.btn-primary span:last-child { display: grid; line-height: 1.15; }
.btn-primary small { font-size: 10px; opacity: .8; }
.btn-primary strong { font-size: 15px; }
.play-icon { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.17); font-size: 11px; }
.btn-secondary { min-height: 60px; padding: 0 20px; display: inline-flex; align-items: center; gap: 9px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.66); font-size: 14px; font-weight: 700; }
.trust-row { display: flex; gap: 22px; margin-top: 35px; color: var(--muted); font-size: 12px; }
.trust-row span { display: flex; align-items: center; gap: 6px; }
.trust-row b { color: var(--pink-dark); font-size: 14px; }
.trust-row i { font-style: normal; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero-glow-one { width: 440px; height: 440px; right: -90px; top: -130px; background: radial-gradient(circle, rgba(244,63,143,.18), transparent 68%); }
.hero-glow-two { width: 340px; height: 340px; left: 30%; bottom: -240px; background: radial-gradient(circle, rgba(187,54,216,.15), transparent 68%); }
.hero-visual { min-height: 560px; position: relative; display: grid; place-items: center; }
.phone { width: 274px; height: 558px; padding: 9px; position: relative; z-index: 2; border-radius: 44px; background: #17101f; box-shadow: 0 35px 80px rgba(54,14,61,.28), inset 0 0 0 1px rgba(255,255,255,.14); transform: rotate(3deg); }
.phone img { width: 100%; height: 100%; object-fit: cover; border-radius: 36px; }
.phone-top { position: absolute; z-index: 3; width: 80px; height: 22px; left: 50%; top: 14px; transform: translateX(-50%); border-radius: 999px; background: #17101f; }
.orbit { position: absolute; border: 1px solid rgba(244,63,143,.15); border-radius: 50%; }
.orbit-one { width: 430px; height: 430px; }
.orbit-two { width: 520px; height: 520px; border-style: dashed; }
.floating-card { position: absolute; z-index: 4; min-width: 194px; padding: 13px 15px; display: flex; align-items: center; gap: 11px; border: 1px solid rgba(255,255,255,.9); border-radius: 18px; background: rgba(255,255,255,.88); box-shadow: 0 18px 38px rgba(70,24,69,.14); backdrop-filter: blur(15px); }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 13px; }
.floating-card small { color: var(--muted); font-size: 10px; }
.floating-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: white; background: linear-gradient(135deg, var(--pink), var(--magenta)); }
.floating-icon.shield { background: linear-gradient(135deg, #6a50e5, #a755e4); }
.match-card { left: -18px; top: 135px; }
.safe-card { right: -25px; bottom: 112px; }

.section { width: min(1080px, calc(100% - 40px)); margin: 0 auto; padding: 120px 0; }
.section-heading { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-heading.compact { margin-bottom: 40px; }
.section-kicker { display: block; margin-bottom: 13px; color: var(--pink-dark); font-size: 11px; font-weight: 800; letter-spacing: .18em; }
.section h2 { font-family: var(--serif); font-size: clamp(38px, 4.5vw, 58px); line-height: 1.07; letter-spacing: -.025em; font-weight: 600; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { min-height: 310px; padding: 29px; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 27px; background: rgba(255,255,255,.66); transition: transform .25s ease, box-shadow .25s ease; }
.step-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.step-card.featured { color: white; border-color: transparent; background: linear-gradient(145deg, #511654, #b52c99); }
.step-card.featured p, .step-card.featured .step-number { color: rgba(255,255,255,.68); }
.step-number { position: absolute; right: 25px; top: 22px; color: rgba(74,22,79,.25); font-family: var(--serif); font-size: 28px; }
.step-icon { width: 54px; height: 54px; margin-bottom: 60px; display: grid; place-items: center; border-radius: 18px; color: var(--pink-dark); background: var(--paper-2); font-size: 22px; }
.featured .step-icon { color: white; background: rgba(255,255,255,.14); }
.step-card h3 { margin-bottom: 10px; font-family: var(--serif); font-size: 25px; }
.step-card p { color: var(--muted); font-size: 14px; line-height: 1.65; }

.safety-section { padding-top: 30px; }
.safety-panel { padding: 70px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: center; overflow: hidden; border-radius: 36px; color: white; background: linear-gradient(135deg, #25142f, #591956 70%, #812a78); box-shadow: 0 32px 70px rgba(54,16,54,.25); }
.safety-copy p { max-width: 560px; margin: 24px 0; color: rgba(255,255,255,.68); }
.safety-copy .section-kicker { color: #ff87bd; }
.text-link { display: inline-flex; gap: 10px; align-items: center; font-size: 13px; font-weight: 700; }
.safety-points { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.safety-points div { min-height: 140px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.11); border-radius: 22px; background: rgba(255,255,255,.07); }
.safety-points span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; color: #ff9ac7; background: rgba(255,255,255,.10); font-weight: 700; }
.safety-points p { color: rgba(255,255,255,.78); font-size: 13px; }

.legal-section { padding-top: 80px; }
.legal-grid { border-top: 1px solid var(--line); }
.legal-grid a { min-height: 84px; padding: 0 10px; display: grid; grid-template-columns: 65px 1fr auto; align-items: center; border-bottom: 1px solid var(--line); transition: color .2s ease, padding .2s ease; }
.legal-grid a:hover { padding-left: 18px; color: var(--pink-dark); }
.legal-grid span { color: var(--muted); font-size: 11px; }
.legal-grid b { font-family: var(--serif); font-size: 23px; font-weight: 600; }
.legal-grid i { font-style: normal; font-size: 20px; }

.site-footer { width: min(1180px, calc(100% - 40px)); margin: 0 auto 22px; padding: 36px 40px 22px; display: grid; grid-template-columns: 1fr auto; gap: 25px; align-items: center; border: 1px solid var(--line); border-radius: 28px; background: white; }
.footer-brand { display: flex; gap: 12px; align-items: center; }
.footer-brand img { width: 52px; height: 52px; object-fit: contain; }
.footer-brand strong, .footer-brand small { display: block; }
.footer-brand strong { font-family: var(--serif); font-size: 20px; }
.footer-brand small { color: var(--muted); font-size: 11px; }
.footer-contact { display: flex; gap: 20px; color: var(--muted); font-size: 12px; }
.site-footer > p { grid-column: 1 / -1; padding-top: 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 11px; text-align: center; }

/* Legal and support pages */
body:not(.home-page) nav { position: sticky; top: 16px; }
body:not(.home-page) nav .logo { display: flex; align-items: center; gap: 8px; font-family: var(--serif); font-size: 18px; font-weight: 700; }
body:not(.home-page) nav .logo::before { content: ''; width: 38px; height: 38px; background: url('../assets/gece-kivilcimi-logo.png') center / contain no-repeat; }
body:not(.home-page) .lang-switch { position: fixed; right: 20px; bottom: 20px; z-index: 500; box-shadow: 0 10px 28px rgba(74,22,79,.15); background: white; }
.page-container { width: min(880px, calc(100% - 40px)); margin: 70px auto; padding: clamp(28px, 6vw, 68px); border: 1px solid var(--line); border-radius: 32px; background: rgba(255,255,255,.78); box-shadow: var(--shadow); }
.page-container > h1 { margin-bottom: 34px; font-family: var(--serif); font-size: clamp(36px, 5vw, 54px); line-height: 1.1; color: var(--plum); }
.page-container h2 { margin: 40px 0 14px; font-family: var(--serif); font-size: 24px; line-height: 1.25; color: var(--plum); }
.page-container p, .page-container ul { margin-bottom: 18px; color: var(--muted); font-size: 15px; }
.page-container ul { padding-left: 23px; }
.page-container li { margin-bottom: 9px; }
.highlight { padding: 2px 7px; border-radius: 6px; color: var(--plum); background: var(--paper-2); font-weight: 700; }
.contact-box { margin-top: 30px; padding: 26px; border: 1px solid rgba(244,63,143,.14); border-radius: 20px; background: linear-gradient(135deg, var(--paper-2), white); text-align: center; }
.contact-link { color: var(--pink-dark); font-weight: 700; overflow-wrap: anywhere; }
body:not(.home-page) footer { padding: 30px 20px 45px; color: var(--muted); border-top: 1px solid var(--line); text-align: center; font-size: 12px; }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .mobile-legal { display: block; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { margin-top: 40px; }
  .trust-row { justify-content: center; flex-wrap: wrap; }
  .safety-panel { grid-template-columns: 1fr; }
  .footer-contact { flex-direction: column; gap: 4px; text-align: right; }
  body:not(.home-page) .nav-links { gap: 13px; }
}

@media (max-width: 700px) {
  .site-header, body:not(.home-page) nav { width: calc(100% - 22px); height: 66px; margin-top: 10px; padding: 0 13px; border-radius: 19px; }
  .brand span, .header-cta, body:not(.home-page) .nav-links { display: none; }
  .brand-logo { width: 42px; height: 42px; }
  .mobile-legal-label { display: none !important; }
  .mobile-legal summary { width: 36px; height: 36px; justify-content: center; padding: 0; font-size: 17px; }
  .hero { width: calc(100% - 22px); min-height: auto; padding: 62px 22px 44px; border-radius: 28px; }
  .hero h1 { font-size: 48px; }
  .hero-lead { font-size: 15px; }
  .hero-actions { width: 100%; flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .hero-visual { min-height: 470px; transform: scale(.86); margin: -12px 0 -35px; }
  .floating-card { min-width: 176px; }
  .match-card { left: -38px; }
  .safe-card { right: -38px; }
  .section { width: calc(100% - 28px); padding: 80px 0; }
  .section h2 { font-size: 39px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 260px; }
  .step-icon { margin-bottom: 38px; }
  .safety-panel { padding: 40px 24px; gap: 38px; border-radius: 28px; }
  .safety-points { gap: 9px; }
  .safety-points div { min-height: 125px; padding: 18px; }
  .legal-grid b { font-size: 19px; }
  .site-footer { width: calc(100% - 22px); grid-template-columns: 1fr; padding: 28px 22px 18px; }
  .footer-contact { text-align: left; }
  .page-container { width: calc(100% - 22px); margin: 38px auto; border-radius: 24px; }
  body:not(.home-page) nav .logo { font-size: 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
