.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.whatsapp-float__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(18, 140, 126, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}

.whatsapp-float__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(18, 140, 126, 0.35);
}

.whatsapp-float__toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  justify-content: center;
  padding: 0;
  gap: 0;
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(18, 140, 126, 0.25);
  display: none;
}

.whatsapp-float__toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(18, 140, 126, 0.35);
}

.whatsapp-float__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 1.2rem;
}

.whatsapp-float__text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.whatsapp-float__text small {
  font-size: 0.75rem;
  opacity: 0.85;
}

@media (max-width: 600px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }

  .whatsapp-float__button--link {
    padding: 12px 16px;
  }

  .whatsapp-float__toggle {
    display: inline-flex;
  }

  .whatsapp-float[data-open='false'] .whatsapp-float__button--link {
    display: none;
  }

  .whatsapp-float[data-open='true'] .whatsapp-float__toggle {
    display: none;
  }
}
.policy-section {
  padding: clamp(48px, 8vw, 72px) 0;
  background: rgba(248, 250, 252, 0.8);
}

.policy-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.policy-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(148, 163, 184, 0.18);
  display: grid;
  gap: 14px;
}

.policy-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 6px;
}
:root {
  --primary: #0f172a;
  --primary-light: #1e293b;
  --secondary: #38bdf8;
  --accent: #f97316;
  --text: #1f2937;
  --muted: #64748b;
  --bg: #f8fafc;
  --white: #ffffff;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-lg: 0 25px 45px rgba(15, 23, 42, 0.14);
  --shadow-md: 0 15px 30px rgba(15, 23, 42, 0.12);
  --shadow-sm: 0 8px 20px rgba(100, 116, 139, 0.1);
  --max-width: 1200px;
  --transition: all 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::after {
  content: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

section {
  padding: 72px 0;
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin-inline: auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.navbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.navbar__cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--primary);
}

.logo__image {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.logo__text {
  display: inline-flex;
  flex-direction: column;
  font-weight: 700;
  line-height: 1.05;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 600;
  border: none;
  transition: var(--transition);
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--secondary), #60a5fa);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--ghost {
  color: var(--primary);
  background: rgba(56, 189, 248, 0.12);
}

.btn--ghost:hover {
  background: rgba(56, 189, 248, 0.22);
}

.hero {
  padding: 120px 0 80px;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .hero__grid {
    gap: 32px;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.15);
  color: var(--secondary);
  font-weight: 600;
}

.hero__title {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 800;
  color: var(--primary);
  margin: 28px 0 20px;
  line-height: 1.15;
}

.hero__subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .hero__metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
  }
}

@media (max-width: 480px) {
  .hero__metrics {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }
}

.metric-card {
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 6px;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .metric-card {
    padding: 16px 18px;
  }
}

.metric-card span {
  display: block;
  font-weight: 700;
  color: var(--primary);
  font-size: clamp(1rem, 3vw, 1.2rem);
}

.showcase {
  position: relative;
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.18), transparent),
    linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.75));
  min-height: 420px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .showcase {
    min-height: 360px;
  }
}

@media (max-width: 600px) {
  .showcase {
    min-height: 320px;
    border-radius: var(--radius-md);
  }
}

.showcase::after {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.25);
  pointer-events: none;
}

.showcase__content {
  position: absolute;
  inset: 40px;
  color: var(--white);
  display: grid;
  align-content: space-between;
}

@media (max-width: 900px) {
  .showcase__content {
    inset: 32px;
  }
}

@media (max-width: 600px) {
  .showcase__content {
    inset: 24px;
  }
}

.showcase__badge {
  justify-self: start;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
}

@media (max-width: 600px) {
  .showcase__badge {
    padding: 8px 14px;
    font-size: 0.85rem;
  }
  
  .showcase__content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

.showcase__title {
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 700;
  max-width: 420px;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .showcase__title {
    font-size: 1.3rem;
    margin: 16px 0 12px;
    max-width: 100%;
  }
}

.section-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(36px, 5vw, 48px);
}

