/* Temel ayarlar */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #f5f3ee;
  background-color: #050608;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Altın varak paleti */
:root {
  --gold-soft: #e2c07b;
  --gold-strong: #f6d27e;
  --gold-deep: #b4883b;
  --bg-deep: #050608;
  --bg-elevated: #121218;
  --bg-elevated-soft: #181824;
  --text-main: #f5f3ee;
  --text-muted: #b9b6c6;
  --border-soft: rgba(226, 192, 123, 0.2);
  --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.8);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-pill: 999px;
}

/* Açılış ekranı (splash) – altın varak logosu */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #050608;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.splash.splash--out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(246, 210, 126, 0.08), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(5, 6, 8, 0.3), #050608 80%);
  pointer-events: none;
}

.splash-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: splashLogoReveal 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.splash-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.splash-logo-mark {
  width: 100px;
  height: 100px;
  border-radius: 28px;
  padding: 3px;
  background: conic-gradient(from 140deg, #f9e5b9, #b48532, #f6d27e, #5e4520, #f9e5b9);
  box-shadow:
    0 0 0 1px rgba(246, 210, 126, 0.2),
    0 0 50px rgba(246, 210, 126, 0.25),
    0 0 100px rgba(184, 136, 59, 0.15);
  animation: splashMarkPulse 2.2s ease-in-out 0.5s infinite alternate;
}

.splash-logo-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background: radial-gradient(circle at 35% 15%, #2a2618, #050608 65%);
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 32px;
  color: var(--gold-soft);
  text-shadow: 0 0 30px rgba(246, 210, 126, 0.4);
}

.splash-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0;
  animation: splashTextReveal 0.8s ease 0.7s forwards;
}

.splash-logo-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.2em;
  font-size: 18px;
  text-transform: uppercase;
  background: linear-gradient(120deg, #f9e5b9, #b48532, #f6d27e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(246, 210, 126, 0.35));
}

.splash-logo-subtitle {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Altın parıltı (shine) geçişi */
.splash-shine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 255, 255, 0.06) 45%,
    rgba(249, 229, 185, 0.2) 50%,
    rgba(255, 255, 255, 0.06) 55%,
    transparent 65%,
    transparent 100%
  );
  transform: skewX(-18deg);
  animation: splashShine 1.8s ease-in-out 0.4s forwards;
  pointer-events: none;
}

@keyframes splashLogoReveal {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes splashTextReveal {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes splashMarkPulse {
  0% {
    box-shadow:
      0 0 0 1px rgba(246, 210, 126, 0.2),
      0 0 50px rgba(246, 210, 126, 0.25),
      0 0 100px rgba(184, 136, 59, 0.15);
  }
  100% {
    box-shadow:
      0 0 0 2px rgba(246, 210, 126, 0.35),
      0 0 70px rgba(246, 210, 126, 0.4),
      0 0 130px rgba(184, 136, 59, 0.25);
  }
}

@keyframes splashShine {
  0% {
    left: -120%;
  }
  100% {
    left: 150%;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: radial-gradient(circle at top left, rgba(246, 210, 126, 0.06), transparent 50%),
              rgba(5, 6, 8, 0.94);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

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

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  padding: 2px;
  background: conic-gradient(from 140deg, #f9e5b9, #b48532, #f6d27e, #5e4520, #f9e5b9);
  box-shadow: 0 0 25px rgba(246, 210, 126, 0.4);
}

.logo-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 0%, #2a2618, #050608 70%);
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 15px;
  color: var(--gold-soft);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 14px;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
}

.main-nav a {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 400;
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft));
  transition: width 0.25s ease;
}

.main-nav a:hover {
  color: var(--text-main);
}

.main-nav a:hover::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 8, 13, 0.9);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--text-main);
  margin: 0 auto;
}

/* Hero */
.hero {
  position: relative;
  padding: 80px 0 90px;
  background:
    radial-gradient(circle at top left, rgba(246, 210, 126, 0.18), transparent 55%),
    radial-gradient(circle at bottom right, rgba(55, 63, 100, 0.8), #050608 70%);
  color: var(--text-main);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 0, 0, 0.45), transparent 55%),
    linear-gradient(to bottom, rgba(5, 6, 8, 0.2), rgba(5, 6, 8, 0.9));
  pointer-events: none;
}

