/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #262626;
  background: #f7f7f5;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { margin: 0; line-height: 1.25; }

:root {
  --navy: #2b2b2b;
  --navy-dark: #1a1a1a;
  --gold: #bc7000;
  --whatsapp: #25d366;
  --radius: 16px;
  --shadow: 0 6px 20px rgba(43, 43, 43, 0.08);
  --shadow-hover: 0 16px 32px rgba(43, 43, 43, 0.16);
  --container-width: 1160px;
}

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

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43, 43, 43, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: #3d3d3d;
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--navy); }
.main-nav a.active { color: var(--navy); }
.main-nav a.active::after {
  content: '';
  display: block;
  height: 2px;
  margin-top: 4px;
  background: var(--gold);
  border-radius: 2px;
}
.main-nav a.nav-lang {
  border: 1px solid rgba(43, 43, 43, 0.18);
  border-radius: 999px;
  padding: 5px 13px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
}
.main-nav a.nav-lang:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.site-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.site-switch svg { flex-shrink: 0; }
.site-switch:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(188, 112, 0, 0.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ===== Hero ===== */
.hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 26%, rgba(188, 112, 0, 0.22), transparent 42%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 96px 0 88px;
  text-align: center;
}
/* İnce diyagonal çizgi dokusu — kıyı/derinlik hissi veren zarif bir filigran */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(188, 112, 0, 0.06) 0px,
    rgba(188, 112, 0, 0.06) 1px,
    transparent 1px,
    transparent 68px
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin: 0 0 14px;
}
.hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  max-width: 820px;
  margin: 0 auto;
}
.hero-sub {
  max-width: 640px;
  margin: 20px auto 0;
  color: #c7c7c7;
  font-size: 1.05rem;
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(188, 112, 0, 0.35);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}
.btn-block { width: 100%; justify-content: center; }

/* ===== Cards section ===== */
.cards-section {
  margin-top: -48px;
  position: relative;
  z-index: 2;
  padding-bottom: 80px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(43, 43, 43, 0.06);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.card p {
  color: #6b6b6b;
  font-size: 0.96rem;
  flex-grow: 1;
  margin: 0 0 18px;
}
.card-link {
  font-weight: 600;
  color: var(--gold);
  font-size: 0.94rem;
  transition: gap 0.2s ease;
}
.card-link:hover { text-decoration: underline; }

/* ===== Contact section ===== */
.contact-section {
  background: #fff;
  padding: 80px 0;
  border-top: 1px solid rgba(43, 43, 43, 0.06);
}
.section-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
}
.section-sub {
  text-align: center;
  color: #6b6b6b;
  max-width: 520px;
  margin: 12px auto 0;
}

.contact-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  color: #3d3d3d;
  font-size: 0.98rem;
}
.info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(43, 43, 43, 0.06);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-list a:hover { color: var(--navy); text-decoration: underline; }

.map-wrapper {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.directions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}
.directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: none;
  border-radius: 10px;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(188, 112, 0, 0.35);
}
.directions-btn.outline {
  background: transparent;
  border: 1px solid rgba(43, 43, 43, 0.25);
  color: var(--navy);
}
.directions-btn.outline:hover {
  background: rgba(43, 43, 43, 0.06);
  box-shadow: none;
}

/* ===== Kroki (location diagram) modal ===== */
.kroki-modal {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.kroki-modal.open {
  opacity: 1;
  visibility: visible;
}
.kroki-modal-inner {
  position: relative;
  max-width: 960px;
  width: 100%;
}
.kroki-modal-inner img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.kroki-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(26, 26, 26, 0.55);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}
.kroki-close:hover { background: rgba(26, 26, 26, 0.75); }

.contact-form {
  background: #f7f7f5;
  border-radius: var(--radius);
  padding: 32px;
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  font-family: inherit;
  font-size: 0.96rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(43, 43, 43, 0.1);
}