.section-heading h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-heading p {
  color: var(--muted);
  margin: 0;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  line-height: 1.6;
}

.services-section {
  position: relative;
  padding: clamp(60px, 8vw, 90px) 0;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.95), rgba(226, 232, 240, 0.35));
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  bottom: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent 70%);
}

.services-section::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  top: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(14, 116, 144, 0.18), transparent 70%);
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.services-section .section-heading h2 {
  color: var(--primary);
}

.services-section .section-heading p {
  color: rgba(71, 85, 105, 0.85);
}

.products-section {
  position: relative;
  padding: clamp(60px, 8vw, 90px) 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.55));
  overflow: hidden;
}

.products-section::before {
  content: '';
  position: absolute;
  inset: 40% auto 0 0;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.18), transparent 70%);
  filter: blur(30px);
}

.products-section .container {
  position: relative;
  z-index: 1;
}

.products-section .section-heading h2 {
  color: rgba(241, 245, 249, 0.95);
}

.products-section .section-heading p {
  color: rgba(203, 213, 225, 0.85);
}

.services-grid,
.product-grid,
.highlight-grid,
.trainings-grid {
  display: grid;
  gap: 28px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 4vw, 32px);
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.service-card {
  position: relative;
  background: var(--white);
  padding: 0;
  border-radius: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(226, 232, 240, 0.8);
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), #2563eb);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 25px -5px rgba(56, 189, 248, 0.2), 0 10px 10px -5px rgba(56, 189, 248, 0.1);
  border-color: rgba(56, 189, 248, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  position: relative;
  z-index: 1;
  display: inline-block;
  transition: all 0.3s ease;
  flex-shrink: 0;
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  line-height: 1;
  color: var(--secondary);
  margin: clamp(28px, 5vw, 36px) 0 0 clamp(28px, 5vw, 36px);
  background: none;
  border: none;
  width: auto;
  height: auto;
}

.service-card:hover .service-card__icon {
  transform: scale(1.05);
  color: #2563eb;
}

.service-card__content {
  padding: clamp(24px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.service-card h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--primary);
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.6vw, 1.05rem);
  line-height: 1.7;
  flex: 1;
}

.service-card .btn {
  align-self: flex-start;
  margin-top: auto;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.service-card:hover .btn {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  transform: translateX(4px);
}

.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.product-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(56, 189, 248, 0.12));
  border-radius: var(--radius-md);
  padding: clamp(30px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid rgba(56, 189, 248, 0.12);
  box-shadow: var(--shadow-md);
  height: 100%;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: auto -120px -140px auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(56, 189, 248, 0.35);
}

.product-card.popular {
  border: 2px solid rgba(56, 189, 248, 0.55);
}

.product-card__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(249, 115, 22, 0.18);
  color: var(--accent);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 1;
}

.product-card__header {
  display: grid;
  gap: 6px;
}

.product-card__header h3 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--primary);
}

.product-card__tagline {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}

.product-card__description {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.product-card__price-amount {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--primary);
}

.product-card__price-period {
  color: var(--muted);
  font-weight: 600;
}

.product-card__price--quote {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.05rem;
}

.product-card__price-quote {
  color: inherit;
}

.product-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.product-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.product-card__features li::before {
  content: '✔';
  color: var(--secondary);
  font-weight: 700;
  margin-top: 2px;
}

.product-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.product-card__trial {
  color: var(--secondary);
  font-weight: 600;
  background: rgba(56, 189, 248, 0.15);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
}

.about-stats {
  padding: clamp(48px, 8vw, 72px) 0;
  background: var(--white);
}

.about-stats__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-stat-card {
  padding: 26px 28px;
  border-radius: var(--radius-md);
  color: var(--white);
  background: linear-gradient(135deg, #0f172a, #2563eb);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 10px;
}

.about-stat-card strong {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  line-height: 1.1;
}

.about-stat-card__eyebrow {
  font-weight: 600;
  opacity: 0.85;
}

.about-values {
  padding: clamp(48px, 8vw, 72px) 0;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.12), transparent 60%);
}

