/* ═══════════════════════════════════════════
   Syluna — Premium SaaS Landing Page v2
   Clean, spacious, professional
   ═══════════════════════════════════════════ */

:root {
  --primary: #7c6849;
  --primary-light: #9a8568;
  --primary-dark: #5a4a35;
  --accent: #c4a265;
  --accent-light: #dfc28e;
  --gold: #d4a853;

  --bg: #fafaf8;
  --bg-alt: #f5f3ef;
  --card: #ffffff;
  --ink: #1c1917;
  --ink-2: #44403c;
  --muted: #78716c;
  --line: #e7e5e4;
  --line-light: #f0eeeb;

  --shadow-xs: 0 1px 3px rgba(28,25,23,0.04);
  --shadow-sm: 0 2px 8px rgba(28,25,23,0.05);
  --shadow-md: 0 8px 24px rgba(28,25,23,0.07);
  --shadow-lg: 0 16px 48px rgba(28,25,23,0.09);
  --shadow-xl: 0 24px 64px rgba(28,25,23,0.11);

  --r-sm: 10px;
  --r: 14px;
  --r-lg: 18px;
  --r-xl: 22px;
  --r-2xl: 28px;

  --font: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.4,0,0.2,1);
  --t: 200ms var(--ease);
  --t-slow: 400ms var(--ease);
}

/* RESET */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul,ol { list-style: none; }
img { max-width: 100%; display: block; }
h1,h2,h3,h4 { font-weight: 800; line-height: 1.15; letter-spacing: -0.025em; color: var(--ink); }

.container { width: min(1120px, 100% - 48px); margin: 0 auto; }

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__label {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(124,104,73,0.07);
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 999px; border: 2px solid transparent;
  font-family: var(--font); font-weight: 700; font-size: 15px;
  cursor: pointer; transition: all var(--t); white-space: nowrap; text-decoration: none;
}
.btn--primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,104,73,0.3); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink-2); border-color: transparent; padding: 12px 16px; }
.btn--ghost:hover { color: var(--primary); background: rgba(124,104,73,0.05); }
.btn--white { background: #fff; color: var(--ink); border-color: #fff; }
.btn--white:hover { background: #f5f3ef; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.2); }
.btn--outline-light { background: transparent; color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.25); }
.btn--outline-light:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn--lg { padding: 16px 36px; font-size: 16px; }
.btn svg { flex-shrink: 0; }

/* ─── NAVBAR ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,250,248,0.8);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--t);
}
.nav.scrolled { border-color: var(--line-light); box-shadow: var(--shadow-xs); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1120px; margin: 0 auto; padding: 16px 24px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav__logo {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--primary); color: #fff; font-weight: 900; font-size: 13px;
}
.nav__name { font-weight: 800; font-size: 19px; letter-spacing: -0.02em; }
.nav__links { display: flex; gap: 32px; font-weight: 600; font-size: 14px; color: var(--muted); }
.nav__links a { transition: color var(--t); padding: 4px 0; position: relative; }
.nav__links a::after {
  content: ""; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--primary); border-radius: 999px;
  transition: width var(--t);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active { color: var(--primary); }
.nav__cta { display: flex; gap: 8px; }
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border: none; background: none; cursor: pointer;
}
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all var(--t); }

/* ─── HERO ─── */
.hero {
  position: relative; padding: 160px 0 60px;
  min-height: min(92vh, 900px);
  display: flex; align-items: center; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__glow {
  position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.4;
}
.hero__glow--1 {
  width: 600px; height: 600px; top: -15%; right: -5%;
  background: radial-gradient(circle, rgba(124,104,73,0.18) 0%, transparent 70%);
  animation: glowFloat 14s ease-in-out infinite;
}
.hero__glow--2 {
  width: 500px; height: 500px; bottom: -10%; left: -8%;
  background: radial-gradient(circle, rgba(196,162,101,0.12) 0%, transparent 70%);
  animation: glowFloat 18s ease-in-out infinite reverse;
}
@keyframes glowFloat {
  0%,100% { transform: translate(0,0); }
  33% { transform: translate(20px,-15px); }
  66% { transform: translate(-15px,20px); }
}

.hero__content { position: relative; z-index: 1; max-width: 680px; text-align: center; margin: 0 auto; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 999px;
  background: rgba(124,104,73,0.06); border: 1px solid rgba(124,104,73,0.12);
  font-size: 13px; font-weight: 700; color: var(--primary); margin-bottom: 32px;
}
.hero__badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.4} }