.phone-input {
  display: flex;
  align-items: stretch;
  border-radius: 10px;
  border: 1px solid #dcdcdc;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.phone-input:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(43, 43, 43, 0.1);
}
.phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: #6b6b6b;
  font-weight: 600;
  font-size: 0.96rem;
  background: #f7f7f5;
  border-right: 1px solid #dcdcdc;
  user-select: none;
}
.form-row .phone-input input {
  width: auto;
  flex: 1;
  min-width: 0;
  border: none;
  border-radius: 0;
  padding: 12px 14px 12px 10px;
}
.form-row .phone-input input:focus {
  outline: none;
  border-color: transparent;
  box-shadow: none;
}

.form-status {
  margin: 14px 0 0;
  font-size: 0.9rem;
  min-height: 1.2em;
  color: var(--whatsapp);
}
.form-status.error { color: #d64545; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form-checkbox input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--navy);
}
.form-checkbox label {
  font-size: 0.86rem;
  color: #6b6b6b;
  font-weight: 400;
}
.form-checkbox label a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
}

.captcha-question {
  color: var(--navy);
  letter-spacing: 0.03em;
}

/* Honeypot: insanlar görmez, botlar doldurur */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--navy-dark);
  color: #a3a3a3;
  padding: 40px 0 28px;
}
.footer-inner {
  text-align: center;
  font-size: 0.88rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-links a {
  color: #a3a3a3;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* ===== Scroll-reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== Cookie consent banner ===== */
.cookie-banner {
  background: var(--navy-dark);
  color: #fff;
  max-height: 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 10px 24px;
  text-align: center;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.cookie-banner p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #c7c7c7;
}
.cookie-banner p a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 600;
  white-space: nowrap;
}
.cookie-banner .cookie-accept {
  flex-shrink: 0;
  padding: 7px 16px;
  font-size: 0.82rem;
  white-space: nowrap;
}
.cookie-banner.cookie-banner-hidden {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

/* ===== Floating WhatsApp button ===== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 200;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

/* ===== Page hero (subpages) ===== */
.page-hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 56px 0 48px;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    115deg,
    rgba(188, 112, 0, 0.06) 0px,
    rgba(188, 112, 0, 0.06) 1px,
    transparent 1px,
    transparent 68px
  );
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  font-size: 0.88rem;
  color: #a3a3a3;
  margin: 0 0 14px;
}
.breadcrumb a { color: #c7c7c7; }
.breadcrumb a:hover { color: var(--gold); text-decoration: underline; }
.page-hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.page-hero p {
  max-width: 600px;
  margin: 14px auto 0;
  color: #c7c7c7;
  font-size: 1rem;
}

.page-section {
  padding: 64px 0;
}
.page-section + .page-section {
  padding-top: 0;
}

/* ===== Legal / KVKK page ===== */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 48px;
  color: #3d3d3d;
}
.legal-content h2 {
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 32px 0 12px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  margin: 0 0 14px;
  line-height: 1.7;
}
.legal-content ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 14px;
}
.legal-content li { margin-bottom: 6px; }

