/* ============================================================
   Onur Koçak — UGC Portfolio
   Light, trustworthy theme · white-dominant · blue accents
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f4f8ff;
  --ink: #0e1726;
  --ink-2: #28324a;
  --muted: #586379;
  --muted-2: #8b94a7;
  --border: #e6ecf5;
  --border-2: #d6deec;
  --brand: #2563eb;
  --brand-ink: #1b4ed1;
  --brand-soft: #eaf1ff;
  --brand-soft-2: #dce8ff;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .06);
  --shadow: 0 8px 24px rgba(37, 99, 235, .08), 0 2px 6px rgba(16, 24, 40, .05);
  --shadow-lg: 0 24px 60px rgba(30, 64, 175, .14);
  --radius: 16px;
  --radius-lg: 22px;
  --maxw: 1160px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg); color: var(--ink); line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, .brand-mark, .stat b, .step-n { font-family: "Plus Jakarta Sans", "Inter", sans-serif; letter-spacing: -.02em; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; padding: 13px 24px; border-radius: 12px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .18s, border-color .18s; white-space: nowrap;
}
.btn-sm { padding: 9px 16px; font-size: 14px; border-radius: 10px; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(37,99,235,.24); }
.btn-primary:hover { background: var(--brand-ink); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(37,99,235,.32); }
.btn-soft { background: var(--brand-soft); color: var(--brand-ink); border-color: var(--brand-soft-2); }
.btn-soft:hover { background: var(--brand-soft-2); transform: translateY(-2px); }
.btn-block { width: 100%; margin-top: auto; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50; display: flex; align-items: center; gap: 18px;
  max-width: var(--maxw); margin: 0 auto; padding: 15px 24px; transition: padding .3s;
}
.nav.scrolled { background: rgba(255,255,255,.82); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); padding: 11px 24px; }
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mark { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; font-weight: 800; font-size: 14px; color: #fff; background: var(--brand); box-shadow: 0 5px 14px rgba(37,99,235,.3); }
.brand-text { display: flex; flex-direction: column; font-weight: 700; font-size: 15px; line-height: 1.15; }
.brand-text small { color: var(--muted-2); font-weight: 500; font-size: 11px; letter-spacing: .05em; text-transform: uppercase; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { color: var(--muted); font-size: 15px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.lang { display: inline-flex; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 9px; padding: 2px; }
.lang-btn { border: 0; background: none; cursor: pointer; font-size: 12.5px; font-weight: 600; color: var(--muted); padding: 5px 9px; border-radius: 7px; transition: .2s; font-family: inherit; }
.lang-btn.is-on { background: #fff; color: var(--brand-ink); box-shadow: var(--shadow-sm); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ---------- Hero ---------- */
.hero { padding: 48px 0 76px; }
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.eyebrow { display: inline-block; font-size: 12.5px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--brand-ink); padding: 7px 14px; border: 1px solid var(--brand-soft-2); border-radius: 999px; background: var(--brand-soft); margin-bottom: 22px; }
.hero-title { font-size: clamp(2.3rem, 4.6vw, 3.7rem); font-weight: 800; line-height: 1.08; margin-bottom: 20px; color: var(--ink); }
.hero-title .hl { color: var(--brand); }
.hero-sub { font-size: clamp(1rem, 1.5vw, 1.16rem); color: var(--muted); max-width: 540px; margin-bottom: 30px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-handle { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 500; font-size: 15px; transition: color .2s; }
.hero-handle:hover { color: var(--brand); }
/* hero phone */
.hero-show { display: flex; justify-content: center; }
.hero-phone { position: relative; width: 268px; max-width: 80%; aspect-ratio: 9/16; border-radius: 30px; overflow: hidden; background: #0e1726; box-shadow: var(--shadow-lg); border: 6px solid #fff; outline: 1px solid var(--border-2); }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-phone-play { position: absolute; right: 12px; bottom: 12px; width: 42px; height: 42px; border-radius: 50%; border: 0; cursor: pointer; background: rgba(255,255,255,.9); color: var(--brand-ink); display: grid; place-items: center; box-shadow: var(--shadow); transition: transform .2s; }
.hero-phone-play:hover { transform: scale(1.08); }
/* hero meta chips */
.hero-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.meta-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; color: var(--ink-2); background: #fff; border: 1px solid var(--border-2); border-radius: 999px; padding: 6px 12px; box-shadow: var(--shadow-sm); }
.meta-chip svg { color: var(--muted); }
.meta-strong { background: var(--brand-soft); border-color: var(--brand-soft-2); color: var(--brand-ink); font-weight: 600; }
.meta-strong svg { color: var(--brand); }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 14px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 600; font-size: 1.02rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; font-weight: 500; color: var(--brand); transition: transform .25s var(--ease); line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; margin: 0; }

/* ---------- Strip ---------- */
.strip { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.strip-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px 18px; padding: 20px 24px; color: var(--muted); font-size: 14px; font-weight: 500; }
.strip-inner i { width: 4px; height: 4px; border-radius: 50%; background: var(--border-2); }
.strip-inner span { white-space: nowrap; }

/* ---------- Stats ---------- */
.stats { padding: 56px 0 6px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 20px; text-align: center; box-shadow: var(--shadow-sm); }
.stat b { display: block; font-size: clamp(1.7rem, 3.6vw, 2.4rem); font-weight: 800; color: var(--brand); }
.stat span { color: var(--muted); font-size: 13.5px; }
.stats-note { text-align: center; color: var(--muted-2); font-size: 13px; margin-top: 15px; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.head { max-width: 620px; margin: 0 auto 46px; text-align: center; }
.kicker { display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); margin-bottom: 12px; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; line-height: 1.14; color: var(--ink); }
.lead { color: var(--muted); font-size: 1.05rem; margin-top: 13px; }

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-soft-2); }
.ic { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 13px; background: var(--brand-soft); color: var(--brand); margin-bottom: 16px; }
.ic svg { width: 23px; height: 23px; }
.card h3 { font-size: 1.12rem; margin-bottom: 7px; }
.card p { color: var(--muted); font-size: 14.5px; }

