/* ========== BEEUP PALETTE & THEMES ========== */
    :root {
      --beeup-orange: #F69011;
      --beeup-orange-700: #D9790A;
      --beeup-navy: #08284F;
      --beeup-navy-900: #061E3A;
      --beeup-cyan: #0BAEE1;
      --beeup-cyan-200: #AEEAF7;
    }

    [data-theme="light"] {
      --bg: #F8FAFC;
      --bg-elevated: #fff;
      --bg-section: #EFF6FF;
      --text: #0F172A;
      --text-muted: #475569;
      --border: #E2E8F0;
      --accent: var(--beeup-orange);
      --accent-hover: var(--beeup-orange-700);
      --accent-soft: rgba(246, 144, 17, 0.12);
      --highlight: var(--beeup-cyan);
      --highlight-soft: rgba(11, 174, 225, 0.12);
      --navy-soft: rgba(8, 40, 79, 0.06);
      --glow: rgba(246, 144, 17, 0.25);
    }

    [data-theme="dark"] {
      --bg: var(--beeup-navy-900);
      --bg-elevated: var(--beeup-navy);
      --bg-section: #08284F;
      --text: #F1F5F9;
      --text-muted: #94A3B8;
      --border: rgba(255,255,255,0.08);
      --accent: var(--beeup-orange);
      --accent-hover: var(--beeup-orange-700);
      --accent-soft: rgba(246, 144, 17, 0.15);
      --highlight: var(--beeup-cyan);
      --highlight-soft: rgba(11, 174, 225, 0.15);
      --navy-soft: rgba(255,255,255,0.03);
      --glow: rgba(246, 144, 17, 0.35);
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
      section:not(.reveal) .stat-card,
      section:not(.reveal) .service-card,
      section:not(.reveal) .solution-card,
      section:not(.reveal) .price-card,
      section:not(.reveal) .testimonial { opacity: 1; transform: none; }
    }

    body {
      margin: 0;
      font-family: 'Outfit', system-ui, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { color: var(--highlight); text-decoration: none; }
    a:hover { color: var(--accent); }

    .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; position: relative; z-index: 1; }

    /* ========== DARK MODE TOGGLE ========== */
    .theme-toggle {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: 1px solid var(--border);
      background: var(--bg-elevated);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .theme-toggle:hover { transform: scale(1.05); box-shadow: 0 0 20px var(--accent-soft); }
    .theme-toggle svg { width: 22px; height: 22px; }
    .theme-toggle .icon-sun { display: none; }
    .theme-toggle .icon-moon { display: block; }
    [data-theme="light"] .theme-toggle .icon-sun { display: block; }
    [data-theme="light"] .theme-toggle .icon-moon { display: none; }

    /* ========== HEADER ========== */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      background: rgba(6, 30, 58, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      padding: 0.85rem 0;
      transition: background 0.3s;
    }
    [data-theme="light"] header {
      background: rgba(255,255,255,0.9);
      backdrop-filter: blur(12px);
    }
    header .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; position: relative; }
    .logo { display: flex; align-items: center; z-index: 102; }
    .logo-img {
      height: 52px;
      width: auto;
      object-fit: contain;
      display: block;
      mix-blend-mode: multiply;
    }
    [data-theme="dark"] .logo-img { mix-blend-mode: multiply; }
    .logo-img-dark { display: none; }
    [data-theme="dark"] .logo-img-light { display: none; }
    [data-theme="dark"] .logo-img-dark { display: block; }
    .nav-toggle {
      display: none;
      width: 48px; height: 48px;
      padding: 0; border: none; border-radius: 12px;
      background: var(--bg-elevated); border: 1px solid var(--border);
      cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px;
      z-index: 102; transition: background 0.2s, box-shadow 0.2s;
      -webkit-tap-highlight-color: transparent;
    }
    .nav-toggle:hover { background: var(--accent-soft); box-shadow: 0 0 16px var(--accent-soft); }
    .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 1px; transition: transform 0.3s, opacity 0.3s; }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-overlay { display: none; }
    .nav-wrap { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
    nav { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
    nav a { color: var(--text-muted); padding: 0.5rem 0.75rem; border-radius: 8px; font-weight: 500; font-size: 0.95rem; transition: color 0.2s, background 0.2s; }
    nav a:hover { color: var(--accent); background: var(--accent-soft); text-decoration: none; }
    @media (max-width: 768px) {
      .nav-toggle { display: flex; }
      .nav-overlay {
        display: block;
        position: fixed; inset: 0;
        background: rgba(0,0,0,0.5);
        opacity: 0; visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
        z-index: 101;
      }
      body.nav-open .nav-overlay { opacity: 1; visibility: visible; }
      body.nav-open { overflow: hidden; }
      .nav-wrap {
        position: fixed;
        top: 0; right: 0;
        width: min(320px, 100vw);
        height: 100vh; height: 100dvh;
        background: var(--bg-elevated);
        border-left: 1px solid var(--border);
        flex-direction: column; align-items: stretch;
        padding: 5.5rem 1.5rem 1.5rem;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 101;
        overflow-y: auto;
        box-shadow: -8px 0 32px rgba(0,0,0,0.2);
      }
      body.nav-open .nav-wrap { transform: translateX(0); }
      .nav-wrap nav { flex-direction: column; align-items: stretch; width: 100%; margin-bottom: 1rem; }
      .nav-wrap nav a {
        padding: 1rem; font-size: 1.05rem;
        border-radius: 10px;
        min-height: 48px;
        display: flex; align-items: center;
      }
      .nav-wrap .theme-toggle { align-self: center; margin-bottom: 0.5rem; }
      .nav-wrap .btn { width: 100%; justify-content: center; padding: 1rem 1.5rem; min-height: 48px; margin-top: 0.5rem; }
      .container { padding: 0 1rem; }
      .hero { padding: 5rem 0 3rem; min-height: auto; }
      .hero h1 { font-size: 1.75rem; }
      .hero-visual { margin-top: 2rem; }
      .hero-visual-frame { padding: 6px; }
      section { padding: 3rem 0; }
      .stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
      .stat-card { padding: 1.25rem 0.75rem; }
      .stat-card .num { font-size: 1.75rem; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    }
    @media (max-width: 480px) {
      .stats { grid-template-columns: 1fr; }
      .hero-stat-strip { padding: 0.75rem 1rem; font-size: 0.85rem; }
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--beeup-orange), var(--beeup-orange-700));
      color: #fff !important;
      padding: 0.65rem 1.35rem;
      border-radius: 10px;
      font-weight: 600;
      font-size: 0.95rem;
      border: none;
      cursor: pointer;
      transition: transform 0.2s, box-shadow 0.2s;
      text-decoration: none;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--glow); text-decoration: none; }
    .btn-ghost { background: transparent; border: 1px solid var(--border); color: var(--text) !important; }
    .btn-ghost:hover { background: var(--navy-soft); box-shadow: none; }

    /* ========== HERO ========== */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 6rem 0 4rem;
      position: relative;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .hero-bg .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.5;
      animation: float 12s ease-in-out infinite;
    }
    .hero-bg .orb-1 { width: 500px; height: 500px; background: var(--beeup-orange); top: -20%; right: -10%; animation-delay: 0s; }
    .hero-bg .orb-2 { width: 400px; height: 400px; background: var(--beeup-cyan); bottom: -10%; left: -5%; animation-delay: -4s; }
    .hero-bg .orb-3 { width: 300px; height: 300px; background: var(--beeup-navy); top: 50%; left: 40%; animation-delay: -8s; opacity: 0.3; }
    .hero-bg .grid {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(11,174,225,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(11,174,225,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    @keyframes float {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(30px, -30px) scale(1.05); }
      66% { transform: translate(-20px, 20px) scale(0.95); }
    }
    @keyframes gradientShift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }
    @keyframes pulseGlow {
      0%, 100% { box-shadow: 0 8px 24px var(--glow); }
      50% { box-shadow: 0 8px 32px var(--glow), 0 0 48px rgba(246,144,17,0.2); }
    }
    @keyframes shimmer {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }
    @keyframes iconFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }
    @keyframes lineExpand {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }
    @keyframes statPop {
      from { opacity: 0; transform: scale(0.8) translateY(10px); }
      to { opacity: 1; transform: scale(1) translateY(0); }
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInScale {
      from { opacity: 0; transform: scale(0.96); }
      to { opacity: 1; transform: scale(1); }
    }
    @keyframes heroImageFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    .hero .container { text-align: center; }
    .hero h1 {
      font-size: clamp(2rem, 5vw, 3.25rem);
      font-weight: 700;
      margin: 0 0 1.25rem;
      letter-spacing: -0.03em;
      line-height: 1.15;
      animation: fadeUp 0.8s ease-out;
    }
    .hero h1 .gradient { background: linear-gradient(135deg, var(--beeup-cyan), var(--beeup-orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .hero > .container > p { font-size: 1.15rem; color: var(--text-muted); max-width: 560px; margin: 0 auto 1.25rem; animation: fadeUp 0.8s ease-out 0.1s both; }
    .hero-stat-strip {
      margin-top: 2rem;
      padding: 0.9rem 1.25rem;
      background: var(--bg-section);
      border: 1px solid var(--border);
      border-radius: 12px;
      text-align: center;
      font-size: 0.9rem;
      color: var(--text-muted);
      animation: fadeUp 0.8s ease-out 0.35s both;
    }
    .hero-stat-strip strong { color: var(--beeup-cyan); }
    .hero .btn {
      font-size: 1.05rem;
      padding: 0.9rem 2rem;
      animation: fadeUp 0.8s ease-out 0.3s both, pulseGlow 2.5s ease-in-out infinite 1s;
    }
    .hero-visual {
      margin-top: 3rem;
      position: relative;
      animation: fadeUp 0.8s ease-out 0.4s both;
      max-width: 880px;
      margin-left: auto;
      margin-right: auto;
    }
    .hero-visual-frame {
      position: relative;
      padding: 8px;
      border-radius: 20px;
      background: linear-gradient(135deg, var(--beeup-cyan), var(--beeup-orange), var(--beeup-cyan));
      background-size: 200% 200%;
      animation: gradientShift 8s ease infinite;
      box-shadow: 0 24px 56px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.05);
    }
    .hero-visual-inner {
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      animation: heroImageFloat 6s ease-in-out infinite;
    }
    .hero-visual img {
      width: 100%;
      height: auto;
      display: block;
      vertical-align: middle;
    }

    /* ========== SECTIONS ========== */
    section {
      padding: 4.5rem 0;
      position: relative;
    }
    /* Scroll reveal (tasarım): section görünür; sadece kartlar .reveal öncesi gizli */
    section.reveal .section-label { animation: fadeUp 0.6s ease-out both; }
    section.reveal h2 { animation: fadeUp 0.6s ease-out 0.05s both; }
    section.reveal .sub { animation: fadeUp 0.6s ease-out 0.1s both; }
    section:nth-child(even) { background: var(--bg-section); }
    .section-label {
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--beeup-cyan);
      margin-bottom: 0.5rem;
      font-weight: 600;
    }
    section h2 {
      font-size: clamp(1.75rem, 3vw, 2.25rem);
      margin: 0 0 1rem;
      letter-spacing: -0.02em;
      position: relative;
      display: inline-block;
    }
    section h2::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 60px;
      height: 3px;
      background: linear-gradient(90deg, var(--beeup-cyan), var(--beeup-orange));
      border-radius: 2px;
      transform-origin: left;
    }
    section.reveal h2::after { animation: lineExpand 0.6s ease-out 0.3s both; }
    section .sub { color: var(--text-muted); margin-bottom: 1.5rem; max-width: 680px; }

    /* ========== ABOUT ========== */
    .about .about-list { margin: 1.25rem 0; padding-left: 1.5rem; }
    .about .about-list li { margin: 0.6rem 0; position: relative; padding-left: 0.5rem; }
    .about .about-list li::marker { color: var(--beeup-orange); }
    .about .btn { margin-top: 0.75rem; }
    .about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
    @media (max-width: 768px) { .about-wrap { grid-template-columns: 1fr; } }
    .about-visual {
      background: linear-gradient(135deg, var(--beeup-navy), var(--beeup-cyan));
      border-radius: 20px;
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .about-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background: 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%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z' fill='%23ffffff' fill-opacity='0.08'/%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.8;
    }
    .about-visual svg.about-illus {
      width: 85%;
      height: auto;
      position: relative;
      z-index: 1;
      opacity: 0.95;
      transition: transform 0.5s;
    }
    .about-wrap:hover .about-visual svg.about-illus { transform: scale(1.03); }
    .about-visual .dot { animation: iconFloat 3s ease-in-out infinite; }
    .about-visual .dot:nth-child(1) { animation-delay: 0s; }
    .about-visual .dot:nth-child(2) { animation-delay: 0.5s; }
    .about-visual .dot:nth-child(3) { animation-delay: 1s; }

    /* ========== STATS ========== */
    .stats {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.5rem;
      text-align: center;
      margin-top: 2rem;
    }
    @media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 480px) { .stats { grid-template-columns: 1fr; } }
    .stat-card {
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.75rem 1rem;
      transition: transform 0.3s, box-shadow 0.3s;
      animation: fadeUp 0.6s ease-out both;
    }
    section:not(.reveal) .stat-card { opacity: 0; transform: translateY(20px); }
    section.reveal .stat-card { animation: fadeUp 0.6s ease-out both; }
    section.reveal .stat-card:nth-child(1) { animation-delay: 0.1s; }
    section.reveal .stat-card:nth-child(2) { animation-delay: 0.18s; }
    section.reveal .stat-card:nth-child(3) { animation-delay: 0.26s; }
    section.reveal .stat-card:nth-child(4) { animation-delay: 0.34s; }
    section.reveal .stat-card:nth-child(5) { animation-delay: 0.42s; }
    .stat-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 16px 40px var(--highlight-soft), 0 0 0 1px rgba(11,174,225,0.2); }
    .stat-card:hover .num { animation: statPop 0.4s ease-out; }
    .stat-card .num { font-size: 2.25rem; font-weight: 700; background: linear-gradient(135deg, var(--beeup-cyan), var(--beeup-orange)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
    .stat-card .label { font-size: 0.9rem; color: var(--text-muted); margin-top: 0.25rem; }

    /* ========== SERVICES ========== */
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
    @media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }
    .service-card {
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 2rem;
      transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
      position: relative;
      overflow: hidden;
      animation: fadeUp 0.6s ease-out both;
    }
    section:not(.reveal) .service-card { opacity: 0; transform: translateY(24px); }
    section.reveal .service-card { animation: fadeUp 0.6s ease-out both; }
    section.reveal .service-card:nth-child(1) { animation-delay: 0.12s; }
    section.reveal .service-card:nth-child(2) { animation-delay: 0.22s; }
    section.reveal .service-card:nth-child(3) { animation-delay: 0.32s; }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--beeup-cyan), var(--beeup-orange));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s;
    }
    .service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px var(--highlight-soft); border-color: var(--beeup-cyan); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-card:hover .icon { animation: iconFloat 2s ease-in-out infinite; }
    .service-card .icon {
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: var(--highlight-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
      transition: background 0.3s, transform 0.3s;
    }
    .service-card .icon svg { width: 28px; height: 28px; color: var(--beeup-cyan); }
    .service-card h3 { margin: 0 0 0.5rem; font-size: 1.15rem; }
    .service-card p { margin: 0 0 1rem; font-size: 0.95rem; color: var(--text-muted); }
    .service-card a { font-size: 0.9rem; font-weight: 600; color: var(--beeup-cyan); display: inline-flex; align-items: center; gap: 0.35rem; transition: gap 0.2s; }
    .service-card a:hover { gap: 0.6rem; color: var(--accent); }

    /* ========== SOLUTIONS ========== */
    .solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
    @media (max-width: 900px) { .solutions-grid { grid-template-columns: 1fr; } }
    .solution-card {
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.75rem;
      transition: transform 0.3s, box-shadow 0.3s;
      animation: fadeUp 0.6s ease-out both;
    }
    section:not(.reveal) .solution-card { opacity: 0; transform: translateY(20px); }
    section.reveal .solution-card { animation: fadeUp 0.6s ease-out both; }
    section.reveal .solution-card:nth-child(1) { animation-delay: 0.1s; }
    section.reveal .solution-card:nth-child(2) { animation-delay: 0.2s; }
    section.reveal .solution-card:nth-child(3) { animation-delay: 0.3s; }
    .solution-card:hover { transform: translateY(-6px) rotate(-0.5deg); box-shadow: 0 16px 36px var(--accent-soft); }
    .solution-card a { transition: gap 0.2s, transform 0.2s; display: inline-flex; align-items: center; gap: 0.35rem; }
    .solution-card:hover a { gap: 0.6rem; }
    .solution-card h3 { margin: 0 0 0.5rem; font-size: 1.1rem; }
    .solution-card p { margin: 0; font-size: 0.9rem; color: var(--text-muted); }
    .solution-card a { font-weight: 600; color: var(--beeup-orange); }

    /* ========== PRICING ========== */
    .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; align-items: start; }
    @media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
    .price-card {
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2rem;
      position: relative;
      transition: transform 0.3s, box-shadow 0.3s;
      animation: fadeUp 0.6s ease-out both;
    }
    section:not(.reveal) .price-card { opacity: 0; transform: translateY(24px); }
    section.reveal .price-card { animation: fadeUp 0.6s ease-out both; }
    section.reveal .price-card:nth-child(1) { animation-delay: 0.1s; }
    section.reveal .price-card:nth-child(2) { animation-delay: 0.2s; }
    section.reveal .price-card:nth-child(3) { animation-delay: 0.3s; }
    .price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px var(--accent-soft); }
    .price-card.popular {
      border-color: var(--beeup-orange);
      box-shadow: 0 0 0 1px var(--beeup-orange), 0 12px 32px var(--accent-soft);
      position: relative;
      overflow: hidden;
    }
    .price-card.popular::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 50%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(246,144,17,0.06), transparent);
      animation: shimmer 4s ease-in-out infinite;
    }
    .price-card .badge {
      position: absolute;
      top: -1px;
      right: 1.25rem;
      background: linear-gradient(135deg, var(--beeup-orange), var(--beeup-orange-700));
      color: #fff;
      font-size: 0.7rem;
      font-weight: 600;
      padding: 0.35rem 0.75rem;
      border-radius: 0 0 10px 10px;
    }
    .price-card h3 { margin: 0 0 0.35rem; font-size: 1.2rem; }
    .price-card .desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
    .price-card .from { font-size: 1.15rem; font-weight: 700; color: var(--beeup-orange); margin-bottom: 0.5rem; }
    .price-card .included-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--beeup-cyan); margin: 0.5rem 0 0.25rem; font-weight: 600; }
    .price-card .note { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1rem; }
    .price-card ul { margin: 0.75rem 0; padding-left: 1.25rem; font-size: 0.9rem; }
    .price-card ul li { margin: 0.4rem 0; }
    .price-card .btn { display: block; text-align: center; margin-top: 1rem; width: 100%; }

    /* ========== CTA BLOCK ========== */
    .cta-block {
      text-align: center;
      padding: 4rem 0;
      background: linear-gradient(135deg, var(--beeup-navy) 0%, var(--beeup-navy-900) 100%);
      position: relative;
    }
    .cta-block::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 50%, rgba(246,144,17,0.15) 0%, transparent 50%);
      pointer-events: none;
    }
    .cta-block .section-label { color: var(--beeup-cyan-200); }
    .cta-block h2 { color: #fff; }
    .cta-block p { color: var(--beeup-cyan-200); margin-bottom: 1.5rem; }
    .cta-block .btn { margin-top: 0.5rem; }

    /* ========== TESTIMONIALS ========== */
    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
    @media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }
    .testimonial {
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2rem;
      transition: transform 0.3s, box-shadow 0.3s;
      animation: fadeUp 0.6s ease-out both;
    }
    section:not(.reveal) .testimonial { opacity: 0; transform: translateY(20px); }
    section.reveal .testimonial { animation: fadeUp 0.6s ease-out both; }
    section.reveal .testimonial:nth-child(1) { animation-delay: 0.1s; }
    section.reveal .testimonial:nth-child(2) { animation-delay: 0.2s; }
    section.reveal .testimonial:nth-child(3) { animation-delay: 0.3s; }
    .testimonial:hover { transform: translateY(-6px); box-shadow: 0 16px 40px var(--highlight-soft); }
    .testimonial:hover .avatar { animation: pulseGlow 1.5s ease-in-out infinite; box-shadow: 0 0 0 0 rgba(11,174,225,0.4); }
    .testimonial .avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--beeup-cyan), var(--beeup-orange));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.1rem;
      color: #fff;
      margin-bottom: 1rem;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .testimonial blockquote { margin: 0 0 1rem; font-size: 0.95rem; color: var(--text-muted); font-style: italic; line-height: 1.6; }
    .testimonial .author { font-weight: 600; color: var(--text); }
    .testimonial .author a { color: inherit; }
    .testimonial .author a:hover { color: var(--accent); }
    .testimonial .role { font-size: 0.85rem; color: var(--beeup-cyan); margin-top: 0.2rem; }

    /* ========== CONTACT CTA ========== */
    .contact-cta {
      text-align: center;
      padding: 4rem 0;
      background: var(--bg-section);
    }
    .contact-cta h2 { margin-bottom: 0.5rem; }
    .contact-cta p { color: var(--text-muted); margin-bottom: 1.5rem; }
    .contact-cta .btn { margin: 0 0.5rem 0.5rem 0; }

    /* ========== FOOTER ========== */
    footer {
      background: var(--beeup-navy-900);
      border-top: 1px solid var(--border);
      padding: 3rem 0 1.5rem;
    }
    [data-theme="light"] footer { background: var(--beeup-navy); }
    .footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 3rem; margin-bottom: 2rem; align-items: start; }
    @media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; } }
    .footer p.intro { max-width: 320px; color: var(--beeup-cyan-200); font-size: 0.95rem; line-height: 1.6; }
    [data-theme="light"] .footer p.intro { color: var(--beeup-cyan-200); }
    .footer h4 { font-size: 0.85rem; margin: 0 0 0.75rem; color: var(--beeup-cyan-200); text-transform: uppercase; letter-spacing: 0.08em; }
    .footer ul { list-style: none; padding: 0; margin: 0; }
    .footer ul li { margin: 0.4rem 0; }
    .footer a { color: rgba(255,255,255,0.7); }
    .footer a:hover { color: var(--beeup-orange); }
    .footer .contact-info { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin: 0.25rem 0; }
    .footer .contact-info a { color: var(--beeup-cyan-200); }
    .footer .response-note { font-size: 0.85rem; color: var(--beeup-cyan-200); margin-top: 0.5rem; opacity: 0.9; }
    .footer-bottom { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; color: rgba(255,255,255,0.5); text-align: center; }
    .newsletter input {
      padding: 0.6rem 0.9rem;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 10px;
      background: rgba(255,255,255,0.08);
      color: #fff;
      width: 100%;
      max-width: 220px;
      font-size: 0.9rem;
    }
    .newsletter input::placeholder { color: rgba(255,255,255,0.5); }
    .newsletter .btn { margin-top: 0.5rem; }


    /* ========== HERO SCAN ========== */
    .hero-scan {
      margin: 1.5rem auto 1.25rem;
      max-width: 560px;
      animation: fadeUp 0.8s ease-out 0.25s both;
    }
    .hero-scan-inner {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem;
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: 14px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .hero-scan-inner:focus-within {
      border-color: var(--beeup-cyan);
      box-shadow: 0 0 0 3px var(--highlight-soft);
    }
    .hero-scan-icon {
      flex-shrink: 0;
      color: var(--text-muted);
      padding: 0 0.5rem;
      display: flex;
      align-items: center;
    }
    .hero-scan-icon svg { display: block; }
    .hero-scan-input {
      flex: 1;
      min-width: 0;
      padding: 0.85rem 0.5rem;
      border: none;
      background: transparent;
      color: var(--text);
      font-size: 1rem;
      font-family: inherit;
    }
    .hero-scan-input::placeholder { color: var(--text-muted); }
    .hero-scan-input:focus { outline: none; }
    .hero-scan-btn { flex-shrink: 0; white-space: nowrap; }
    .hero-scan-hint {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin: 0.5rem 0 0;
      text-align: center;
    }
    @media (max-width: 600px) {
      .hero-scan-inner { flex-wrap: wrap; }
      .hero-scan-input { width: 100%; order: 1; }
      .hero-scan-icon { order: 0; width: 100%; padding-left: 0.75rem; }
      .hero-scan-btn { width: 100%; order: 2; }
    }

    /* ========== SCAN MODAL ========== */
    .scan-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(6, 30, 58, 0.75);
      backdrop-filter: blur(8px);
      z-index: 200;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s, visibility 0.3s;
    }
    .scan-modal-overlay.is-open {
      opacity: 1;
      visibility: visible;
    }
    .scan-modal {
      width: 100%;
      max-width: 440px;
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: 20px;
      box-shadow: 0 24px 56px rgba(0,0,0,0.35);
      overflow: hidden;
      transform: scale(0.95);
      transition: transform 0.3s ease;
    }
    .scan-modal-overlay.is-open .scan-modal { transform: scale(1); }
    .scan-modal-header {
      padding: 1.25rem 1.5rem;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .scan-modal-header h3 { margin: 0; font-size: 1.15rem; }
    .scan-modal-close {
      width: 40px;
      height: 40px;
      border: none;
      border-radius: 10px;
      background: transparent;
      color: var(--text-muted);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, color 0.2s;
    }
    .scan-modal-close:hover { background: var(--accent-soft); color: var(--accent); }
    .scan-modal-close svg { width: 22px; height: 22px; }
    .scan-modal-body { padding: 1.5rem; }
    .scan-modal-url {
      font-size: 0.9rem;
      color: var(--text-muted);
      word-break: break-all;
      margin-bottom: 1.25rem;
      padding: 0.75rem;
      background: var(--bg);
      border-radius: 10px;
    }
    .scan-steps { list-style: none; padding: 0; margin: 0 0 1.25rem; }
    .scan-step {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.6rem 0;
      font-size: 0.95rem;
      color: var(--text-muted);
      border-bottom: 1px solid var(--border);
    }
    .scan-step:last-child { border-bottom: none; }
    .scan-step.is-done { color: var(--beeup-cyan); }
    .scan-step.is-active { color: var(--text); font-weight: 500; }
    .scan-step-icon {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      background: var(--highlight-soft);
      color: var(--beeup-cyan);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .scan-step.is-done .scan-step-icon { background: rgba(11,174,225,0.2); color: var(--beeup-cyan); }
    .scan-step.is-active .scan-step-icon { background: var(--accent-soft); color: var(--beeup-orange); }
    .scan-progress {
      height: 6px;
      background: var(--border);
      border-radius: 3px;
      overflow: hidden;
      margin-bottom: 1.25rem;
    }
    .scan-progress-bar {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--beeup-cyan), var(--beeup-orange));
      border-radius: 3px;
      transition: width 0.4s ease;
    }
    .scan-modal-footer {
      padding: 0 1.5rem 1.5rem;
      display: flex;
      gap: 0.75rem;
      justify-content: flex-end;
    }
    .scan-modal-footer .btn { min-width: 120px; }
    .scan-result-cta { display: none; }
    .scan-modal.is-done .scan-result-cta { display: inline-flex; }
    .scan-modal.is-done .scan-progress-wrap { display: none; }

    /* ========== CHATBOT ========== */
    .chatbot-wrap {
      position: fixed;
      bottom: 1.5rem;
      right: 1.5rem;
      z-index: 99;
      font-family: 'Outfit', system-ui, sans-serif;
    }
    .chatbot-btn {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      border: none;
      background: linear-gradient(135deg, var(--beeup-orange), var(--beeup-orange-700));
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px var(--glow);
      transition: transform 0.2s, box-shadow 0.2s;
      -webkit-tap-highlight-color: transparent;
    }
    .chatbot-btn:hover { transform: scale(1.08); box-shadow: 0 12px 32px var(--glow); }
    .chatbot-btn svg { width: 28px; height: 28px; }
    .chatbot-window {
      position: absolute;
      bottom: calc(100% + 12px);
      right: 0;
      width: 380px;
      max-width: calc(100vw - 2rem);
      height: 480px;
      max-height: 70vh;
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: 20px;
      box-shadow: 0 24px 56px rgba(0,0,0,0.25);
      display: flex;
      flex-direction: column;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px) scale(0.96);
      transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    }
    .chatbot-window.is-open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
    }
    .chatbot-header {
      padding: 1rem 1.25rem;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 0.75rem;
      border-radius: 20px 20px 0 0;
      background: linear-gradient(135deg, var(--beeup-navy), var(--beeup-navy-900));
    }
    [data-theme="light"] .chatbot-header { background: linear-gradient(135deg, var(--beeup-navy), #0a3255); }
    .chatbot-avatar {
      width: 42px;
      height: 42px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--beeup-cyan), var(--beeup-orange));
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .chatbot-avatar svg { width: 24px; height: 24px; color: #fff; }
    .chatbot-header h4 { margin: 0; font-size: 1rem; color: #fff; font-weight: 600; }
    .chatbot-header p { margin: 0.25rem 0 0; font-size: 0.8rem; color: var(--beeup-cyan-200); }
    .chatbot-close {
      margin-left: auto;
      width: 36px;
      height: 36px;
      border: none;
      border-radius: 10px;
      background: rgba(255,255,255,0.1);
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }
    .chatbot-close:hover { background: rgba(255,255,255,0.2); }
    .chatbot-close svg { width: 20px; height: 20px; }
    .chatbot-messages {
      flex: 1;
      overflow-y: auto;
      padding: 1rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .chatbot-msg {
      max-width: 85%;
      padding: 0.75rem 1rem;
      border-radius: 16px;
      font-size: 0.95rem;
      line-height: 1.5;
    }
    .chatbot-msg.bot {
      align-self: flex-start;
      background: var(--bg-section);
      border: 1px solid var(--border);
      color: var(--text);
    }
    .chatbot-msg.user {
      align-self: flex-end;
      background: linear-gradient(135deg, var(--beeup-orange), var(--beeup-orange-700));
      color: #fff;
      border: none;
    }
    .chatbot-msg .time { font-size: 0.7rem; opacity: 0.8; margin-top: 0.35rem; }
    .chatbot-input-wrap {
      padding: 1rem;
      border-top: 1px solid var(--border);
      display: flex;
      gap: 0.5rem;
      align-items: center;
    }
    .chatbot-input {
      flex: 1;
      min-width: 0;
      padding: 0.75rem 1rem;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: var(--bg);
      color: var(--text);
      font-size: 0.95rem;
      font-family: inherit;
    }
    .chatbot-input:focus { outline: none; border-color: var(--beeup-cyan); box-shadow: 0 0 0 2px var(--highlight-soft); }
    .chatbot-send {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      border: none;
      background: linear-gradient(135deg, var(--beeup-orange), var(--beeup-orange-700));
      color: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform 0.2s;
    }
    .chatbot-send:hover { transform: scale(1.05); }
    .chatbot-send svg { width: 20px; height: 20px; }
    @media (max-width: 480px) {
      .chatbot-wrap { bottom: 1rem; right: 1rem; }
      .chatbot-window { width: calc(100vw - 2rem); height: 420px; }
    }

/* ========== PAGE HERO & INNER PAGES ========== */
.page-hero {
      padding: 6rem 0 3.5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 80% 60% at 50% 0%, var(--highlight-soft) 0%, transparent 55%);
      pointer-events: none;
    }
    .page-hero .container { position: relative; z-index: 1; }
    .page-hero h1 {
      font-size: clamp(1.85rem, 4.5vw, 2.75rem);
      margin: 0 0 0.75rem;
      letter-spacing: -0.02em;
    }
    .page-hero .sub {
      max-width: 640px;
      margin: 0 auto;
      color: var(--text-muted);
      font-size: 1.05rem;
      line-height: 1.6;
    }
    .about-section { padding: 3rem 0 4.5rem; }
    .about-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3.5rem;
      align-items: start;
    }
    @media (max-width: 768px) { .about-wrap { grid-template-columns: 1fr; gap: 2.5rem; } }
    .about-content { max-width: 100%; }
    .about-block {
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.5rem 1.75rem;
      margin-bottom: 1.25rem;
      border-left: 4px solid var(--beeup-cyan);
      transition: box-shadow 0.25s, border-color 0.25s;
    }
    .about-block:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); border-left-color: var(--beeup-orange); }
    .about-block h2 {
      font-size: 1.1rem;
      margin: 0 0 0.5rem;
      color: var(--beeup-cyan);
      font-weight: 600;
    }
    .about-block p { margin: 0; color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
    .about-list {
      margin: 1rem 0 1.5rem;
      padding-left: 1.5rem;
      color: var(--text-muted);
      font-size: 0.95rem;
    }
    .about-list li { margin: 0.5rem 0; }
    .about-list li::marker { color: var(--beeup-orange); }
    .about-wrap .btn { margin-top: 0.5rem; }
    .about-visual {
      background: linear-gradient(145deg, var(--beeup-navy) 0%, #0a3255 50%, var(--beeup-cyan) 100%);
      border-radius: 24px;
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 48px rgba(8, 40, 79, 0.4);
    }
    .about-visual::before {
      content: '';
      position: absolute;
      inset: 0;
      background: 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%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z' fill='%23ffffff' fill-opacity='0.08'/%3E%3C/g%3E%3C/svg%3E");
      opacity: 0.9;
    }
    .about-visual svg { width: 82%; height: auto; position: relative; z-index: 1; opacity: 0.95; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2)); }
    .about-values {
      padding: 3.5rem 0 4.5rem;
      background: var(--bg-section);
    }
    .about-values .section-label { margin-bottom: 0.5rem; }
    .about-section-title { font-size: clamp(1.4rem, 2.5vw, 1.85rem); margin: 0 0 2rem; font-weight: 700; }
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 0; }
    @media (max-width: 768px) { .values-grid { grid-template-columns: 1fr; } }
    .value-card {
      background: var(--bg-elevated);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2rem 1.5rem;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
      text-align: center;
    }
    .value-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px var(--highlight-soft);
      border-color: var(--beeup-cyan);
    }
    .value-icon {
      width: 48px;
      height: 48px;
      margin: 0 auto 1rem;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--highlight-soft), var(--accent-soft));
      color: var(--beeup-orange);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.35rem;
    }
    .value-card h3 { margin: 0 0 0.5rem; font-size: 1.1rem; font-weight: 600; }
    .value-card p { margin: 0; font-size: 0.9rem; color: var(--text-muted); line-height: 1.55; }

