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

/* =====================================================
   CSS VARIABLES
===================================================== */
:root {
  --bg-0: #07090f;
  --bg-1: #0b0f1a;
  --bg-2: #0f1521;
  --bg-card: #111827;
  --bg-card-hover: #161f30;
  --accent: #3b82f6;
  --accent-light: #60a5fa;
  --accent-dark: #1d4ed8;
  --accent-glow: rgba(59, 130, 246, 0.2);
  --green: #25d366;
  --green-dark: #128c7e;
  --text-1: #e8eeff;
  --text-2: #7a8fa6;
  --text-3: #3d4f63;
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(59, 130, 246, 0.18);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-full: 9999px;
  --shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
  --shadow-blue: 0 8px 32px rgba(59, 130, 246, 0.22);
  --max-w: 1200px;
  --t: all 0.25s ease;
}

/* =====================================================
   RESET & BASE
===================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--bg-0);
  color: var(--text-1);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* =====================================================
   UTILITIES
===================================================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: var(--t);
  border: 2px solid transparent;
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.btn-primary.btn-full {
  width: 100%;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  color: var(--text-1);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: var(--t);
  border: 2px solid var(--border);
  letter-spacing: -0.01em;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-light);
  transform: translateY(-2px);
}

.btn-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--r-full);
  transition: var(--t);
  border: 2px solid transparent;
  letter-spacing: -0.01em;
}

.btn-store:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  transform: translateY(-1px);
}

.btn-store svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Fade animations */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section labels / header */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-1);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-2);
  max-width: 560px;
  line-height: 1.7;
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

/* =====================================================
   HEADER / NAV
===================================================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

#site-header.scrolled {
  background: rgba(7, 9, 15, 0.92);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px 24px;
}

/* Logo */
.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--r-sm);
  transition: var(--t);
}

.nav-links a:hover {
  color: var(--text-1);
  background: var(--border);
}

/* CTA WhatsApp */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: var(--t);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.28);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

.nav-cta svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text-2);
  font-size: 18px;
  margin-left: auto;
  transition: var(--t);
}

.nav-toggle:hover {
  color: var(--text-1);
  background: var(--border);
}

/* Store nav link */
.nav-store {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--r-full);
  transition: var(--t);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-store:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.nav-store svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Mobile nav */
@media (max-width: 820px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(7, 9, 15, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 12px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 14px;
    font-size: 15px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-cta {
    display: none;
  }
}

/* =====================================================
   FOOTER
===================================================== */
#site-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  margin-top: 40px;
}

.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 24px 48px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.4fr;
  gap: 56px;
}

/* Footer brand column */
.footer-brand-logo {
  margin-bottom: 14px;
}

.footer-brand-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-brand-desc {
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 340px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  color: var(--text-2);
  font-size: 15px;
  transition: var(--t);
}

.footer-social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

/* Footer columns */
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-bottom: 20px;
}

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

.footer-col-links a {
  font-size: 14px;
  color: var(--text-2);
  transition: var(--t);
}

.footer-col-links a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}

/* Footer contact */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.footer-contact-icon {
  width: 30px;
  height: 30px;
  background: var(--border);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  font-size: 13px;
  flex-shrink: 0;
}

.footer-contact-info {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}

.footer-contact-info a {
  color: var(--text-2);
  transition: var(--t);
}

.footer-contact-info a:hover {
  color: var(--accent-light);
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid var(--border);
}

.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: var(--text-3);
}

.footer-dev {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 13px;
  transition: var(--t);
  text-decoration: none;
}

.footer-dev:hover {
  color: var(--text-2);
}

.footer-dev-logo {
  height: 18px;
  width: auto;
  opacity: 0.5;
  transition: var(--t);
  filter: brightness(0) invert(1);
}

.footer-dev:hover .footer-dev-logo {
  opacity: 0.85;
}

/* Footer responsive */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
    padding: 48px 24px 32px;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* =====================================================
   DASHBOARD LAYOUT
===================================================== */
#dashboard {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#site-main {
  flex: 1;
}

