/* ===========================
   EKEO — Redesign v2
   Clean / Editorial / Modern
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Nunito+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --accent: #8B0028;
  --accent-hover: #6B001E;
  --accent-soft: rgba(139,0,40,0.08);
  --black: #1A1614;
  --dark: #1C1C1E;
  --charcoal: #3A3A3C;
  --white: #FFFFFF;
  --bg: #F5F5F5;
  --bg-card: #FFFFFF;
  --text: #1C1C1E;
  --text-muted: #8A8A8E;
  --border: #E5E5EA;
  --border-dark: #D1D1D6;
  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --transition: 0.25s ease;
  --max-width: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito Sans', sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4,h5 { font-family: 'Outfit', sans-serif; line-height: 1.2; font-weight: 700; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: transparent;
  transition: background var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,0.05);
}

.navbar.scrolled .nav-link { color: var(--dark); }
.navbar.scrolled .nav-logo-title { color: var(--dark); }
.navbar.scrolled .nav-logo-subtitle { color: var(--text-muted); }
.navbar.scrolled .nav-toggle span { background: var(--dark); }

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: -0.5px;
}

.nav-logo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  transition: color var(--transition);
}

.nav-logo-subtitle {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.3px;
  display: block;
  transition: color var(--transition);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  border-radius: var(--radius-xs);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.navbar.scrolled .nav-link:hover { color: var(--accent); background: var(--accent-soft); }
.nav-link.active { color: var(--white); }
.navbar.scrolled .nav-link.active { color: var(--accent); }

.nav-link svg { width: 13px; height: 13px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-width: 210px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: var(--charcoal);
  font-size: 13px;
  border-radius: var(--radius-xs);
  transition: all var(--transition);
}

.dropdown a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-dark);
  flex-shrink: 0;
  transition: background var(--transition);
}

.dropdown a:hover {
  background: var(--accent-soft);
  color: var(--accent);
}

.dropdown a:hover::before { background: var(--accent); }

/* Portal login button in navbar */
.nav-portal-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  margin-left: 8px;
  flex-shrink: 0;
}
.nav-portal-btn:hover {
  background: rgba(201,168,76,0.22);
  border-color: rgba(201,168,76,0.5);
  color: #f0d060;
}
.navbar.scrolled .nav-portal-btn {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.35);
  color: var(--accent);
}
.navbar.scrolled .nav-portal-btn:hover {
  background: rgba(201,168,76,0.2);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===========================
   HERO  — split layout
   =========================== */
.hero {
  min-height: 100vh;
  background: var(--black);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* Left column */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 64px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-left::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.06);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.hero-eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-title {
  font-size: clamp(48px, 5.5vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.45);
}

.hero-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 44px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 5px;
  letter-spacing: 0.5px;
}

/* Right column */
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 80px 80px 64px;
  position: relative;
  z-index: 2;
  gap: 16px;
}

.hero-price-widget {
  background: rgba(10,8,6,0.7);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), inset 0 1px 0 rgba(201,168,76,0.12);
  position: relative;
}
.hero-price-widget::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.7) 40%, rgba(255,215,120,0.9) 60%, rgba(201,168,76,0.5) 80%, transparent);
}

.hw-topbar {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(201,168,76,0.04);
}

.hw-topbar-left {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hw-live-text {
  font-size: 10px;
  font-weight: 700;
  color: #5dbb6f;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hw-dot {
  width: 6px;
  height: 6px;
  background: #5dbb6f;
  border-radius: 50%;
  animation: blink 2s infinite;
  box-shadow: 0 0 6px #5dbb6f;
}

@keyframes blink {
  0%,100% { opacity:1; }
  50% { opacity:0.25; }
}

.hw-title {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.hw-date {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  font-variant-numeric: tabular-nums;
}

.hw-cols {
  display: grid;
  grid-template-columns: 1fr 90px 90px;
  padding: 8px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hw-col-head {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.25);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: right;
}

.hw-col-sell {
  color: rgba(201,168,76,0.6);
}

.hw-row {
  display: grid;
  grid-template-columns: 1fr 90px 90px;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  align-items: center;
  transition: background 0.15s;
}

.hw-row:hover { background: rgba(255,255,255,0.03); }
.hw-row:last-child { border-bottom: none; }

.hw-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

.hw-buy {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  font-variant-numeric: tabular-nums;
  text-align: right;
  letter-spacing: -0.2px;
}

.hw-sell {
  font-size: 15px;
  color: #fff;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  font-variant-numeric: tabular-nums;
  text-align: right;
  letter-spacing: -0.2px;
}

.hw-footer {
  padding: 13px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(201,168,76,0.04);
  border-top: 1px solid rgba(201,168,76,0.1);
}

.hw-link {
  font-size: 12px;
  font-weight: 600;
  color: rgba(201,168,76,0.85);
  letter-spacing: 0.3px;
  transition: color var(--transition);
}

.hw-link:hover { color: #f0d060; }

.hw-disclaimer {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.3px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.2), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0%,100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.5); transform-origin: top; }
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-xs);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139,0,40,0.35);
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.12);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--charcoal);
  transform: translateY(-1px);
}