.about-values__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-values__card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  display: grid;
  gap: 14px;
  border: 1px solid rgba(56, 189, 248, 0.18);
}

.about-values__icon {
  font-size: 1.8rem;
}

.about-story {
  padding: clamp(48px, 8vw, 72px) 0;
}

.about-story__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.about-story__media {
  background: linear-gradient(140deg, rgba(56, 189, 248, 0.15), rgba(30, 64, 175, 0.55));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 6vw, 42px);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 12px;
  font-weight: 500;
}

.about-story__media span {
  font-weight: 700;
  font-size: 1.05rem;
  opacity: 0.9;
}

.about-story__content {
  display: grid;
  gap: 16px;
}

.about-story__list {
  margin: 0;
  padding-left: 20px;
  list-style: disc;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.about-story__list li {
  line-height: 1.6;
}

.about-timeline {
  padding: clamp(48px, 8vw, 72px) 0;
  background: var(--white);
}

.timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 0 18px;
  display: grid;
  gap: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  width: 2px;
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.6), rgba(14, 116, 144, 0.2));
}

.timeline__item {
  position: relative;
  margin-left: 28px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  background: rgba(248, 250, 252, 0.95);
  display: grid;
  gap: 10px;
}

.timeline__item::before {
  content: '';
  position: absolute;
  top: 28px;
  left: -41px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.18);
}

.timeline__year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.18);
  color: var(--secondary);
  font-weight: 700;
  padding: 6px 14px;
  width: fit-content;
}

.timeline__subtitle {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.timeline__description {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.about-team {
  padding: clamp(48px, 8vw, 72px) 0;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.12), transparent 70%);
}

.about-team__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.about-team__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 12px;
}

.about-team__card ul {
  margin: 0;
  padding-left: 20px;
  list-style: disc;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.contact-wrapper {
  padding: clamp(48px, 8vw, 72px) 0;
}

.contact-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 24px;
}

.contact-info__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.15);
  color: var(--secondary);
  font-weight: 600;
}

.contact-info__cards {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-info__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(56, 189, 248, 0.12);
  display: grid;
  gap: 12px;
}

.contact-info__card .btn {
  width: fit-content;
}

.contact-info__mail {
  font-weight: 600;
  color: var(--secondary);
}

.contact-info__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.15);
  color: var(--primary);
  font-weight: 600;
  width: fit-content;
}

.contact-form-card p {
  margin: 0;
  color: var(--muted);
}

.contact-support {
  padding: clamp(42px, 6vw, 64px) 0;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.1), transparent 70%);
}

.contact-support__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-support__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: var(--shadow-sm);
}

.contact-map {
  padding: clamp(42px, 6vw, 64px) 0;
}

.contact-map__panel {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(37, 99, 235, 0.9));
  color: rgba(255, 255, 255, 0.9);
  padding: clamp(32px, 6vw, 48px);
  display: grid;
  gap: 24px;
  box-shadow: var(--shadow-lg);
}

.contact-map__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.contact-map__grid div {
  display: grid;
  gap: 6px;
  font-size: 0.95rem;
}

.contact-cta {
  padding: clamp(48px, 8vw, 72px) 0;
  text-align: center;
}

.contact-cta__actions {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.highlight-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.highlight-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.highlight-card h3 {
  margin: 0 0 8px;
  color: var(--primary);
}

.highlight-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.trainings-section {
  padding: clamp(64px, 10vw, 96px) 0;
  background: var(--white);
}

.trainings-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.training-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid transparent;
}

.training-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(56, 189, 248, 0.3);
}

.training-card__video-link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--bg-secondary);
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.training-card__video-link:hover {
  opacity: 0.9;
}

.training-card__play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.training-card__video-link:hover .training-card__play-overlay {
  opacity: 1;
}

.training-card__play-icon-large {
  font-size: 4rem;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.training-card__thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.training-card:hover .training-card__thumbnail {
  transform: scale(1.05);
}
.training-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(37, 99, 235, 0.1));
}

.training-card__play-icon {
  font-size: 3.5rem;
  color: var(--secondary);
  opacity: 0.8;
}

