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

  :root {
    --dark: #0e1a17;
    --deep: #152820;
    --forest: #1e3d30;
    --sage: #3a6b52;
    --mint: #7ab99a;
    --cream: #f5f0e8;
    --warm: #ede6d8;
    --gold: #c8a96e;
    --gold-light: #e8d4a8;
    --text-on-dark: #e8e2d8;
    --text-muted: #9ab5a8;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
  }

  html { scroll-behavior: smooth; }
  body { font-family: var(--sans); background: var(--dark); color: var(--text-on-dark); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.4rem 5%;
    background: rgba(14,26,23,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(122,185,154,0.12);
    transition: all 0.3s ease;
  }
  .logo {
    font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
    color: var(--cream); letter-spacing: 0.02em;
  }
  .logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-muted); text-decoration: none; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--cream); }
  .nav-cta {
    font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.6rem 1.6rem; border: 1px solid var(--gold);
    color: var(--gold); background: transparent; cursor: pointer;
    transition: all 0.2s; text-decoration: none; font-family: var(--sans);
  }
  .nav-cta:hover { background: var(--gold); color: var(--dark); }

  /* HERO */
  .hero {
    min-height: 100vh; display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative; overflow: hidden;
  }
  .hero-content {
    display: flex; flex-direction: column; justify-content: center;
    padding: 8rem 5% 6rem 7%;
    position: relative; z-index: 2;
  }
  .hero-eyebrow {
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.75rem;
  }
  .hero-eyebrow::before {
    content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
  }
  .hero h1 {
    font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 300; line-height: 1.18; color: var(--cream);
    margin-bottom: 1.8rem;
  }
  .hero h1 em { font-style: italic; color: var(--mint); }
  .hero-desc {
    font-size: 0.95rem; line-height: 1.8; color: var(--text-muted);
    max-width: 420px; margin-bottom: 2.8rem;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.9rem 2.2rem; background: var(--sage); color: var(--cream);
    border: none; cursor: pointer; transition: all 0.25s; text-decoration: none;
    font-family: var(--sans);
  }
  .btn-primary:hover { background: var(--mint); color: var(--dark); }
  .btn-secondary {
    font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 0.9rem 2.2rem; background: transparent; color: var(--text-muted);
    border: 1px solid rgba(122,185,154,0.3); cursor: pointer; transition: all 0.25s;
    text-decoration: none; font-family: var(--sans);
  }
  .btn-secondary:hover { border-color: var(--mint); color: var(--cream); }

  .hero-visual {
    position: relative; overflow: hidden;
    background: var(--deep);
  }
  .hero-visual-inner {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 80% at 60% 40%, rgba(58,107,82,0.35) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 90% 80%, rgba(200,169,110,0.12) 0%, transparent 60%),
      linear-gradient(160deg, #152820 0%, #0e1a17 100%);
  }
  .brain-diagram {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 320px; height: 320px; opacity: 0.18;
  }
  .hero-stats {
    position: absolute; bottom: 3rem; left: 2rem; right: 2rem;
    display: flex; gap: 1px;
  }
  .stat-block {
    flex: 1; padding: 1.2rem 1.5rem;
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(122,185,154,0.2);
  }
  .stat-num {
    font-family: var(--serif); font-size: 2rem; font-weight: 300;
    color: var(--gold); display: block; line-height: 1;
  }
  .stat-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.4rem; }

  /* MARQUEE */
  .marquee-bar {
    background: var(--forest); padding: 0.9rem 0; overflow: hidden;
    border-top: 1px solid rgba(122,185,154,0.15);
    border-bottom: 1px solid rgba(122,185,154,0.15);
  }
  .marquee-inner {
    display: flex; gap: 3rem; width: max-content;
    animation: marquee 30s linear infinite;
  }
  .marquee-item {
    font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--text-muted); white-space: nowrap;
    display: flex; align-items: center; gap: 1rem;
  }
  .marquee-item::after { content: '◆'; color: var(--gold); font-size: 0.5rem; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* INTRO SECTION */
  .intro {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    padding: 8rem 0; max-width: 1300px; margin: 0 auto; padding-left: 7%; padding-right: 7%;
  }
  .intro-left { padding-right: 6rem; }
  .section-label {
    font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem;
  }
  .intro-left h2 {
    font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300; line-height: 1.25; color: var(--cream); margin-bottom: 2rem;
  }
  .intro-left h2 em { font-style: italic; color: var(--mint); }
  .intro-left p {
    font-size: 0.95rem; line-height: 1.9; color: var(--text-muted); margin-bottom: 1.5rem;
  }
  .intro-right { display: flex; flex-direction: column; gap: 1px; }
  .intro-card {
    padding: 2rem 2rem;
    border-left: 1px solid rgba(122,185,154,0.15);
    transition: all 0.3s;
    cursor: default;
  }
  .intro-card:hover {
    border-left-color: var(--sage);
    background: rgba(30,61,48,0.3);
  }
  .intro-card-num {
    font-family: var(--serif); font-size: 0.85rem;
    color: var(--gold); margin-bottom: 0.8rem;
  }
  .intro-card h3 {
    font-family: var(--serif); font-size: 1.2rem; font-weight: 400;
    color: var(--cream); margin-bottom: 0.6rem;
  }
  .intro-card p { font-size: 0.85rem; line-height: 1.7; color: var(--text-muted); }

  /* TREATMENTS */
  .treatments { padding: 8rem 7%; background: var(--deep); }
  .treatments-header { max-width: 600px; margin-bottom: 5rem; }
  .treatments-header h2 {
    font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300; color: var(--cream); line-height: 1.25; margin-bottom: 1.5rem;
  }
  .treatments-header p { font-size: 0.95rem; line-height: 1.8; color: var(--text-muted); }
  .treatments-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
    background: rgba(122,185,154,0.1);
  }
  .treatment-item {
    background: var(--deep); padding: 2.5rem 2rem;
    transition: all 0.3s;
    position: relative; overflow: hidden;
  }
  .treatment-item::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: var(--sage); transform: scaleX(0); transition: transform 0.3s;
    transform-origin: left;
  }
  .treatment-item:hover::before { transform: scaleX(1); }
  .treatment-item:hover { background: rgba(30,61,48,0.5); }
  .treatment-icon {
    width: 44px; height: 44px; margin-bottom: 1.5rem;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(122,185,154,0.25);
  }
  .treatment-icon svg { width: 22px; height: 22px; stroke: var(--mint); fill: none; stroke-width: 1.5; }
  .treatment-item h3 {
    font-family: var(--serif); font-size: 1.15rem; font-weight: 400;
    color: var(--cream); margin-bottom: 0.8rem;
  }
  .treatment-item p { font-size: 0.82rem; line-height: 1.7; color: var(--text-muted); }

  /* PROCESS */
  .process { padding: 8rem 7%; }
  .process-header { text-align: center; margin-bottom: 5rem; }
  .process-header h2 {
    font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300; color: var(--cream); margin-bottom: 1rem;
  }
  .process-header p { font-size: 0.95rem; color: var(--text-muted); max-width: 500px; margin: 0 auto; }
  .process-steps {
    display: grid; grid-template-columns: repeat(5, 1fr);
    position: relative; gap: 0;
  }
  .process-steps::before {
    content: ''; position: absolute; top: 2.5rem; left: 10%; right: 10%;
    height: 1px; background: linear-gradient(90deg, transparent, var(--sage), var(--sage), transparent);
    z-index: 0;
  }
  .process-step { padding: 0 1rem; text-align: center; position: relative; z-index: 1; }
  .step-circle {
    width: 5rem; height: 5rem; border: 1px solid var(--sage);
    background: var(--dark); margin: 0 auto 1.5rem;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 1.3rem; font-weight: 300; color: var(--gold);
  }
  .process-step h4 {
    font-family: var(--serif); font-size: 1rem; font-weight: 400;
    color: var(--cream); margin-bottom: 0.6rem;
  }
  .process-step p { font-size: 0.78rem; line-height: 1.6; color: var(--text-muted); }

  /* WHY TURKEY */
  .why-turkey {
    padding: 8rem 7%; background: var(--deep);
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
  }
  .why-content h2 {
    font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300; color: var(--cream); margin-bottom: 1rem; line-height: 1.25;
  }
  .why-content h2 em { font-style: italic; color: var(--mint); }
  .why-content > p { font-size: 0.95rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 2.5rem; }
  .why-points { display: flex; flex-direction: column; gap: 1.5rem; }
  .why-point { display: flex; gap: 1.2rem; align-items: flex-start; }
  .why-point-marker {
    width: 28px; height: 28px; background: var(--forest);
    border: 1px solid var(--sage); flex-shrink: 0; margin-top: 2px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; color: var(--gold);
  }
  .why-point-text h4 {
    font-size: 0.9rem; font-weight: 500; color: var(--cream); margin-bottom: 0.25rem;
  }
  .why-point-text p { font-size: 0.82rem; line-height: 1.6; color: var(--text-muted); }
  .why-visual {
    display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
    background: rgba(122,185,154,0.1);
  }
  .why-stat-card {
    background: var(--deep); padding: 2.5rem 2rem; text-align: center;
  }
  .why-stat-card .big-num {
    font-family: var(--serif); font-size: 2.8rem; font-weight: 300;
    color: var(--gold); display: block; line-height: 1; margin-bottom: 0.5rem;
  }
  .why-stat-card .label {
    font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted);
  }

  /* TESTIMONIALS */
  .testimonials { padding: 8rem 7%; }
  .testimonials-header { margin-bottom: 4rem; }
  .testimonials-header h2 {
    font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300; color: var(--cream);
  }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(122,185,154,0.1); }
  .testimonial-card { background: var(--dark); padding: 2.5rem 2rem; }
  .testimonial-quote {
    font-family: var(--serif); font-size: 1.05rem; font-style: italic;
    line-height: 1.7; color: var(--cream); margin-bottom: 1.8rem;
  }
  .testimonial-quote::before {
    content: '\201C'; font-size: 3rem; color: var(--gold); line-height: 0;
    vertical-align: -0.8rem; margin-right: 0.2rem;
    font-family: var(--serif);
  }
  .testimonial-author { display: flex; gap: 1rem; align-items: center; }
  .author-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--forest); border: 1px solid var(--sage);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif); font-size: 0.85rem; color: var(--mint);
  }
  .author-name { font-size: 0.85rem; font-weight: 500; color: var(--cream); }
  .author-location { font-size: 0.75rem; color: var(--text-muted); }

  /* CONTACT */
  .contact {
    padding: 8rem 7%; background: var(--deep);
    display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  }
  .contact-left h2 {
    font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300; color: var(--cream); margin-bottom: 1.5rem; line-height: 1.25;
  }
  .contact-left > p { font-size: 0.95rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 3rem; }
  .contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
  .contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
  .contact-info-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
  .contact-info-val { font-size: 0.9rem; color: var(--cream); }
  .contact-form { display: flex; flex-direction: column; gap: 1rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-field { display: flex; flex-direction: column; gap: 0.4rem; }
  .form-field label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
  .form-field input,
  .form-field select,
  .form-field textarea {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(122,185,154,0.2);
    color: var(--cream); padding: 0.8rem 1rem; font-family: var(--sans);
    font-size: 0.88rem; outline: none; transition: border-color 0.2s;
    resize: vertical;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus { border-color: var(--sage); }
  .form-field select option { background: var(--deep); }
  .form-submit {
    margin-top: 0.5rem; padding: 1rem 2rem; background: var(--sage);
    color: var(--cream); border: none; cursor: pointer; font-family: var(--sans);
    font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
    transition: background 0.25s; text-align: center;
  }
  .form-submit:hover { background: var(--mint); color: var(--dark); }

  /* FOOTER */
  footer {
    background: #090f0d; padding: 4rem 7% 2rem;
    border-top: 1px solid rgba(122,185,154,0.1);
  }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem;
    margin-bottom: 3rem;
  }
  .footer-brand .logo { display: block; margin-bottom: 1rem; }
  .footer-brand p { font-size: 0.82rem; line-height: 1.7; color: var(--text-muted); max-width: 260px; }
  .footer-col h4 { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
  .footer-col ul li a { font-size: 0.82rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
  .footer-col ul li a:hover { color: var(--cream); }
  .footer-bottom {
    border-top: 1px solid rgba(122,185,154,0.08); padding-top: 2rem;
    display: flex; justify-content: space-between; align-items: center;
  }
  .footer-bottom p { font-size: 0.75rem; color: var(--text-muted); }
  .footer-langs { display: flex; gap: 1rem; }
  .footer-langs a { font-size: 0.72rem; letter-spacing: 0.08em; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
  .footer-langs a:hover { color: var(--gold); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-content > * { animation: fadeUp 0.8s ease both; }
  .hero-eyebrow { animation-delay: 0.1s; }
  .hero h1 { animation-delay: 0.25s; }
  .hero-desc { animation-delay: 0.4s; }
  .hero-actions { animation-delay: 0.55s; }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .intro { grid-template-columns: 1fr; }
    .intro-left { padding-right: 0; margin-bottom: 3rem; }
    .treatments-grid { grid-template-columns: 1fr 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
    .process-steps::before { display: none; }
    .why-turkey { grid-template-columns: 1fr; }
    .contact { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px) {
    nav { padding: 1rem 5%; }
    .nav-links { display: none; }
    .treatments-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .why-visual { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  }

/* ===== Cookie consent banner ===== */
  #cookie-consent[hidden] { display: none; } /* beat the #id display:flex below */
  #cookie-consent {
    position: fixed; left: 50%; bottom: 1.5rem; transform: translateX(-50%);
    z-index: 1000; width: min(640px, calc(100% - 2rem));
    display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap;
    padding: 1.1rem 1.3rem;
    background: rgba(21,40,32,0.97); backdrop-filter: blur(12px);
    border: 1px solid rgba(200,169,110,0.4); border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  }
  #cookie-consent .cc-text {
    flex: 1 1 280px; margin: 0;
    font-family: var(--sans); font-size: 0.82rem; line-height: 1.5;
    color: var(--text-on-dark);
  }
  #cookie-consent .cc-actions { display: flex; gap: 0.6rem; flex: 0 0 auto; }
  #cookie-consent .cc-btn {
    font-family: var(--sans); font-size: 0.76rem; letter-spacing: 0.08em;
    text-transform: uppercase; padding: 0.6rem 1.3rem; cursor: pointer;
    border-radius: 4px; transition: all 0.2s; border: 1px solid var(--gold);
  }
  #cookie-consent .cc-decline { background: transparent; color: var(--text-muted); border-color: rgba(154,181,168,0.4); }
  #cookie-consent .cc-decline:hover { color: var(--cream); border-color: var(--cream); }
  #cookie-consent .cc-accept { background: var(--gold); color: var(--dark); border-color: var(--gold); }
  #cookie-consent .cc-accept:hover { background: var(--gold-light); border-color: var(--gold-light); }
  @media (max-width: 520px) {
    #cookie-consent { flex-direction: column; align-items: stretch; text-align: center; }
    #cookie-consent .cc-actions { justify-content: center; }
  }

  /* ===== Legal / content pages (privacy, terms) ===== */
  .legal {
    max-width: 820px; margin: 0 auto; padding: 9rem 5% 5rem;
  }
  .legal .legal-eyebrow {
    font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--mint); margin-bottom: 0.8rem;
  }
  .legal h1 {
    font-family: var(--serif); font-weight: 600; font-size: clamp(2.2rem, 5vw, 3.4rem);
    color: var(--cream); line-height: 1.1; margin-bottom: 0.6rem;
  }
  .legal .legal-updated { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 2.5rem; }
  .legal h2 {
    font-family: var(--serif); font-weight: 600; font-size: 1.6rem;
    color: var(--cream); margin: 2.4rem 0 0.8rem;
  }
  .legal h3 { font-size: 1.05rem; color: var(--mint); margin: 1.6rem 0 0.5rem; font-weight: 500; }
  .legal p, .legal li { color: var(--text-on-dark); font-size: 0.96rem; line-height: 1.75; }
  .legal p { margin-bottom: 1rem; }
  .legal ul { margin: 0 0 1rem 1.3rem; }
  .legal li { margin-bottom: 0.4rem; }
  .legal a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
  .legal a:hover { color: var(--gold-light); }
  .legal .legal-note {
    margin-top: 2.5rem; padding: 1.1rem 1.3rem;
    background: rgba(122,185,154,0.08); border-left: 2px solid var(--sage);
    border-radius: 4px; font-size: 0.88rem; color: var(--text-muted);
  }
  .legal-back {
    display: inline-block; margin-top: 2.5rem;
    font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); text-decoration: none; border: 1px solid var(--gold);
    padding: 0.6rem 1.5rem; transition: all 0.2s;
  }
  .legal-back:hover { background: var(--gold); color: var(--dark); }

  /* ===== Contact form status ===== */
  .form-status {
    margin-top: 1rem; font-family: var(--sans); font-size: 0.88rem;
    line-height: 1.5; min-height: 1.2em;
  }
  .form-status.is-pending { color: var(--text-muted); }
  .form-status.is-success { color: var(--mint); }
  .form-status.is-error   { color: #e0a3a3; }
  .form-submit:disabled { opacity: 0.55; cursor: not-allowed; }
