/*
Theme Name: Go-Outer
Theme URI: https://go-outer.com
Author: Albu Bogdan
Description: Tema personala Go-Outer - Personal Branding & Short-Form Content
Version: 1.0
*/

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

:root {
  --royal:        #1E2A6B;
  --offwhite:     #F2F1EC;
  --ink:          #1B2450;
  --on-royal-sec: #A9B0D8;
  --on-light-sec: #6B7290;
  --accent:       #2C3E9E;
  --display: 'Montserrat', sans-serif;
  --body:    'Montserrat', sans-serif;
  --mono:    'Montserrat', sans-serif;
  --maxw: 1080px;
}

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

body {
  font-family: var(--body);
  background: var(--offwhite);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.1; letter-spacing: -0.015em; }
h1 { font-weight: 800; max-width: 100%; text-align: center; }
h2 { max-width: 100%; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 600; font-size: 1.02rem;
  padding: 16px 28px; border-radius: 6px; border: none;
  cursor: pointer; text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 20px rgba(44,62,158,.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(44,62,158,.38); }
.btn-ghost { background: transparent; color: #fff; border: 1px solid rgba(169,176,216,.45); }
.btn-ghost:hover { transform: translateY(-2px); border-color: #fff; }
.btn-ghost-dark { background: transparent; color: var(--accent); border: 1px solid rgba(44,62,158,.4); }
.btn-ghost-dark:hover { transform: translateY(-2px); border-color: var(--accent); background: rgba(44,62,158,.05); }
.btn:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn-arrow { font-size: 1.1em; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--royal);
  color: #fff;
  overflow: hidden;
  padding: 30px 0 96px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(169,176,216,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169,176,216,.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, #000 30%, transparent 75%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; }



.hero-eyebrow { color: rgba(169,176,216,0.55); margin-bottom: 22px; display: inline-flex; gap: 10px; align-items: center; font-size: 0.68rem; }
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 4px rgba(74,222,128,.18); }

.hero h1 { font-size: clamp(2.4rem, 6vw, 4.3rem); max-width: 100%; margin-bottom: 26px; margin-left: auto; margin-right: auto; text-align: center; }
.hero h1 .muted { color: var(--on-royal-sec); }

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: var(--on-royal-sec);
  max-width: 56ch;
  margin-bottom: 38px;
}
.hero-cta-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-meta {
  font-family: var(--mono); font-size: 0.82rem; color: var(--on-royal-sec);
  display: flex; gap: 18px; flex-wrap: wrap; margin-top: 20px;
}
.hero-meta b { color: #fff; font-weight: 500; }

/* ---------- SECTIONS ---------- */
.section { padding: 88px 0; }
.section-eyebrow { color: var(--accent); margin-bottom: 16px; }
.section h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); max-width: 100%; margin-bottom: 14px; text-align: center; margin-left: auto; margin-right: auto; }
.section-lead { color: var(--on-light-sec); font-size: 1.1rem; max-width: 52ch; text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- FIT GRID ---------- */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.fit-card { background: #fff; border-radius: 12px; padding: 34px; border: 1px solid rgba(27,36,80,.08); }
.fit-card h3 { font-size: 1.35rem; margin-bottom: 22px; display: flex; align-items: center; gap: 12px; }
.fit-card ul { list-style: none; }
.fit-card li { padding: 12px 0 12px 34px; position: relative; border-top: 1px solid rgba(27,36,80,.07); }
.fit-card li:first-of-type { border-top: none; }
.fit-card .mark { position: absolute; left: 0; top: 13px; font-weight: 700; font-family: var(--display); }
.fit-card.yes .mark { color: var(--accent); }
.fit-card.no .mark { color: #c0392b; opacity: .7; }
.fit-card.no li { color: var(--on-light-sec); }

/* ---------- LEARN ---------- */
.learn { background: #fff; }
.learn-list { margin-top: 52px; display: flex; flex-direction: column; }
.learn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 34px 0;
  border-top: 1px solid rgba(27,36,80,.1);
}
.learn-item:last-child { border-bottom: 1px solid rgba(27,36,80,.1); }
.learn-num { font-family: var(--mono); font-size: 1.05rem; color: var(--accent); margin-bottom: 10px; text-align: center; }
.learn-item h3 { font-size: 1.4rem; margin-bottom: 10px; text-align: center; }
.learn-item p { color: var(--on-light-sec); max-width: 58ch; text-align: center; }
.learn-item .tag {
  display: inline-block; font-family: var(--mono); font-size: 0.7rem; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent); background: rgba(44,62,158,.08);
  padding: 4px 10px; border-radius: 4px; margin-top: 12px;
}
.learn-note { margin-top: 32px; color: var(--on-light-sec); font-size: 0.82rem; font-style: italic; max-width: 60ch; opacity: 0.6; text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- ABOUT ---------- */
.about { background: var(--royal); color: #fff; }
.about-grid { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: center; }
.about-photo {
  aspect-ratio: 4/5;
  border-radius: 14px !important;
  overflow: hidden !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  background: none !important;
  outline: none !important;
}

.about-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 14px !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
}
.about .eyebrow { color: rgba(169,176,216,0.55); margin-bottom: 16px; font-size: 0.68rem; }
.about h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 22px; }
.about p { color: var(--on-royal-sec); font-size: 1.08rem; margin-bottom: 18px; max-width: 56ch; }
.about p b { color: #fff; font-weight: 500; }
.about-stats { display: flex; gap: 40px; margin-top: 30px; flex-wrap: wrap; }
.about-stat .n { font-family: var(--display); font-size: 1.9rem; font-weight: 600; }
.about-stat .l { font-family: var(--mono); font-size: 0.75rem; color: var(--on-royal-sec); letter-spacing: .05em; }

/* ---------- OFFER / COUNTDOWN ---------- */
.offer { background: var(--offwhite); }
.offer-centered { max-width: 560px; margin: 0 auto; text-align: center; }
.offer-centered .section-eyebrow { display: inline-block; }
.offer-centered h2 { margin-bottom: 30px; }

.countdown { background: var(--royal); border-radius: 14px; padding: 26px; margin-bottom: 30px; text-align: center; }
.cd-label { font-family: var(--display); font-weight: 500; font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--on-royal-sec); margin-bottom: 14px; }
.cd-units { display: flex; justify-content: center; gap: 10px; }
.cd-unit { display: flex; flex-direction: column; align-items: center; gap: 4px; background: rgba(255,255,255,.06); border-radius: 8px; padding: 12px 0; flex: 1; }
.cd-num { font-family: var(--display); font-weight: 700; font-size: 1.7rem; color: #fff; line-height: 1; font-variant-numeric: tabular-nums; }
.cd-cap { font-family: var(--display); font-size: .64rem; letter-spacing: .06em; text-transform: uppercase; color: var(--on-royal-sec); }
.countdown.is-live .cd-units { display: none; }
.countdown.is-live .cd-label { color: #4ade80; margin-bottom: 0; }

/* ---------- FOOTER ---------- */
footer { background: var(--ink); color: var(--on-royal-sec); padding: 40px 0; font-size: .88rem; }
footer .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
footer .brandmark { color: #fff; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .fit-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-photo { max-width: 260px; }
  .learn-item { grid-template-columns: 52px 1fr; gap: 16px; }
  .nav { padding-bottom: 40px; }
  .nav-badge { display: none; }
  .section { padding: 64px 0; }
  .btn { font-size: 0.88rem; padding: 13px 20px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ===== HERO - CENTRAT (nemodificat) ===== */
.hero,
.hero h1,
.hero .hero-sub,
.hero .hero-eyebrow { text-align: center; }
.hero-cta-row { justify-content: center; }
.hero h1 {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ===== SECTION HEADERS - centrat ===== */
.section h2,
.section .section-eyebrow,
.section .section-lead { text-align: center; }

/* ===== LEARN - simetric cu număr stânga, text stânga ===== */
.learn-list { margin-top: 52px; display: flex; flex-direction: column; }
.learn-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  align-items: start;
  text-align: left;
  padding: 34px 0;
  border-top: 1px solid rgba(27,36,80,.1);
}
.learn-item:last-child { border-bottom: 1px solid rgba(27,36,80,.1); }
.learn-num {
  font-family: var(--mono);
  font-size: 1.05rem;
  color: var(--accent);
  text-align: left;
  padding-top: 4px;
}
.learn-item h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  text-align: left;
}
.learn-item p {
  color: var(--on-light-sec);
  max-width: 58ch;
  text-align: left;
}
.learn-note {
  margin-top: 32px;
  color: var(--on-light-sec);
  font-size: 0.82rem;
  font-style: italic;
  max-width: 60ch;
  opacity: 0.6;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FIT CARDS - simetric, text aliniat stânga în interiorul cardului ===== */
.fit-card { text-align: left; }
.fit-card h3 { text-align: center; }
.fit-card ul { list-style: none; text-align: left; }
.fit-card li { text-align: left; }
.fit-card .mark { text-align: left; }

/* ===== ABOUT - text stânga, eyebrow centrat ===== */
.about .eyebrow {
  font-size: 0.65rem !important;
  opacity: 0.45 !important;
  letter-spacing: 0.12em !important;
  display: block;
  text-align: left;
}
.about-grid > div { text-align: left; }
.about h2 { text-align: left; }
.about p { text-align: left; }

@media (max-width: 860px) {
  .about-grid > div { text-align: center; }
  .about h2, .about p, .about .eyebrow { text-align: center !important; }
  .learn-item {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }
}