.training-card__duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}

.training-card__content {
  padding: 24px;
  display: grid;
  gap: 10px;
}

.training-card__content h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 600;
}

.training-card__content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.cta-strip {
  padding: 48px 0;
}

.cta-strip__inner {
  background: linear-gradient(135deg, var(--secondary), #2563eb);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 8vw, 60px);
  display: grid;
  gap: 18px;
  align-items: center;
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.cta-strip__title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin: 0;
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-strip__actions .btn--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

.cta-strip__actions .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.28);
}

.page-header {
  padding: 120px 0 60px;
  text-align: center;
  background: radial-gradient(circle at top, rgba(56, 189, 248, 0.15), transparent);
}

.page-header h1 {
  font-size: clamp(2.4rem, 4vw, 3rem);
  margin-bottom: 16px;
  color: var(--primary);
}

.page-header__logo {
  width: clamp(260px, 32vw, 360px);
  margin: 0 auto 24px;
  display: block;
}

.page-header p {
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
}

.content-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
}

.content-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 16px;
}

.content-card h3 {
  margin: 0;
  color: var(--primary);
}

.content-card p {
  margin: 0;
  color: var(--muted);
}

.form-card {
  background: var(--white);
  padding: clamp(28px, 3vw, 42px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 22px;
}

.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  padding: 14px 16px;
  font-size: 1rem;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.92);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15);
}

.form-status {
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 600;
  display: none;
}

.form-status.success {
  background: rgba(34, 197, 94, 0.15);
  color: #15803d;
  display: block;
}

.form-status.error {
  background: rgba(248, 113, 113, 0.15);
  color: #b91c1c;
  display: block;
}

.footer {
  background: var(--primary);
  color: rgba(226, 232, 240, 0.85);
  padding: 64px 0 32px;
  margin-top: 80px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.footer__brand h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
  color: var(--white);
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer__list a {
  color: rgba(226, 232, 240, 0.7);
  transition: var(--transition);
}

.footer__list a:hover {
  color: var(--white);
}

.footer__bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.95rem;
}

.footer__logo {
  height: 56px;
  width: auto;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--primary);
}

.admin-body {
  background: linear-gradient(160deg, rgba(56, 189, 248, 0.12), transparent 45%), var(--bg);
  min-height: 100vh;
}

.admin-app {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.admin-loader {
  display: grid;
  gap: 12px;
  place-items: center;
  color: var(--muted);
}

.admin-login {
  width: min(420px, 100%);
}

.login-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(36px, 5vw, 48px);
  display: grid;
  gap: 24px;
  text-align: center;
}

.login-card h1 {
  margin: 0;
  color: var(--primary);
  font-size: 2rem;
}

.login-card p {
  margin: 0;
  color: var(--muted);
}

.login-card form {
  display: grid;
  gap: 18px;
  text-align: left;
}

.dashboard-layout {
  width: 100%;
  min-height: 100vh;
  background: rgba(248, 250, 252, 0.95);
  display: grid;
  grid-template-columns: 280px 1fr;
  position: relative;
}

@media (max-width: 1024px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto 1fr;
  }
}

@media (max-width: 1024px) {
  .dashboard-layout.sidebar-open .dashboard-sidebar {
    transform: translateX(0);
  }
  
  .dashboard-layout.sidebar-open .sidebar-overlay {
    display: block;
  }
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  backdrop-filter: blur(2px);
}

.dashboard-sidebar {
  background: linear-gradient(180deg, var(--primary) 0%, #1e40af 100%);
  color: rgba(226, 232, 240, 0.95);
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 32px) clamp(20px, 2.5vw, 24px);
  gap: clamp(24px, 3vw, 32px);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 999;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .dashboard-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }
}

.sidebar-logo {
  display: grid;
  gap: 6px;
}

.sidebar-logo span {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--white);
}

.sidebar-meta {
  font-size: 0.92rem;
  color: rgba(226, 232, 240, 0.7);
}

.sidebar-nav {
  display: grid;
  gap: 12px;
}