.hero-container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}

.hero-content {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
  border: 1px solid rgba(226, 192, 123, 0.35);
  background: radial-gradient(circle at 30% 0%, rgba(249, 229, 185, 0.16), rgba(5, 6, 8, 0.9));
  margin-bottom: 18px;
}

.hero-heading-main {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-heading-main strong {
  display: block;
  font-weight: 700;
  background: linear-gradient(120deg, #f9e5b9, #b48532, #f6d27e);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text {
  margin-top: 18px;
  font-size: 15px;
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-deep), var(--gold-soft));
  color: #20180b;
  box-shadow: 0 9px 30px rgba(246, 210, 126, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 35px rgba(246, 210, 126, 0.45);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(5, 6, 8, 0.8);
  color: var(--text-main);
}

.btn-ghost:hover {
  border-color: rgba(226, 192, 123, 0.6);
  color: var(--gold-soft);
}

.btn-block {
  width: 100%;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
  font-size: 12px;
}

.hero-meta-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(185, 182, 198, 0.9);
  margin-bottom: 4px;
}

.hero-meta-value {
  color: #f5f3ee;
}

/* Hero sağ kart */
.hero-card {
  position: relative;
}

.hero-card-inner {
  position: relative;
  background:
    radial-gradient(circle at 0% 0%, rgba(246, 210, 126, 0.14), transparent 65%),
    radial-gradient(circle at 100% 100%, rgba(26, 32, 70, 0.8), rgba(8, 9, 16, 0.98));
  border-radius: 28px;
  padding: 26px 24px 24px;
  border: 1px solid rgba(226, 192, 123, 0.4);
  box-shadow: var(--shadow-soft);
  color: #fef9ef;
}

.hero-card-inner::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(9, 11, 18, 0.8);
  pointer-events: none;
}

.hero-card-inner h2 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin: 0 0 8px;
}

.hero-card-inner p {
  margin: 0 0 14px;
  font-size: 14px;
  color: rgba(250, 245, 235, 0.86);
}

.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  font-size: 13px;
}

.hero-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle, var(--gold-soft), var(--gold-deep));
}

.hero-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
}

.hero-card-cta::after {
  content: "→";
  font-size: 12px;
  transform: translateY(1px);
}

/* Bölümler */
.section {
  position: relative;
  padding: 70px 0;
  background: radial-gradient(circle at top left, rgba(246, 210, 126, 0.04), transparent 60%),
              #050608;
}

.section::before,
.section::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 140px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  opacity: 0.7;
  pointer-events: none;
}

.section::before {
  top: 0;
}

.section::after {
  bottom: 0;
  opacity: 0.45;
}

.section-alt {
  background: radial-gradient(circle at top right, rgba(35, 46, 93, 0.65), #050608 70%);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 46px;
  align-items: flex-start;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  margin-bottom: 14px;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-soft));
  box-shadow: 0 0 18px rgba(246, 210, 126, 0.55);
  border-radius: 999px;
}

.section-header p {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
}

.section p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Hakkımızda highlight */
.about-highlight {
  display: grid;
  gap: 12px;
}

.about-item {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(246, 210, 126, 0.06), rgba(8, 9, 16, 0.96));
  border: 1px solid rgba(226, 192, 123, 0.32);
}

.about-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(185, 182, 198, 0.9);
  margin-bottom: 2px;
}

.about-value {
  font-size: 14px;
}

/* Kart grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: rgba(8, 9, 16, 0.96);
  border-radius: var(--radius-lg);
  padding: 20px 18px 18px;
  border: 1px solid rgba(226, 192, 123, 0.22);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.8);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-family: "Playfair Display", serif;
  font-size: 17px;
}

.card p {
  margin: 0 0 10px;
  font-size: 13px;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.card ul li {
  margin-bottom: 4px;
  position: relative;
  padding-left: 14px;
}

.card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--gold-soft);
}

/* Ekip */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* Tek ekip üyesi olduğunda ortalanmış, dengeli görünüm */
.team-grid--single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 420px;
  margin: 0 auto;
  justify-items: center;
}