/* ===========================
   LAYOUT HELPERS
   =========================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 96px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--dark);
  letter-spacing: -0.5px;
}

.section-title.light { color: var(--white); }

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 520px;
  font-weight: 300;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-label { justify-content: center; }
.section-header .section-desc { margin: 12px auto 0; }

/* ===========================
   ABOUT STRIP
   =========================== */
.about-section { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  border: 1px solid var(--border);
}

.about-visual-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-visual-card-num {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}

.about-visual-card-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.85;
  margin-top: 4px;
}

.about-text h2 {
  font-size: clamp(28px, 3vw, 38px);
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.about-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
  font-weight: 300;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 32px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--charcoal);
}

.about-feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ===========================
   SERVICES GRID
   =========================== */
.services-section { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 36px 32px;
  transition: background var(--transition);
  position: relative;
}

.service-card:hover { background: #FAFAFA; }

.service-card:hover .service-arrow { opacity: 1; transform: translate(2px, -2px); }

.service-num {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  color: var(--border-dark);
  font-weight: 400;
  margin-bottom: 20px;
}

.service-icon-wrap {
  font-size: 28px;
  margin-bottom: 16px;
}

.service-title {
  font-size: 17px;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.service-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-weight: 300;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.3px;
}

.service-arrow {
  opacity: 0;
  transition: all var(--transition);
}

/* ===========================
   PRICES — dark strip
   =========================== */
.prices-section {
  background: var(--dark);
  padding: 80px 0;
}

.prices-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.prices-top h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--white);
  letter-spacing: -0.5px;
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.price-card {
  background: rgba(255,255,255,0.02);
  padding: 28px 24px;
  transition: background var(--transition);
}

.price-card:hover { background: rgba(255,255,255,0.05); }

.price-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
}

.price-card-value {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.price-card-unit {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.5px;
}

.prices-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  margin-top: 24px;
  letter-spacing: 0.5px;
}

/* ===========================
   NEWS
   =========================== */
.news-section { background: var(--white); }

.news-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}

.news-main {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.news-main:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.news-main-img {
  height: 240px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
}

.news-main-body { padding: 28px; }

.news-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 12px;
}

.news-main-title {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-main-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

.news-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.news-date { font-size: 12px; color: var(--text-muted); }

.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: all var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.news-item:hover { border-color: var(--accent); background: var(--white); }

.news-item-icon {
  width: 36px;
  height: 36px;
  background: var(--white);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.news-item-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.4;
}

.news-item-date { font-size: 11px; color: var(--text-muted); }

/* ===========================
   CONTACT
   =========================== */
.contact-section { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: 32px;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.contact-info p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3px;
}

.contact-value {
  font-size: 14px;
  color: var(--charcoal);
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}

.form-title { font-size: 22px; color: var(--dark); margin-bottom: 6px; }
.form-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 28px; font-weight: 300; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 7px;
  letter-spacing: 0.3px;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--accent);
  background: var(--white);
}

.form-textarea { height: 110px; resize: vertical; }

.form-submit {
  width: 100%;
  padding: 13px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius-xs);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}

.form-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139,0,40,0.3);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--black);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}

.footer-logo-name {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
  font-weight: 300;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.footer-social {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: all var(--transition);
}

.footer-social:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
  font-weight: 300;
}

.footer-links a:hover { color: var(--white); }

.footer-contact-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: flex-start;
}

.footer-contact-icon { font-size: 13px; margin-top: 1px; }

.footer-contact-text {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  font-weight: 300;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  font-weight: 300;
}

.footer-bottom strong { color: rgba(255,255,255,0.4); font-weight: 500; }

/* ===========================
   PAGE HEADER
   =========================== */
.page-header {
  background: var(--black);
  padding: 130px 0 72px;
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.06);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  margin-bottom: 16px;
  font-weight: 300;
}

.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { opacity: 0.75; }
.breadcrumb span { color: rgba(255,255,255,0.15); }

.page-title {
  font-size: clamp(32px, 4.5vw, 52px);
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.page-title span { color: rgba(255,255,255,0.35); font-style: italic; }

.page-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  max-width: 440px;
}

/* ===========================
   INNER PAGE SECTIONS
   =========================== */
.section-white { background: var(--white); }
.section-gray  { background: var(--bg); }
.section-dark  { background: var(--dark); }
.section-black { background: var(--black); }

/* Info Cards */
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  height: 100%;
  transition: all var(--transition);
}

.info-card:hover { box-shadow: var(--shadow); }

.info-card-icon { font-size: 36px; margin-bottom: 18px; }
.info-card-title { font-size: 20px; color: var(--dark); margin-bottom: 10px; }
.info-card-text { font-size: 13px; color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; font-weight: 300; }

.info-list { display: flex; flex-direction: column; gap: 9px; }
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--charcoal);
  line-height: 1.5;
}
.info-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}