.sidebar-nav button {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: inherit;
  text-align: left;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: 0.95rem;
}

.sidebar-nav button:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  transform: translateX(4px);
}

.sidebar-nav button.active {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.dashboard-footer {
  margin-top: auto;
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.6);
}

.dashboard-main {
  padding: clamp(20px, 3vw, 32px) clamp(16px, 2.5vw, 48px);
  display: grid;
  gap: clamp(24px, 3vw, 32px);
  background: rgba(248, 250, 252, 0.95);
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

.dashboard-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.dashboard-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .dashboard-actions {
    display: none;
  }
}

@media (max-width: 640px) {
  .dashboard-header {
    padding-bottom: 16px;
  }
  
  .dashboard-meta h2 {
    font-size: 1.3rem;
  }
}

/* Admin Navbar - Sadece mobil için */
.admin-navbar {
  display: none;
}

@media (max-width: 1024px) {
  .admin-navbar {
    grid-column: 1 / -1;
    background: var(--white);
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
    padding: clamp(12px, 2vw, 16px) clamp(20px, 3vw, 32px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
  }
}

.admin-navbar__left {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
}

.admin-navbar__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-navbar__logo {
  font-weight: 700;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--primary);
  display: none;
}

@media (max-width: 1024px) {
  .admin-navbar__logo {
    display: block;
  }
}

.mobile-menu-toggle {
  background: var(--white);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 10px;
  padding: 10px 14px;
  color: var(--primary);
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

.mobile-menu-toggle:hover {
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.4);
  transform: scale(1.05);
}

.mobile-menu-toggle .hamburger-icon {
  display: block;
  line-height: 1;
}

.admin-navbar__btn {
  background: var(--white);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 10px;
  padding: 10px 18px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.admin-navbar__btn:hover {
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.4);
}

.admin-navbar__btn--primary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.admin-navbar__btn--primary:hover {
  background: #2563eb;
  border-color: #2563eb;
}

@media (max-width: 640px) {
  .admin-navbar {
    padding: 12px 16px;
  }
  
  .admin-navbar__btn {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
  
  .admin-navbar__btn:first-of-type {
    display: none;
  }
}

.dashboard-meta {
  display: grid;
  gap: 6px;
}

.dashboard-meta h2 {
  margin: 0;
  color: var(--primary);
}

.dashboard-meta span {
  color: var(--muted);
  font-size: 0.95rem;
}

.dashboard-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .dashboard-actions {
    width: 100%;
  }
  
  .dashboard-actions .btn,
  .dashboard-actions .ghost-button {
    flex: 1;
    min-width: 0;
  }
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(16px, 2.5vw, 20px);
}

@media (max-width: 640px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 8px;
}

.stat-card span {
  font-size: 0.9rem;
  color: var(--muted);
}

.stat-card strong {
  font-size: 1.8rem;
  color: var(--primary);
}

.panel-grid {
  display: grid;
  gap: 24px;
}

.panel {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.panel-header h3 {
  margin: 0;
  color: var(--primary);
}

.panel-body {
  padding: clamp(20px, 3vw, 24px);
  display: grid;
  gap: clamp(16px, 2.5vw, 18px);
}

@media (max-width: 640px) {
  .panel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 20px;
  }
  
  .panel-body {
    padding: 18px 20px;
  }
}

.table-wrapper {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

@media (max-width: 768px) {
  .table-wrapper {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.05);
  }
  
  .admin-table {
    font-size: 0.9rem;
  }
  
  .admin-table th,
  .admin-table td {
    padding: 12px 10px;
    white-space: nowrap;
  }
}

.admin-table th,
.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  text-align: left;
  font-size: 0.95rem;
}