.team-card {
  background: rgba(8, 9, 16, 0.96);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  border: 1px solid rgba(226, 192, 123, 0.18);
}

.team-avatar {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 600;
  background: conic-gradient(from 120deg, #f9e5b9, #b48532, #f6d27e, #5e4520, #f9e5b9);
  color: #20180b;
}

.team-card h3 {
  margin: 0 0 4px;
  font-size: 15px;
}

.team-role {
  margin: 0 0 8px;
  font-size: 12px;
  color: var(--gold-soft);
}

.team-card p {
  font-size: 13px;
}

/* Çalışma prensibi */
.steps {
  display: grid;
  gap: 14px;
}

.step {
  border-radius: var(--radius-md);
  padding: 14px 16px;
  background: rgba(8, 9, 16, 0.96);
  border: 1px solid rgba(226, 192, 123, 0.23);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  font-size: 11px;
  border: 1px solid rgba(226, 192, 123, 0.6);
  color: var(--gold-soft);
  margin-bottom: 6px;
}

.step h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.step p {
  margin: 0;
  font-size: 13px;
}

/* İletişim */
.contact-details {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.contact-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(185, 182, 198, 0.9);
  margin-bottom: 2px;
}

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

.contact-form {
  margin-top: 6px;
  background: rgba(8, 9, 16, 0.96);
  padding: 18px 18px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(226, 192, 123, 0.22);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.8);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.form-group label {
  font-size: 12px;
  margin-bottom: 4px;
}

.form-group input,
.form-group textarea {
  border-radius: 10px;
  border: 1px solid rgba(226, 192, 123, 0.22);
  background: rgba(5, 6, 10, 0.96);
  padding: 8px 10px;
  color: var(--text-main);
  font-size: 13px;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(246, 210, 126, 0.8);
  box-shadow: 0 0 0 1px rgba(246, 210, 126, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.form-alert {
  margin-bottom: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 12px;
}

.form-alert-success {
  background: rgba(46, 204, 113, 0.08);
  border: 1px solid rgba(46, 204, 113, 0.5);
  color: #aef2c8;
}

.form-alert-error {
  background: rgba(231, 76, 60, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.6);
  color: #f5b2aa;
}

.form-message {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13px;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.5);
  color: #aef2c8;
}

.form-message.error {
  display: block;
  background: rgba(231, 76, 60, 0.12);
  border: 1px solid rgba(231, 76, 60, 0.6);
  color: #f5b2aa;
}

.recaptcha-group {
  margin-bottom: 4px;
}

.contact-map {
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(226, 192, 123, 0.22);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.8);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 260px;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: linear-gradient(to bottom, #050608, #050608 50%, #030307);
  padding: 18px 0;
  font-size: 12px;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 11px;
  background: conic-gradient(from 140deg, #f9e5b9, #b48532, #f6d27e, #5e4520, #f9e5b9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 13px;
  font-weight: 600;
  color: #20180b;
}

.footer-logo-text {
  font-size: 13px;
}

.footer-copy {
  margin: 4px 0 0;
  color: var(--text-muted);
  font-size: 11px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--text-muted);
}

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

/* WhatsApp sabit buton */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  font-size: 13px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
}

.whatsapp-icon img {
  width: 100%;
  height: 100%;
  display: block;
}

.whatsapp-text {
  font-weight: 500;
}

.whatsapp-float:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.8);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-container {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    order: -1;
  }

  .section-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 10px 0;
  }

  .main-nav {
    position: absolute;
    inset-inline: 16px;
    top: 60px;
    background: rgba(5, 6, 8, 0.98);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
    padding: 10px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transform-origin: top;
    transform: scaleY(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-meta {
    grid-template-columns: minmax(0, 1fr);
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .team-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-text {
    display: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-card-inner {
    padding: 20px 18px 18px;
  }

  .section {
    padding: 54px 0;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 10px 12px;
  }
}