/* ---------- Reels / portfolio ---------- */
.reels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.reel { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform .32s var(--ease), box-shadow .32s, border-color .3s; }
.reel:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--brand-soft-2); }
.reel-media { position: relative; aspect-ratio: 9/16; background: #0e1726; }
.reel-media video { width: 100%; height: 100%; object-fit: cover; }
.reel-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 58px; height: 58px; border-radius: 50%; border: 0; cursor: pointer; background: rgba(255,255,255,.92); color: var(--brand-ink); display: grid; place-items: center; box-shadow: var(--shadow); transition: transform .25s var(--ease), opacity .2s; z-index: 2; }
.reel-play svg { margin-left: 2px; }
.reel:hover .reel-play { transform: translate(-50%, -50%) scale(1.08); }
.reel-play.hidden { opacity: 0; pointer-events: none; }
.reel-badge { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 11.5px; font-weight: 600; padding: 5px 10px; border-radius: 999px; background: rgba(255,255,255,.92); border: 1px solid var(--border); color: var(--brand-ink); box-shadow: var(--shadow-sm); }
.reel-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 6px; }
.reel-type { font-size: 11.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--brand); }
.reel-body h3 { font-size: 1.1rem; }
.hook { color: var(--muted); font-size: 14px; font-style: italic; }
/* coming-soon */
.reel-media-soon { display: grid; place-items: center; background: var(--bg-soft); }
.reel-soon-tag { position: absolute; top: 12px; left: 12px; font-size: 11.5px; font-weight: 600; padding: 5px 10px; border-radius: 999px; background: #fff; border: 1px solid var(--border); color: var(--muted); }
.reel-soon-en { font-family: "Plus Jakarta Sans"; font-weight: 800; font-size: 2rem; color: var(--border-2); }

/* ---------- Why ---------- */
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.why-list li { position: relative; padding: 16px 18px 16px 52px; background: #fff; border: 1px solid var(--border); border-radius: 13px; font-weight: 500; box-shadow: var(--shadow-sm); }
.why-list li::before { content: ""; position: absolute; left: 17px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; border-radius: 50%; background: var(--brand); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; }

/* ---------- Packages ---------- */
.pkgs { align-items: stretch; }
.pkg { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; gap: 13px; position: relative; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s; }
.pkg:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pkg-feat { border-color: var(--brand); box-shadow: var(--shadow); }
.pkg-tag { position: absolute; top: -12px; left: 28px; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 999px; background: var(--brand); color: #fff; }
.pkg h3 { font-size: 1.28rem; }
.pkg-best { color: var(--brand); font-size: 14px; font-weight: 500; }
.pkg ul { list-style: none; display: flex; flex-direction: column; gap: 8px; margin: 4px 0 8px; }
.pkg ul li { color: var(--muted); font-size: 14.5px; padding-left: 24px; position: relative; }
.pkg ul li::before { content: ""; position: absolute; left: 2px; top: 8px; width: 14px; height: 14px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); background-repeat: no-repeat; }
.pkg-note { text-align: center; color: var(--muted); margin-top: 24px; font-weight: 500; }

/* ---------- Process ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.steps li { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 20px; display: flex; flex-direction: column; gap: 7px; box-shadow: var(--shadow-sm); }
.step-n { font-size: 1.5rem; font-weight: 800; color: var(--brand-soft-2); }
.steps h3 { font-size: 1.04rem; }
.steps p { color: var(--muted); font-size: 13.5px; }

/* ---------- About ---------- */
.about-inner { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: center; }
.about-photo img { width: 100%; border-radius: var(--radius-lg); aspect-ratio: 1; object-fit: cover; box-shadow: var(--shadow); }
.about-copy p { color: var(--muted); margin-top: 15px; font-size: 1.02rem; }
.about-also { color: var(--ink) !important; font-weight: 500; margin-top: 20px !important; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 13px; }
.chips span { font-size: 13.5px; font-weight: 500; padding: 8px 15px; border-radius: 999px; background: #fff; border: 1px solid var(--border-2); color: var(--ink-2); box-shadow: var(--shadow-sm); }

/* ---------- Contact ---------- */
.contact-inner { text-align: center; max-width: 620px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.contact-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 26px; }
.contact-meta { color: var(--muted-2); font-size: 14px; margin-top: 20px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 26px 0; background: var(--bg-soft); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 14px; }
.footer-inner a:hover { color: var(--brand); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { max-width: 600px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .reels { grid-template-columns: repeat(2, 1fr); }
  .why-inner, .about-inner { grid-template-columns: 1fr; gap: 28px; }
  .about-photo { max-width: 260px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,.98); backdrop-filter: blur(14px); padding: 18px 24px; gap: 16px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .section { padding: 60px 0; }
}
@media (max-width: 540px) {
  .grid-3, .reels, .stats-grid, .steps { grid-template-columns: 1fr; }
  .hero-cta .btn, .contact-cta .btn { flex: 1; }
}