.hero h1 { font-size: clamp(36px,5.5vw,58px); margin-bottom: 24px; letter-spacing: -0.035em; line-height: 1.08; }
.hero__sub { font-size: 18px; color: var(--ink-2); max-width: 540px; margin: 0 auto 44px; line-height: 1.75; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Hero Metrics */
.hero__metrics {
  display: flex; align-items: center; justify-content: center; gap: 0;
  margin-top: 80px; padding: 40px 48px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-2xl); box-shadow: var(--shadow-md);
  max-width: 780px; margin-left: auto; margin-right: auto;
}
.hero__metric { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; }
.hero__metric-value {
  font-size: 34px; font-weight: 900; letter-spacing: -0.03em; line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__metric-suffix {
  font-size: 22px; font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero__metric-label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.hero__metric-sep { width: 1px; height: 44px; background: var(--line); flex-shrink: 0; }

/* ─── TRUST ─── */
.trust { padding: 48px 0 24px; }
.trust__row { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.trust__chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--line-light);
  font-size: 12px; font-weight: 700; color: var(--muted);
  letter-spacing: 0.02em;
}
.trust__chip svg { color: var(--primary); opacity: 0.7; }

/* ─── SECTION ─── */
.section { padding: 120px 0; }
.section__head { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.section__head h2 { font-size: clamp(28px,4vw,40px); margin-bottom: 16px; }
.section__desc { font-size: 17px; color: var(--ink-2); line-height: 1.75; }

/* ─── ABOUT ─── */
.about { background: var(--bg); }
.about__layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 64px; align-items: start; }
.about__text h2 { font-size: clamp(26px,3.5vw,36px); margin-bottom: 24px; }
.about__intro { font-size: 17px; color: var(--ink-2); line-height: 1.8; margin-bottom: 12px; }
.about__text > p { color: var(--ink-2); line-height: 1.8; margin-bottom: 32px; font-size: 15px; }
.about__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.about__card { position: sticky; top: 100px; }
.about__card-inner {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 40px 32px; text-align: center;
  box-shadow: var(--shadow-sm);
}
.about__card-logo-icon { width: 56px!important; height: 56px!important; font-size: 20px!important; border-radius: 14px!important; margin: 0 auto 16px; display: flex!important; }
.about__card-inner h3 { font-size: 20px; margin-bottom: 4px; }
.about__card-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.about__card-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 12px;
  padding: 20px 0; margin-bottom: 20px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.about__card-grid strong { display: block; font-size: 17px; font-weight: 800; color: var(--primary); }
.about__card-grid span { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.about__card-links { display: flex; flex-direction: column; gap: 6px; }
.about__card-links a { font-size: 14px; color: var(--primary); transition: opacity var(--t); }
.about__card-links a:hover { opacity: 0.7; }

/* ─── WHY (Convince) ─── */
.why { background: var(--bg-alt); }
.why__compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 64px; }
.why__col {
  padding: 36px 32px; border-radius: var(--r-xl);
  border: 1px solid var(--line);
}
.why__col--before { background: #fdf5ee; border-color: #e8d5c4; }
.why__col--after { background: #eef7ee; border-color: #c4dfc4; }
.why__col-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 16px; margin-bottom: 20px;
  border-bottom: 2px solid currentColor;
}
.why__col--before .why__col-head { color: #b5563a; border-color: rgba(181,86,58,0.15); }
.why__col--after .why__col-head { color: #2d7a3a; border-color: rgba(45,122,58,0.15); }
.why__col-head h3 { font-size: 18px; font-weight: 800; }
.why__col ul { display: flex; flex-direction: column; gap: 12px; }
.why__col li { font-size: 15px; line-height: 1.6; padding-left: 28px; position: relative; color: var(--ink-2); }
.why__col--before li::before { content: "✕"; position: absolute; left: 0; font-weight: 800; font-size: 13px; color: #b5563a; }
.why__col--after li::before { content: "✓"; position: absolute; left: 0; font-weight: 800; font-size: 15px; color: #2d7a3a; }

.why__benefits { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.why__benefit {
  padding: 28px; border-radius: var(--r-lg);
  background: var(--card); border: 1px solid var(--line);
  transition: all var(--t-slow);
}
.why__benefit:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(124,104,73,0.15); }
.why__benefit-icon {
  width: 48px; height: 48px; border-radius: var(--r);
  background: rgba(124,104,73,0.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); margin-bottom: 16px;
}
.why__benefit strong { display: block; font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.why__benefit p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ─── CTA BAND ─── */
.cta-band { padding: 40px 0 80px; }
.cta-band__box {
  text-align: center; padding: 64px 48px;
  border-radius: var(--r-2xl);
  background: linear-gradient(135deg, var(--ink) 0%, #2d261e 100%);
  position: relative; overflow: hidden;
}
.cta-band__box::before {
  content: ""; position: absolute; top: -40%; right: -8%;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,162,101,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band__box h2 { color: #fff; font-size: clamp(24px,3.5vw,36px); margin-bottom: 12px; position: relative; z-index: 1; }
.cta-band__box > p { color: rgba(255,255,255,0.65); font-size: 17px; margin-bottom: 32px; position: relative; z-index: 1; }
.cta-band__btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ─── CONTACT / DEMO ─── */
.contact { background: var(--bg); }
.contact__wrap {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-2xl); padding: 56px; box-shadow: var(--shadow-md);
}
.contact__info h2 { font-size: 28px; margin-bottom: 12px; }
.contact__info > p { color: var(--ink-2); margin-bottom: 32px; line-height: 1.7; font-size: 16px; }
.contact__details { display: flex; flex-direction: column; gap: 14px; }
.contact__detail {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: var(--ink-2); transition: color var(--t);
}
.contact__detail svg { color: var(--primary); flex-shrink: 0; }
a.contact__detail:hover { color: var(--primary); }

.contact__form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__label { display: block; font-size: 13px; font-weight: 700; color: var(--ink-2); margin-bottom: 6px; }
.contact__form input, .contact__form textarea {
  width: 100%; padding: 12px 16px; border-radius: var(--r-sm);
  border: 1px solid var(--line); background: var(--bg);
  font-family: var(--font); font-size: 14px; color: var(--ink);
  transition: all var(--t); outline: none;
}
.contact__form textarea { resize: vertical; min-height: 80px; }
.contact__form input:focus, .contact__form textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124,104,73,0.08); background: var(--card);
}
.contact__form input::placeholder, .contact__form textarea::placeholder { color: #b8b0a6; }
.form__status { font-weight: 700; font-size: 14px; min-height: 20px; }
.form__consent { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.55; color: var(--ink-2); }
.form__consent input[type="checkbox"] { width: 18px; height: 18px; min-width: 18px; margin-top: 2px; accent-color: var(--primary); cursor: pointer; }
.form__consent label { cursor: pointer; }
.form__consent a { color: var(--primary); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ─── FOOTER ─── */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 0; }
.footer .container { max-width: 1120px; }
.footer__grid {
  padding: 56px 0 40px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
}
.footer .nav__brand { margin-bottom: 16px; }
.footer .nav__logo { background: rgba(255,255,255,0.1); color: var(--accent-light); }
.footer .nav__name { color: #fff; }
.footer__brand > p { font-size: 14px; line-height: 1.7; max-width: 260px; color: rgba(255,255,255,0.5); }
.footer__col h4 { color: #fff; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer__col a, .footer__col span { display: block; font-size: 14px; padding: 4px 0; transition: color var(--t); color: rgba(255,255,255,0.5); }
.footer__col a:hover { color: var(--accent-light); }
.footer__bottom {
  padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer__legal { display: flex; gap: 16px; }
.footer__legal a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color var(--t); }
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ─── MODULES (Tabs) ─── */
.modules { background: var(--bg); }
.tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.tabs__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--card);
  font-family: var(--font); font-weight: 700; font-size: 14px;
  color: var(--muted); cursor: pointer; transition: all var(--t);
}
.tabs__btn:hover { border-color: var(--primary); color: var(--primary); }
.tabs__btn.active { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 4px 16px rgba(124,104,73,0.25); }
.tabs__btn svg { width: 18px; height: 18px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeTab 0.35s ease; }
@keyframes fadeTab { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
.modules__grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 16px; }
.module-card {
  padding: 24px; border-radius: var(--r-lg);
  border: 1px solid var(--line); background: var(--card);
  transition: all var(--t);
}
.module-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(124,104,73,0.15); }
.module-card__tag {
  display: inline-flex; padding: 4px 10px; border-radius: 999px;
  background: rgba(124,104,73,0.08); color: var(--primary);
  font-size: 11px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 12px; border: 1px solid rgba(124,104,73,0.12);
}
.module-card__tag.tag--dark { background: rgba(28,25,23,0.06); color: var(--ink-2); border-color: rgba(28,25,23,0.1); }
.module-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.module-card p { font-size: 13px; color: var(--ink-2); line-height: 1.6; }

/* ─── PRICING ─── */
.pricing { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.pricing__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: start; }
.price-card {
  padding: 36px; border-radius: var(--r-xl); background: var(--bg);
  border: 1px solid var(--line); transition: all var(--t); position: relative; overflow: hidden;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card--featured { border-color: var(--primary); box-shadow: var(--shadow-md); background: linear-gradient(180deg,#fff 0%,rgba(124,104,73,0.02) 100%); }
.price-card--featured:hover { box-shadow: var(--shadow-xl); }
.price-card__popular {
  position: absolute; top: 16px; right: -32px;
  padding: 4px 40px; background: var(--primary); color: #fff;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  transform: rotate(45deg);
}
.price-card__head { margin-bottom: 24px; }
.price-card__label {
  display: inline-flex; padding: 4px 14px; border-radius: 999px;
  background: rgba(124,104,73,0.07); color: var(--primary);
  font-size: 12px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 14px;
}
.price-card__amount { font-size: 38px; font-weight: 900; letter-spacing: -0.03em; line-height: 1; margin-bottom: 10px; }
.price-card__amount span { font-size: 16px; font-weight: 600; color: var(--muted); }
.price-card__desc { font-size: 15px; color: var(--ink-2); line-height: 1.5; }
.price-card__list { margin-bottom: 28px; }
.price-card__list li {
  padding: 10px 0; font-size: 14px; color: var(--ink-2);
  border-bottom: 1px solid rgba(232,226,217,0.5);
  display: flex; align-items: center; gap: 10px; line-height: 1.5;
}
.price-card__list li:last-child { border-bottom: none; }
.price-card__list li::before {
  content: ""; width: 18px; height: 18px; flex-shrink: 0; border-radius: 50%;
  background: rgba(124,104,73,0.08)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237c6849' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    no-repeat center/10px;
}
.price-card .btn { width: 100%; }

/* ─── FAQ ─── */
.faq { background: var(--card); border-top: 1px solid var(--line); }
.faq__list { max-width: 700px; margin: 0 auto; display: grid; gap: 10px; }
.faq__item { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: border-color var(--t); }
.faq__item[open] { border-color: rgba(124,104,73,0.2); }
.faq__item summary {
  padding: 18px 24px; font-weight: 700; font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  list-style: none; user-select: none; transition: color var(--t);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-size: 20px; font-weight: 300; color: var(--muted); flex-shrink: 0; margin-left: 16px; }
.faq__item[open] summary::after { content: "\2212"; color: var(--primary); }
.faq__item[open] summary { color: var(--primary); }
.faq__item p { padding: 0 24px 18px; font-size: 15px; color: var(--ink-2); line-height: 1.75; }

/* ─── PAGE HERO (shared sub-pages) ─── */
.page-hero { position: relative; padding: 140px 0 80px; overflow: hidden; background: var(--bg); }
.page-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.page-hero__content { text-align: center; max-width: 680px; margin: 0 auto; }
.page-hero__back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--primary);
  margin-bottom: 24px; transition: color var(--t);
}
.page-hero__back:hover { color: var(--primary-dark); }
.page-hero__content h1 { font-size: clamp(32px,5vw,48px); font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
.page-hero__desc { font-size: 18px; color: var(--muted); line-height: 1.7; max-width: 540px; margin: 0 auto; }

/* ─── APPS HERO (uygulamalar.html) ─── */
.apps-hero { position: relative; padding: 140px 0 80px; overflow: hidden; background: var(--bg); }
.apps-hero__bg { position: absolute; inset: 0; pointer-events: none; }
.apps-hero__content { text-align: center; max-width: 680px; margin: 0 auto; }
.apps-hero__back {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--primary);
  margin-bottom: 24px; transition: color var(--t);
}
.apps-hero__back:hover { color: var(--primary-dark); }
.apps-hero__content h1 { font-size: clamp(32px,5vw,48px); font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
.apps-hero__desc { font-size: 18px; color: var(--muted); line-height: 1.7; max-width: 540px; margin: 0 auto; }

/* ─── APP DETAIL CARD ─── */
.app-detail {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-2xl); padding: 48px; box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.app-detail::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg,var(--primary),var(--accent)); }
.app-detail__header { display: flex; align-items: center; gap: 24px; margin-bottom: 32px; }
.app-detail__status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #16a34a; margin-bottom: 4px;
}
.app-detail__title h2 { font-size: 30px; font-weight: 900; margin-bottom: 4px; }
.app-detail__tagline { font-size: 15px; color: var(--primary); font-weight: 600; }
.app-detail__desc { font-size: 16px; color: var(--ink-2); line-height: 1.75; margin-bottom: 40px; }
.app-detail__stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
  padding: 28px 0; margin-bottom: 28px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.app-detail__stat { text-align: center; }
.app-detail__stat strong { display: block; font-size: 26px; font-weight: 900; color: var(--primary); margin-bottom: 4px; }
.app-detail__stat span { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.app-detail__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.app-card__dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; }
.app-card__dot--live { background: #16a34a; box-shadow: 0 0 6px rgba(22,163,74,0.5); animation: blink 2s infinite; }

/* ─── COMING SOON ─── */
.apps-coming { background: var(--bg-alt); }
.apps-coming__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 48px; }
.apps-coming__card {
  background: var(--card); border: 1px dashed var(--line);
  border-radius: var(--r-xl); padding: 32px 24px; text-align: center;
  transition: all var(--t-slow);
}
.apps-coming__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.apps-coming__icon {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  background: rgba(124,104,73,0.05); border-radius: 14px; color: var(--muted); margin: 0 auto 14px;
}
.apps-coming__card h3 { font-size: 17px; font-weight: 800; margin-bottom: 6px; }
.apps-coming__card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.apps-coming__cta { text-align: center; }
.apps-coming__cta p { font-size: 16px; color: var(--muted); margin-bottom: 16px; }

/* ─── PLATFORM PREVIEW (Mockup) ─── */
.preview { background: var(--bg-alt); }
.preview__frame {
  max-width: 900px; margin: 0 auto;
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--line);
}
.preview__browser {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  background: #fff; border-bottom: 1px solid var(--line);
}
.preview__dots { display: flex; gap: 6px; }
.preview__dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.preview__dots span:nth-child(1) { background: #ef4444; }
.preview__dots span:nth-child(2) { background: #f59e0b; }
.preview__dots span:nth-child(3) { background: #22c55e; }
.preview__url {
  flex: 1; text-align: center;
  font-size: 12px; font-weight: 600; color: var(--muted);
  background: var(--bg); border-radius: 6px; padding: 6px 16px;
  letter-spacing: 0.02em;
}
.preview__screen { background: var(--bg); padding: 0; }

/* Mock Dashboard */
.mock { font-family: var(--font); }
.mock__topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
  background: #1c1917;
  color: #fff;
}
.mock__topbar-left { display: flex; align-items: center; gap: 12px; }
.mock__logo {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900;
}
.mock__brand { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }
.mock__badge {
  padding: 3px 10px; border-radius: 999px;
  background: var(--primary); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 0.06em;
}
.mock__topbar-right { display: flex; align-items: center; gap: 16px; }
.mock__notif {
  position: relative; color: #d4a853;
}
.mock__notif-count {
  position: absolute; top: -6px; right: -8px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #ef4444; color: #fff;
  font-size: 9px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.mock__exit {
  padding: 6px 16px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.8);
}
.mock__welcome {
  text-align: center; padding: 32px 24px 24px;
  background: var(--card); margin: 24px 28px 0;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  border: 1px solid var(--line); border-bottom: none;
}
.mock__hello {
  font-size: 22px; font-weight: 700; color: var(--primary-light);
  margin-bottom: 4px;
}
.mock__sub { font-size: 14px; color: var(--muted); }
.mock__cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
  padding: 16px 28px 28px;
  background: var(--card); margin: 0 28px;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  border: 1px solid var(--line); border-top: none;
}
.mock__card {
  padding: 18px 14px; border-radius: var(--r);
  background: var(--bg); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
  transition: all var(--t);
}
.mock__card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.mock__card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.mock__card-icon--1 { background: var(--primary-light); }
.mock__card-icon--2 { background: var(--primary); }
.mock__card-icon--3 { background: var(--accent); }
.mock__card-icon--4 { background: var(--primary-dark); }
.mock__card strong { font-size: 13px; font-weight: 700; display: block; margin-bottom: 2px; }
.mock__card span { font-size: 11px; color: var(--muted); line-height: 1.4; }

/* ─── TESTIMONIALS ─── */
.testimonials { background: var(--card); border-top: 1px solid var(--line); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  padding: 32px 28px; border-radius: var(--r-xl);
  background: var(--bg); border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 20px;
  transition: all var(--t-slow);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(124,104,73,0.15); }
.testimonial-card > p {
  font-size: 15px; color: var(--ink-2); line-height: 1.75;
  flex: 1;
}
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.testimonial-card__avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(124,104,73,0.08);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-card__author strong { display: block; font-size: 14px; font-weight: 700; }
.testimonial-card__author span { font-size: 12px; color: var(--muted); }

/* ─── WHATSAPP FAB ─── */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--t);
  animation: whatsappPulse 3s ease-in-out infinite;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* ─── REVEAL ANIMATION ─── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .footer__brand { grid-column: 1 / -1; }
  .why__benefits { grid-template-columns: repeat(2,1fr); }
  .mock__cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .nav__links.active {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--card); padding: 16px 20px 8px; gap: 0; z-index: 100;
    box-shadow: var(--shadow-md);
  }
  .nav__links.active a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; color: var(--ink); }
  .nav__links.active a:last-child { border-bottom: none; }

  .nav__cta.active {
    display: flex; flex-direction: column;
    position: absolute; left: 0; right: 0;
    background: var(--card); padding: 8px 20px 16px; gap: 8px;
    box-shadow: var(--shadow-lg); border-bottom: 1px solid var(--line); z-index: 100;
  }
  .nav__cta.active .btn { width: 100%; justify-content: center; }

  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

  .contact__wrap { grid-template-columns: 1fr; padding: 32px; }

  .cta-band__box { padding: 48px 24px; }
  .cta-band__btns { flex-direction: column; }
  .cta-band__btns .btn { width: 100%; }

  .hero__metrics { flex-direction: column; gap: 24px; padding: 32px 24px; }
  .hero__metric-sep { width: 60px; height: 1px; }

  .why__compare { grid-template-columns: 1fr; }
  .why__benefits { grid-template-columns: 1fr; }

  .tabs { gap: 6px; }
  .tabs__btn { padding: 10px 16px; font-size: 13px; }
  .tabs__btn svg { display: none; }

  .about__layout { grid-template-columns: 1fr; gap: 32px; }
  .about__card { position: static; }

  .app-detail { padding: 28px 20px; }
  .app-detail__header { flex-direction: column; text-align: center; gap: 16px; }
  .app-detail__title h2 { font-size: 24px; }
  .app-detail__stats { grid-template-columns: repeat(2,1fr); }
  .app-detail__actions { flex-direction: column; }
  .app-detail__actions .btn { width: 100%; justify-content: center; }
  .apps-coming__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .mock__topbar { padding: 12px 16px; }
  .mock__brand { font-size: 14px; }
  .mock__welcome { margin: 16px 16px 0; padding: 24px 16px 16px; }
  .mock__hello { font-size: 18px; }
  .mock__cards { margin: 0 16px; padding: 12px 16px 16px; gap: 8px; }
  .mock__card { padding: 14px 10px; }
  .mock__card strong { font-size: 12px; }
  .mock__card span { font-size: 10px; }
}

@media (max-width: 640px) {
  .hero { padding: 130px 0 40px; min-height: auto; }
  .hero h1 { font-size: clamp(28px,8vw,40px); }
  .hero__sub { font-size: 16px; }
  .hero__actions .btn--lg { padding: 14px 24px; font-size: 15px; width: 100%; }
  .section { padding: 80px 0; }
  .modules__grid { grid-template-columns: 1fr; }
  .why__compare { gap: 12px; }
  .why__col { padding: 24px 20px; }
  .why__benefit { padding: 24px; }
  .form__row { grid-template-columns: 1fr; }
  .hero__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding: 24px 20px; }
  .hero__metric-sep { display: none; }
  .section__head h2 { font-size: clamp(24px,6vw,32px); }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .trust__row { gap: 8px; }
  .trust__chip { padding: 6px 12px; font-size: 11px; }
  .page-hero, .apps-hero { padding: 120px 0 60px; }
  .mock__cards { grid-template-columns: 1fr 1fr; }
  .whatsapp-fab { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .whatsapp-fab svg { width: 24px; height: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__glow { animation: none; }
  .hero__badge-dot { animation: none; }
}