/* ========== PRODUCTS (Ürünlerimiz) ========== */
.products-section { padding: 2rem 0 4rem; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .products-grid { grid-template-columns: 1fr; } }
.product-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.2);
  border-color: var(--beeup-cyan);
}
.product-card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--bg-section);
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-card-image .product-url {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
  right: 1rem;
  padding: 0.5rem 0.75rem;
  background: rgba(6, 30, 58, 0.9);
  border-radius: 10px;
  font-size: 0.8rem;
  color: var(--beeup-cyan-200);
  font-weight: 500;
}
[data-theme="light"] .product-card-image .product-url { background: rgba(8, 40, 79, 0.85); }
.product-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-card h3 { margin: 0 0 0.5rem; font-size: 1.25rem; color: var(--text); }
.product-card .product-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 1.25rem;
  flex: 1;
}
.product-card .product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--beeup-cyan);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  transition: gap 0.2s, color 0.2s;
}
.product-card .product-link:hover { gap: 0.6rem; color: var(--beeup-orange); }
.product-card .product-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.product-card .btn { width: 100%; justify-content: center; margin-top: auto; }
.more-coming {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-section);
  border-radius: 20px;
  margin-top: 3rem;
  border: 1px dashed var(--border);
}
.more-coming h2 { font-size: 1.35rem; margin: 0 0 0.75rem; }
.more-coming p { color: var(--text-muted); max-width: 520px; margin: 0 auto 1.5rem; font-size: 0.95rem; }
.cta-demo { text-align: center; padding: 3.5rem 2rem; margin-top: 3rem; }
.cta-demo h2 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); margin: 0 0 0.5rem; }
.cta-demo p { color: var(--text-muted); margin-bottom: 1.5rem; }
.cta-demo .btn { margin: 0 0.5rem 0.5rem 0; }

/* Header language select (bootstrap bağımlılığını kaldırır) */
.lang-select {
  width: auto;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
}
.lang-select:focus { outline: none; border-color: var(--beeup-cyan); box-shadow: 0 0 0 2px var(--highlight-soft); }