/* ===== Services page ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 18px 0 10px;
}
.service-card p {
  color: #6b6b6b;
  font-size: 0.95rem;
  margin: 0;
}

.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius);
  padding: 48px 40px;
  text-align: center;
  color: #fff;
}
.cta-banner h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.6rem;
  font-weight: 700;
}
.cta-banner p {
  color: #c7c7c7;
  max-width: 480px;
  margin: 12px auto 24px;
}

/* ===== Announcements page ===== */
.announcement-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.announcement-item {
  display: flex;
  gap: 24px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.announcement-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.announcement-date {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 12px;
  background: rgba(43, 43, 43, 0.06);
  color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.announcement-date .day { font-size: 1.5rem; line-height: 1; }
.announcement-date .month {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: #6b6b6b;
  margin-top: 2px;
}
.announcement-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.announcement-content p {
  color: #6b6b6b;
  font-size: 0.95rem;
  margin: 0;
}
.announcement-tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(188, 112, 0, 0.15);
  color: #8a5600;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ===== Articles (Makaleler) list page ===== */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.article-card-cover {
  height: 130px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.article-card-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.article-date {
  color: #8a8a8a;
  font-size: 0.82rem;
  font-weight: 600;
}
.article-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.article-card p {
  color: #6b6b6b;
  font-size: 0.94rem;
  flex-grow: 1;
  margin: 0 0 18px;
}

/* ===== Article detail page ===== */
.article-body {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 48px;
  color: #3d3d3d;
}
.article-body h2 {
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 32px 0 14px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body p {
  margin: 0 0 16px;
  line-height: 1.8;
  font-size: 1rem;
}
.article-body ul {
  list-style: disc;
  padding-left: 22px;
  margin: 0 0 16px;
}
.article-body li {
  margin-bottom: 8px;
  line-height: 1.7;
}
.article-body blockquote {
  border-left: 4px solid var(--gold);
  background: #f7f7f5;
  border-radius: 0 10px 10px 0;
  padding: 14px 22px;
  margin: 24px 0;
  color: #3d3d3d;
  font-style: italic;
}
.article-disclaimer {
  margin-top: 32px;
  padding: 16px 20px;
  background: rgba(188, 112, 0, 0.08);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  font-size: 0.85rem;
  color: #6b6b6b;
}
.article-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
}
.article-back:hover { color: var(--gold); }

/* ===== About page ===== */
.story-content {
  max-width: 820px;
  margin: 0 auto;
}
.story-content h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  text-align: center;
}
.story-content p {
  color: #4a4a4a;
  font-size: 1.02rem;
  line-height: 1.8;
  margin: 0 0 18px;
}

/* ===== Timeline (kurumsal tarihçe) ===== */
.timeline {
  position: relative;
  padding-left: 28px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: rgba(188, 112, 0, 0.25);
}
.timeline-item {
  position: relative;
  padding-bottom: 28px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(188, 112, 0, 0.18);
}
.timeline-year {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.timeline-item p {
  margin: 0;
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.8;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mv-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}
.mv-card h3 {
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.mv-card p { color: #6b6b6b; margin: 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 16px;
}
.stat-number {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy);
}
.stat-label {
  color: #6b6b6b;
  font-size: 0.9rem;
  margin-top: 6px;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 640px;
  margin: 0 auto;
}
.founder {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.founder:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.founder-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(100%);
}
.founder-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: var(--gold);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 6px;
}
.founder-name {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  padding: 22px 28px 8px;
  margin: 0;
}
.founder-cv {
  list-style: none;
  margin: 0;
  padding: 0 28px 28px;
}
.founder-cv li {
  color: #6b6b6b;
  font-size: 0.92rem;
  line-height: 1.5;
  padding: 8px 0;
  border-top: 1px solid rgba(43, 43, 43, 0.07);
}
.founder-cv li:first-child { border-top: none; }
.founder-cv li strong {
  color: var(--navy);
  font-weight: 700;
}

/* ===== Career page ===== */
.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.perk-item {
  text-align: center;
  padding: 24px 16px;
}
.perk-item .card-icon {
  margin: 0 auto 16px;
}
.perk-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.perk-item p {
  color: #6b6b6b;
  font-size: 0.9rem;
  margin: 0;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.job-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 28px;
  flex-wrap: wrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.job-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.job-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.job-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.job-badge {
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(43, 43, 43, 0.06);
  color: #3d3d3d;
  font-size: 0.8rem;
  font-weight: 600;
}

.cv-form {
  background: #f7f7f5;
  border-radius: var(--radius);
  padding: 40px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}
.form-grid .form-row.full { grid-column: 1 / -1; }
.file-input {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px dashed #c2c2c2;
  background: #fff;
  font-size: 0.9rem;
  color: #6b6b6b;
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .founders-grid { grid-template-columns: 1fr; }
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid rgba(43, 43, 43, 0.08);
  }
  .main-nav.open { max-height: 320px; }
  .main-nav a {
    padding: 14px 24px;
    border-top: 1px solid rgba(43, 43, 43, 0.06);
  }
  .nav-toggle { display: flex; }

  .hero { padding: 72px 0 64px; }

  .cards-grid {
    grid-template-columns: 1fr;
  }
  .cards-section { margin-top: -32px; }
  .card { padding: 28px 24px; }

  .service-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .perks-grid { grid-template-columns: 1fr; }
  .job-item { flex-direction: column; align-items: flex-start; }
  .cv-form { padding: 28px 24px; }
  .article-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .contact-form { padding: 24px; }
  .legal-content { padding: 28px 22px; }
  .article-body { padding: 28px 22px; }
  .whatsapp-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}
