/* ============================================
   ADS Marketing Group | Custom Styles
   ============================================ */

:root {
  --navy: #0a1628;
  --navy-light: #142240;
  --navy-mid: #1c3054;
  --orange: #ff6b35;
  --orange-dark: #e55a28;
  --cream: #f5f0eb;
  --cream-dark: #e8e0d8;
  --white: #ffffff;
  --gray: #6b7280;
  --gray-light: #9ca3af;
  --text: #1a1a2e;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 12px 48px rgba(10, 22, 40, 0.18);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --dock-width: 72px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--orange-dark);
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--gray);
  font-size: 1.05rem;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: var(--white);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* ============================================
   Vertical Dock Navigation
   ============================================ */
.dock-nav {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(10, 22, 40, 0.94);
  padding: 14px 8px;
  border-radius: 0 var(--radius) var(--radius) 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: none;
  backdrop-filter: blur(10px);
}

.dock-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 56px;
  padding: 10px 6px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}

.dock-link:hover,
.dock-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.dock-link.active {
  color: var(--white);
  background: var(--orange);
}

.dock-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  line-height: 1;
}

.dock-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.dock-label {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity var(--transition), max-height var(--transition);
}

.dock-link:hover .dock-label,
.dock-link.active .dock-label {
  opacity: 1;
  max-height: 20px;
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px 80px calc(var(--dock-width) + 48px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(10, 22, 40, 0.75) 50%,
    rgba(255, 107, 53, 0.25) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) minmax(0, 0.85fr);
  gap: clamp(28px, 4vw, 52px);
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  align-items: center;
}

.hero-copy,
.hero-visual,
.hero-side {
  min-width: 0;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(255, 107, 53, 0.2);
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 50px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 24px;
}

.hero-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-highlights li {
  position: relative;
  padding-left: 22px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

.hero-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.hero-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

.hero-panel-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6);
  animation: hero-pulse 2s ease-out infinite;
}

@keyframes hero-pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.hero-panel-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 10px;
  background: rgba(10, 22, 40, 0.45);
  border-radius: var(--radius);
  text-align: center;
}

.hero-panel-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.hero-panel-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

.hero-panel-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 72px;
  padding: 12px 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-bar {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--orange) 0%, rgba(255, 107, 53, 0.35) 100%);
  transform-origin: bottom;
  animation: hero-bar-rise 1.2s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.hero-bar:nth-child(1) { animation-delay: 0.1s; }
.hero-bar:nth-child(2) { animation-delay: 0.2s; }
.hero-bar:nth-child(3) { animation-delay: 0.3s; }
.hero-bar:nth-child(4) { animation-delay: 0.4s; }
.hero-bar:nth-child(5) { animation-delay: 0.5s; }
.hero-bar:nth-child(6) { animation-delay: 0.6s; }

@keyframes hero-bar-rise {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.hero-platform {
  padding: 7px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(10, 22, 40, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-actions .btn {
  text-align: center;
  justify-content: center;
}

.hero-metrics {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-trust {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric-number {
  display: flex;
  align-items: baseline;
  line-height: 1;
}

.metric-value {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.metric-suffix {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  display: inline;
}

.metric-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Marquee */
.marquee {
  background: var(--orange);
  overflow: hidden;
  padding: 14px 0;
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  flex-shrink: 0;
}

.marquee-track span::after {
  content: "◆";
  margin-left: 48px;
  opacity: 0.5;
  font-size: 0.6rem;
  vertical-align: middle;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   About
   ============================================ */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-accent-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--navy);
  color: var(--white);
  padding: 24px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.accent-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.accent-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.about-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--gray);
  margin-bottom: 16px;
}

.about-highlights {
  list-style: none;
  margin-top: 24px;
}

.about-highlights li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 500;
}

.about-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ============================================
   Services | Bento Grid
   ============================================ */
.services {
  background: var(--cream);
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(255, 107, 53, 0.12);
  color: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
}

/* ============================================
   Why Choose Us
   ============================================ */
.why-us {
  background: var(--navy);
  color: var(--white);
}

.why-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.why-intro h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  color: var(--white);
  margin-bottom: 16px;
}

.why-intro > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-image img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--navy-light);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}

.why-card:hover {
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-2px);
}

.why-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 22, 40, 0.93),
    rgba(255, 107, 53, 0.85)
  );
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ============================================
   Contact
   ============================================ */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-info h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--gray);
  margin-bottom: 32px;
}

.contact-details {
  font-style: normal;
}

.contact-item {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--cream-dark);
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.contact-item strong,
.contact-item a,
.contact-item .contact-value {
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.5;
}

.contact-item a:hover {
  color: var(--orange);
}

/* Form */
.contact-form {
  background: var(--cream);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin-top: 16px;
  font-size: 0.9rem;
  text-align: center;
  min-height: 1.4em;
}

.form-note.success {
  color: #059669;
}

.form-note.error {
  color: #dc2626;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-menus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand img {
  height: 64px;
  width: auto;
  max-width: 320px;
  margin-bottom: 16px;
  background: var(--white);
  border-radius: 10px;
  padding: 6px 12px;
  display: inline-block;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 32ch;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-contact {
  text-align: right;
}

.footer-col-contact .footer-contact {
  align-items: flex-end;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--orange);
}

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  padding-top: 28px;
  opacity: 0.6;
}

/* ============================================
   Scroll Reveal Animation
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  .dock-nav {
    left: 50%;
    top: auto;
    bottom: 16px;
    transform: translateX(-50%);
    flex-direction: row;
    padding: 8px 10px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: auto;
    max-width: calc(100vw - 32px);
    justify-content: center;
    gap: 2px;
  }

  .dock-link {
    width: auto;
    min-width: 52px;
    padding: 8px 8px;
  }

  .dock-label {
    opacity: 1;
    max-height: 20px;
    font-size: 0.5rem;
  }

  .hero {
    padding: 60px 24px 100px;
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-visual {
    order: 2;
  }

  .hero-side {
    order: 3;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-metrics {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 28px;
  }

  .hero-trust {
    border-top: none;
    padding-top: 0;
  }

  body {
    padding-bottom: 72px;
  }

  .about-grid,
  .contact-grid,
  .why-header {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .services-bento {
    grid-template-columns: 1fr 1fr;
  }

  .why-cards {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer-menus {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand p {
    max-width: none;
    margin-inline: auto;
  }

  .footer-links,
  .footer-contact {
    align-items: center;
  }

  .footer-col-contact {
    text-align: center;
  }

  .footer-col-contact .footer-contact {
    align-items: center;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 70px 0;
  }

  .services-bento {
    grid-template-columns: 1fr;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-metrics {
    gap: 24px;
  }

  .hero-panel-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-panel-stat {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .about-accent-card {
    right: 12px;
    bottom: -16px;
    padding: 16px 24px;
  }

  .contact-form {
    padding: 24px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 320px;
  }
}