/* Team Cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}

.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.team-avatar {
  width: 72px;
  height: 72px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  color: var(--accent);
}

.team-name { font-size: 15px; color: var(--dark); margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--accent); font-weight: 600; letter-spacing: 0.3px; }

/* Accordion */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 16px 20px;
  background: var(--white);
  border: none;
  text-align: left;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
}

.accordion-header:hover { background: var(--bg); }
.accordion-header.active { background: var(--accent); color: var(--white); }
.accordion-header.active .accordion-icon { transform: rotate(180deg); color: var(--white); }
.accordion-icon { transition: transform var(--transition); color: var(--text-muted); }

.accordion-body {
  display: none;
  padding: 18px 20px;
  background: var(--bg);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  font-weight: 300;
}

.accordion-body.open { display: block; }

/* Announcement Cards */
.announcement-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition);
  margin-bottom: 12px;
}

.announcement-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }

.ann-icon {
  width: 42px;
  height: 42px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ann-date { font-size: 11px; color: var(--accent); font-weight: 700; margin-bottom: 4px; letter-spacing: 0.5px; }
.ann-title { font-size: 14px; color: var(--dark); font-weight: 600; margin-bottom: 5px; }
.ann-text { font-size: 12px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* Fiyat ekranı */
.fiyat-section { background: var(--bg); min-height: 100vh; }

/* ===========================
   REVEAL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }

/* ===========================
   GRID UTILITIES
   =========================== */
.g2      { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.g2-lg   { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.g2-asym { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: center; }
.g3      { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.g4      { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

/* ===========================
   RESPONSIVE
   =========================== */

/* Tablet — 1024px */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { min-height: 100vh; padding: 120px 40px 56px; }
  .hero-left::after { display: none; }
  .hero-right { display: flex; padding: 40px 40px 64px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .prices-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .g2-asym { grid-template-columns: 1fr; gap: 40px; }
  .g2-lg   { grid-template-columns: 1fr; gap: 40px; }
}

/* Mobil — 768px */
@media (max-width: 768px) {
  /* Navbar */
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--black);
    padding: 20px 24px;
    overflow-y: auto;
    gap: 0;
    z-index: 999;
  }
  .nav-toggle { display: flex; }
  .nav-item { width: 100%; }
  .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: var(--white) !important;
    font-size: 15px;
    border-radius: 0;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 4px 0 8px 14px;
    background: transparent;
    border: none;
    min-width: unset;
  }
  .dropdown a {
    color: rgba(255,255,255,0.45) !important;
    font-size: 13px;
    padding: 8px 4px;
  }
  .nav-link svg { display: none; }

  /* Hero */
  .hero-left { min-height: 90vh; padding: 100px 24px 48px; }
  .hero-right { padding: 0 20px 56px; }
  .hero-title { font-size: 42px; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 26px; }

  /* Layout */
  section { padding: 56px 0; }
  .container { padding: 0 20px; }

  /* About */
  .about-visual-main { aspect-ratio: 3/2; font-size: 64px; }
  .about-visual-card { right: 0; bottom: -12px; padding: 14px 18px; }
  .about-visual-card-num { font-size: 28px; }

  /* Grids */
  .g2, .g2-lg, .g2-asym, .g3, .g4 { grid-template-columns: 1fr !important; gap: 16px !important; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .prices-grid { grid-template-columns: 1fr 1fr; }

  /* Contact form */
  .contact-form-wrap { padding: 24px 20px; }

  /* Page header */
  .page-header { padding: 100px 0 48px; }
  .page-title { font-size: 32px; }

  /* Haberler featured news */
  .news-featured-grid { grid-template-columns: 1fr !important; }

  /* Footer */
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  /* Section header */
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: 26px; }

  /* Buttons */
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  /* Prices section */
  .prices-top { flex-direction: column; gap: 16px; align-items: flex-start; }

  /* Announcement cards */
  .announcement-card { flex-direction: column; gap: 10px; }

  /* Info cards inline grids */
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* Küçük mobil — 480px */
@media (max-width: 480px) {
  .hero-left { padding: 96px 20px 56px; }
  .hero-title { font-size: 36px; letter-spacing: -0.5px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }

  .prices-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 20px 16px; }
  .info-card { padding: 24px 20px; }
  .service-card { padding: 24px 20px; }

  .footer { padding: 48px 0 0; }
  .footer-grid { gap: 24px; }

  .tblock-header { padding: 14px 16px; }
  .ftable td { padding: 13px 16px; }
  .ftable thead th { padding: 9px 16px; }
  .num-value { font-size: 16px; }

  .topbar { padding: 0 16px; height: 56px; }
  .topbar-logo-name { font-size: 14px; }
  .topbar-logo-sub { display: none; }
  .topbar-time { font-size: 16px; }
  .topbar-date { display: none; }
  .main { padding: 20px 16px; }

  .page-title { font-size: 28px; }
  .breadcrumb { font-size: 11px; }

  .btn { padding: 11px 20px; font-size: 13px; }
}