/* =====================================================
   HERO SECTION
===================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(59, 130, 246, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 90%, rgba(29, 78, 216, 0.09) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 130px;
  padding-bottom: 80px;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid var(--border-accent, rgba(59, 130, 246, 0.18));
  border-radius: var(--r-full);
  background: rgba(59, 130, 246, 0.07);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-light);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text-1);
  margin-bottom: 24px;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--text-2);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: fit-content;
  margin: 0 auto;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
  gap: 4px;
}

.hero-stat-number {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text-1);
  line-height: 1;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-2);
  font-weight: 500;
  white-space: nowrap;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero-scroll-indicator span {
  display: block;
  width: 22px;
  height: 36px;
  border: 2px solid var(--border);
  border-radius: 11px;
  position: relative;
}

.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 8px;
  background: var(--accent-light);
  border-radius: 2px;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-dot 2s ease infinite;
}

@keyframes scroll-dot {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* Hero responsive */
@media (max-width: 600px) {
  .hero-stats {
    padding: 18px 20px;
    gap: 0;
  }

  .hero-stat {
    padding: 0 16px;
  }

  .hero-stat-number {
    font-size: 24px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
  }
}

/* =====================================================
   SERVICES SECTION
===================================================== */
.services-section {
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: var(--t);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.04), transparent 60%);
  opacity: 0;
  transition: var(--t);
}

.service-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card--featured {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
}

.service-card--featured::before {
  opacity: 1;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(29, 78, 216, 0.08));
  border: 1px solid var(--border-accent);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-light);
  fill: none;
}

.service-card-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-1);
  position: relative;
  z-index: 1;
}

.service-card-text {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  flex: 1;
  position: relative;
  z-index: 1;
}

.service-card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid var(--border-accent);
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-light);
  width: fit-content;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 72px 0;
  }
}

/* =====================================================
   BRANDS SECTION
===================================================== */
.brands-section {
  padding: 80px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brands-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.brands-text .section-subtitle {
  margin-bottom: 0;
}

.brands-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: var(--t);
}

.brand-card:hover {
  border-color: var(--border-accent);
  transform: translateX(4px);
}

.brand-card-logo {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(29, 78, 216, 0.06));
  border: 1px solid var(--border-accent);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand-card-logo svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-light);
  fill: none;
  stroke-width: 1.5;
}

.brand-card-info {
  flex: 1;
}

.brand-card-info h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 4px;
}

.brand-card-info p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 10px;
}

.brand-card-badge {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 600;
  color: #4ade80;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .brands-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =====================================================
   ABOUT SECTION
===================================================== */
.about-section {
  padding: 100px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.about-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-desc:last-of-type {
  margin-bottom: 32px;
}

/* Timeline */
.about-timeline {
  position: relative;
  padding-left: 0;
}

.timeline-item {
  display: flex;
  gap: 20px;
  padding-bottom: 32px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: relative;
  flex-shrink: 0;
  margin-top: 4px;
}

.timeline-marker::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  display: block;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.timeline-marker::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 16px;
  width: 2px;
  height: calc(100% + 16px);
  background: linear-gradient(to bottom, var(--border-accent), transparent);
}

.timeline-marker--last::after {
  display: none;
}

.timeline-item:last-child .timeline-marker::after {
  display: none;
}

.timeline-content {
  flex: 1;
}

.timeline-date {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  margin-bottom: 6px;
}

.timeline-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 72px 0;
  }
}

/* =====================================================
   CONTACT SECTION
===================================================== */
.contact-section {
  padding: 100px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}

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

/* Info cards */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: var(--t);
}

.contact-info-card:hover {
  border-color: var(--border-accent);
}

.contact-info-card--wa {
  border-color: rgba(37, 211, 102, 0.15);
  background: rgba(37, 211, 102, 0.03);
}

.contact-info-card--wa:hover {
  border-color: rgba(37, 211, 102, 0.3);
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--border);
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  transition: var(--t);
}

.contact-info-card a:hover {
  color: var(--accent-light);
}

/* Contact form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-1);
  outline: none;
  transition: var(--t);
  resize: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-3);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
  background: var(--bg-1);
}

@media (max-width: 1000px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .contact-info {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .contact-section {
    padding: 72px 0;
  }
}

/* Map */
.contact-map {
  margin-top: 40px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
  position: relative;
}

.contact-map::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px var(--border);
  z-index: 1;
  pointer-events: none;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: invert(90%) hue-rotate(180deg) saturate(0.6) brightness(0.85);
}

@media (max-width: 600px) {
  .contact-map {
    height: 280px;
  }
}