.admin-table th {
  background: rgba(56, 189, 248, 0.08);
  color: var(--primary);
  font-weight: 600;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pill--success {
  background: rgba(34, 197, 94, 0.18);
  color: #166534;
}

.pill--warning {
  background: rgba(251, 191, 36, 0.2);
  color: #92400e;
}

.pill--info {
  background: rgba(56, 189, 248, 0.18);
  color: #075985;
}

.chip {
  background: rgba(56, 189, 248, 0.14);
  color: var(--secondary);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

.section-divider {
  margin: 12px 0;
  height: 1px;
  background: rgba(148, 163, 184, 0.16);
}

.ghost-button {
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: rgba(56, 189, 248, 0.08);
  padding: 10px 16px;
  border-radius: 12px;
  color: var(--secondary);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.ghost-button:hover {
  background: rgba(56, 189, 248, 0.16);
}

.message-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.message-item {
  background: rgba(56, 189, 248, 0.12);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: grid;
  gap: 6px;
}

.message-item strong {
  color: var(--primary);
}

.message-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.empty-state {
  background: rgba(148, 163, 184, 0.08);
  border-radius: var(--radius-sm);
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(56, 189, 248, 0.16);
  color: var(--secondary);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: grid;
  place-items: center;
  padding: 20px;
  z-index: 100;
  animation: overlayFade 0.2s ease;
}

.modal-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: clamp(28px, 4vw, 36px);
  width: min(420px, 100%);
  display: grid;
  gap: 18px;
  text-align: center;
  animation: modalPop 0.25s ease;
}

.modal-card h3 {
  margin: 0;
  color: var(--primary);
}

.modal-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: grid;
  place-items: center;
  padding: 20px;
  z-index: 1000;
  animation: overlayFade 0.2s ease;
}

.video-modal {
  position: relative;
  width: min(90vw, 1200px);
  max-height: 90vh;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  display: grid;
  gap: 16px;
  animation: modalPop 0.25s ease;
}

.video-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease;
  z-index: 10;
}

.video-modal__close:hover {
  background: rgba(0, 0, 0, 0.7);
}

.video-modal__title {
  margin: 0;
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 600;
}

.video-modal__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--black);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.video-modal__player video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--black);
}

.video-error {
  padding: 24px;
  text-align: center;
  color: var(--muted);
}

.video-error a {
  color: var(--secondary);
  text-decoration: underline;
}

.modal-card .modal-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.modal-card[data-type='error'] h3 {
  color: #b91c1c;
}

.modal-card[data-type='success'] h3 {
  color: #15803d;
}

.modal-card[data-type='warning'] h3 {
  color: #d97706;
}

@keyframes overlayFade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalPop {
  from {
    transform: translateY(20px) scale(0.98);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Eski mobil stiller kaldırıldı - yeni responsive tasarım kullanılıyor */

@media (max-width: 900px) {
  .navbar__content {
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: fixed;
    top: 120px;
    right: 16px;
    left: 16px;
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(148, 163, 184, 0.18);
    transform: translateY(-140%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 30;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links a {
    padding: 10px 6px;
    border-radius: 10px;
  }

  .navbar__cta {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    padding-top: 120px;
  }

  .showcase {
    order: -1;
    /* Responsive min-height stilleri yukarıda tanımlandı */
  }

  .contact-cta__actions .btn {
    width: auto;
  }
}

@media (max-width: 600px) {
  .hero__title {
    font-size: 2.4rem;
  }

  /* hero__metrics ve showcase stilleri yukarıda tanımlandı - duplicate kaldırıldı */

  .form-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    padding: 24px;
  }

  .product-card__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .trainings-grid {
    grid-template-columns: 1fr;
  }

  .training-card__content {
    padding: 20px;
  }

  .services-grid {
    gap: 16px;
  }

  .service-card {
    border-radius: 16px;
  }

  .service-card__icon {
    font-size: 1.8rem;
    margin: 24px 0 0 24px;
  }

  .service-card__content {
    padding: 20px;
    gap: 12px;
  }

  .service-card h3 {
    font-size: 1.15rem;
  }
  
  .section-heading h2 {
    font-size: 1.75rem;
  }
  
  .section-heading p {
    font-size: 0.95rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }

  .product-card__trial {
    justify-content: center;
    text-align: center;
  }

  .product-card__badge {
    top: 12px;
    right: 12px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-cta__actions {
    flex-direction: column;
  }

}


