*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Silver & Acid Palette */
  --bg: #fafafa;
  --surface: #f0f0f0;
  --text: #111111;
  --text-muted: #666666;
  --text-dim: #999999;
  --accent: #1c80f2;
  --accent-hover: #0b2740;
  --border: #e5e5e5;
  --border-light: #eeeeee;
  --white: #ffffff;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container: 1200px;
  --gap: 24px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "SF Pro Text",
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: -0.02em;
  overflow-x: hidden;
}

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

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

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

/* ===== Machined Silver Card System ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 var(--white);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover {
  transform: translateY(-2px);
}

/* ===== Acid Button System ===== */
.btn-acid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--bg);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition:
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.2s cubic-bezier(0.22, 1, 0.36, 1);
  user-select: none;
}

.btn-acid:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0px var(--text);
}

.btn-acid:active {
  transform: translateY(0);
  box-shadow: 1px 1px 0px var(--text);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition:
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.2s ease;
}

.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0px var(--text);
  border-color: var(--text);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 250, 250, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  /* border: 6px solid #fff;
  border-radius: 4px; */
}

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-logo-mark {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-mark svg {
  width: 16px;
  height: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta .btn-acid {
  padding: 10px 22px;
  font-size: 14px;
}

.nav-cta .btn-ghost {
  padding: 10px 22px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  position: relative;
  transition: background 0.2s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease;
}

.nav-toggle span::before {
  top: -7px;
}
.nav-toggle span::after {
  top: 7px;
}

.nav-toggle.active span {
  background: transparent;
}
.nav-toggle.active span::before {
  transform: rotate(45deg);
  top: 0;
}
.nav-toggle.active span::after {
  transform: rotate(-45deg);
  top: 0;
}

/* ===== SECTION 1: HERO ===== */
.hero {
  position: relative;
  padding: 170px 0 100px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
}

.hero h1 {
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.95;
  margin-bottom: 24px;
  color: var(--accent);
}

.hero-sub {
  max-width: 580px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.hero-stats strong {
  display: block;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 0px;
  color: var(--accent-hover);
}

.hero-stats span {
  color: var(--text-muted);
  font-size: 14px;
}

.hero-image {
  position: relative;
}

.image-card {
  border-radius: 24px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.image-card img {
  width: 100%;
  display: block;
}

.hero-bg-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(180px, 28vw, 420px);
  font-weight: 900;
  letter-spacing: -0.08em;
  color: #000;
  opacity: 0.03;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -180px;
  top: -180px;
  background: var(--accent);
  opacity: 0.08;
  border-radius: 50%;
  filter: blur(100px);
}

.hero::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  left: -150px;
  bottom: -150px;
  background: #111;
  opacity: 0.04;
  border-radius: 50%;
  filter: blur(100px);
}

/* Mobile */

@media (max-width: 900px) {
  .hero {
    padding-top: 120px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-sub {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-bg-text {
    font-size: 160px;
  }
}

/* Data Table inside dashboard */
.dashboard-table-area {
  grid-column: 1 / -1;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
}

.dash-table-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
}

.dash-table-header span {
  font-size: 14px;
  font-weight: 600;
}

.dash-table-header .dash-filter {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.dash-table {
  width: 100%;
}

.dash-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 100px;
  padding: 12px 20px;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
  font-size: 13px;
}

.dash-table-row.head {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(0, 0, 0, 0.015);
}

.dash-table-row:last-child {
  border-bottom: none;
}

.dash-cell {
  font-variant-numeric: tabular-nums;
}

.dash-cell-name {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-cell-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.dash-status {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}

.dash-status.active {
  background: #dcfce7;
  color: #166534;
}

.dash-status.pending {
  background: #fef3c7;
  color: #92400e;
}

.dash-status.draft {
  background: var(--surface);
  color: var(--text-muted);
}

/* ===== SECTION 2: SPEED METRICS ===== */
.metrics {
  padding: var(--section-pad) 0;
}

.metrics-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-align: center;
  margin-bottom: 56px;
}

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

.metric-item {
  text-align: center;
  padding: 48px 24px;
}

.metric-number {
  font-size: clamp(56px, 8vw, 88px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 12px;
}

.metric-number .metric-unit {
  font-size: 0.45em;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.02em;
}

.metric-number .metric-highlight {
  color: var(--text);
  background: var(--accent);
  padding: 0 6px;
  border-radius: 6px;
}

.metric-desc {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 500;
  max-width: 240px;
  margin: 0 auto;
}

.metric-divider {
  width: 1px;
  background: var(--border);
  margin: 24px 0;
  justify-self: center;
}

/* ===== SECTION 3: SERVICES ===== */
.services {
  padding: 0 0 clamp(48px, 6vw, 80px);
  margin-top: 80px;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.section-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  max-width: 600px;
  margin: 0 auto;
}

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

.bento-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.bento-card-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: inset 0 1px 0 var(--white);
}

.bento-card-icon img {
  max-width: 28px;
  max-height: 28px;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bento-card h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.bento-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.bento-card-visual {
  margin-top: 28px;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border-light);
}

.bento-card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* ===== SECTION 7: FOOTER ===== */

/* ===========================
   FOOTER
=========================== */

.footer {
  padding: 80px 0 40px;
  background: #fff;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1.4fr 1fr;
  gap: 70px;
  margin-bottom: 60px;
  align-items: start;
}

/*==========================
  COMPANY
==========================*/

.footer .nav-logo {
  display: inline-block;
}

.footer .nav-logo img {
  height: 100px;
  width: auto;
  display: block;
}

.footer-brand-desc {
  margin-top: 20px;
  max-width: 360px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

/*==========================
  COLUMN TITLES
==========================*/

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text);
  margin-bottom: 22px;
}

/* Bigger Contact Heading */

.footer-contact-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--text);
}

/*==========================
  LINKS
==========================*/

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: 0.25s ease;
}

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

/*==========================
  CONTACT
==========================*/

.footer-contact li {
  display: flex;
  align-items: center;
}

.footer-contact a {
  font-weight: 500;
}

/*==========================
  BOTTOM
==========================*/

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.footer-copy {
  font-size: 14px;
  color: var(--text-dim);
}

/*==========================
  SOCIAL ICONS
==========================*/

.footer-bottom-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
}

.footer-bottom-links li {
  margin: 0;
}

.footer-bottom-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
}

.footer-bottom-links img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: 0.7;
}

.footer-bottom-links a:hover img {
  opacity: 1;
}

/*==========================
  TABLET
==========================*/

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }
}

/*==========================
  MOBILE
==========================*/

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand-desc {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-bottom-links {
    gap: 14px;
  }
}

/* ===== SECTION 5: FAQ ===== */
.faq {
  padding: var(--section-pad) 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-controls {
  max-width: 720px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.faq-ctrl-btn {
  padding: 7px 16px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 var(--white);
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.faq-ctrl-btn:hover {
  color: var(--text);
  border-color: #ccc;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 var(--white);
  overflow: hidden;
  transition: border-color 0.25s ease;
}

.faq-item.open {
  border-color: #cccccc;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  line-height: 1.4;
}

.faq-question:hover {
  color: var(--text);
}

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.2s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  border-color: var(--accent);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== SECTION 6: CTA BANNER ===== */
.cta-banner {
  padding: var(--section-pad) 0;
  background: #f4f5f9;
}

.cta-banner-inner {
  position: relative;
  overflow: hidden;

  border-radius: 24px;
  padding: clamp(56px, 8vw, 96px) clamp(32px, 5vw, 72px);

  background:
    linear-gradient(rgba(15, 39, 71, 0.82), rgba(15, 39, 71, 0.82)),
    url("../images/cta-bg.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  text-align: center;
}

.cta-banner-inner::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.08;
  filter: blur(80px);
  pointer-events: none;
}

.cta-banner-inner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.06;
  filter: blur(60px);
  pointer-events: none;
}

.cta-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-banner-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 2px;
}

.cta-banner h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  /* color: var(--white); */
  max-width: 800px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;

  background: linear-gradient(
    90deg,
    #00aeef 0%,
    /* Cyan */ #ec008c 33%,
    /* Magenta */ #fff200 66%,
    /* Yellow */ #ffffff 100% /* Black */
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-acid {
  padding: 16px 40px;
  font-size: 16px;
}

.btn-dark-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.02em;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  cursor: pointer;
  transition:
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn-dark-ghost:hover {
  transform: translateY(-2px);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100dvh - 64px);
    background: var(--bg);
    padding: 80px 24px;
    gap: 24px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 999;
    border-top: 1px solid var(--border);
  }

  .nav-links.open a {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
  }

  .hero {
    padding-top: 120px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .metric-divider {
    width: 60px;
    height: 1px;
    margin: 0 auto;
  }

  .metric-item {
    padding: 32px 24px;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dash-table-row {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .dash-table-row .dash-cell:nth-child(4),
  .dash-table-row .dash-cell:nth-child(5) {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cta-banner-actions {
    flex-direction: column;
  }

  .cta-banner .btn-acid,
  .btn-dark-ghost {
    width: 100%;
    max-width: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===========================
   ABOUT
=========================== */

.about {
  position: relative;
  overflow: hidden;
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, #0b2740 0%, #245b95 100%);
  color: #fff;

  border-radius: 32px 32px 0 0;

  /* margin: 80px auto; */
}

.about::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  top: -220px;
  right: -180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(100px);
}

.about::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  left: -180px;
  bottom: -180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  filter: blur(90px);
}

.about .container {
  position: relative;
  z-index: 2;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* IMAGE */

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.35);
}

/* FLOATING CARD */

.about-card {
  position: absolute;
  right: -25px;
  bottom: 40px;
  background: #fff;
  color: #111;
  border-radius: 18px;
  padding: 24px 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.about-card h3 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  color: #111;
}

.about-card span {
  color: #666;
  font-size: 14px;
}

/* CONTENT */

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.about-content h2 {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: #fff;
}

.about-content p {
  color: rgba(255, 255, 255, 0.78) !important;
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
}

/* FEATURES */

.about-features {
  margin: 42px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature {
  display: flex;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.feature:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--accent);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.feature h4 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #fff;
}

.feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.7;
}

/* BUTTON */

.about .btn-acid {
  margin-top: 10px;
}

/* ===========================
   TABLET
=========================== */

@media (max-width: 992px) {
  .about-grid {
    gap: 50px;
  }
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {
  .about {
    padding: 80px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image {
    order: 1;
  }

  .about-content {
    order: 2;
    text-align: center;
  }

  .about-features {
    text-align: left;
  }

  .about-card {
    right: 20px;
    bottom: 20px;
    padding: 18px 22px;
  }

  .about-card h3 {
    font-size: 34px;
  }
}

/*==========================
        WORKS
==========================*/

.works {
  padding: var(--section-pad) 0;
  background: #f4f5f9;
}

.works-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.works-nav {
  display: flex;
  gap: 12px;
}

.works-nav button {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 20px;
}

.works-nav button:hover {
  background: var(--accent);
  color: #000;
}

.works-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.works-slider::-webkit-scrollbar {
  display: none;
}

.work-card {
  min-width: 420px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.work-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.work-content {
  padding: 24px;
}

.work-content h3 {
  margin-bottom: 6px;
}

.work-content p {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.work-content span {
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 768px) {
  .works-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .work-card {
    min-width: 85%;
  }

  .work-card img {
    height: 240px;
  }
}

/* ===========================
   CONTACT PAGE
=========================== */

.contact-page {
  padding: 0 0 100px;
  /* background: var(--surface); */
}

.contact-page .section-header {
  margin-bottom: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 40px;
  margin-top: 20px;
}

/*==========================
  FORM CONTAINER
==========================*/

.contact-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

/*==========================
  CONTACT FORM
==========================*/

.contact-form {
  padding: 40px;
}

.contact-form h3 {
  font-size: 30px;
  margin-bottom: 30px;
  letter-spacing: -0.03em;
}

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

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

.form-group label {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  font: inherit;
  transition: border-color 0.25s ease;
}

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form .btn-acid {
  margin-top: 24px;
}

/*==========================
  RIGHT COLUMN
==========================*/

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/*==========================
  INFO CARD
==========================*/

.contact-info-card {
  /* background: var(--surface); */
  /* border: 1px solid var(--border); */
  /* border-radius: 20px; */
  padding: 28px;
  /* box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05); */

  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 var(--white);
}

.contact-info-card h4 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text);
  font-weight: 700;
}

.contact-info-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 15px;
}

.contact-info-card a {
  color: var(--text-muted);
  text-decoration: none;
}

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

/*==========================
  RESPONSIVE
==========================*/

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

@media (max-width: 768px) {
  .contact-page {
    padding-bottom: 80px;
  }

  .contact-form {
    padding: 30px;
  }

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

  .contact-info-card {
    padding: 24px;
  }
}

/* ===========================
   PAGE HERO
=========================== */

.page-hero {
  padding: 120px 0 80px;
  text-align: center;
}

.page-hero-content {
  max-width: 760px;
  margin: auto;
}

.page-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  margin: 20px 0;
  letter-spacing: -0.05em;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.8;
}

/* ===========================
   STORY
=========================== */

.about-story {
  padding: 100px 0;
  /* background: #00aeef; */

  background: linear-gradient(0deg, #00aeef 0%, #245b95 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
}

.about-content h2 {
  font-size: 46px;
  margin: 18px 0 24px;
}

.about-content p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

/* ===========================
   MISSION
=========================== */

.mission {
  padding: 80px 0 80px;
  background: #ec008c;
  /* background: linear-gradient(180deg, #ec008c 0%, #fff 100%); */
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mission-card {
  /* background: #fff; */
  background: linear-gradient(180deg, #ffffff 0%, #ffffff18 100%);
  /* border: 1px solid var(--border); */
  border-radius: 22px;
  padding: 40px;
}

.mission-card h3 {
  font-size: 30px;
  margin-bottom: 18px;
}

.mission-card p {
  color: #fff;
  line-height: 1.8;
}

/* ===========================
   WHY US
=========================== */

.why-us {
  padding: 100px 0;
  /* background: #ffde21; */
  background: linear-gradient(180deg, #ffde21 0%, #fff 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

.why-card h3 {
  margin-bottom: 14px;
}

.why-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===========================
   TIMELINE
=========================== */

.timeline {
  padding: 100px 0;
  background: linear-gradient(0deg, #6b6f78 0%, #35383f 100%);
  color: var(--accent);
}

.timeline-list {
  max-width: 900px;
  margin: 60px auto 0;
  color: #fff;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.timeline-item span {
  font-size: 24px;
  font-weight: 700;
}

.timeline-item p {
  color: #fff;
  line-height: 1.8;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 992px) {
  .about-grid,
  .mission-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 90px 0 60px;
  }

  .about-grid,
  .mission-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-content h2 {
    font-size: 36px;
  }
}

/*==========================
SERVICES PAGE
==========================*/

.services-page {
  padding: 100px 0;
  background: #ccc;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 100px;
}

.service-row.reverse .service-image {
  order: 2;
}

.service-row.reverse .service-content {
  order: 1;
}

.service-image img {
  width: 100%;
  display: block;
  border-radius: 22px;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.service-content h2 {
  font-size: 42px;
  margin: 18px 0 24px;
  line-height: 1.15;
}

.service-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-content ul {
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.service-content li {
  color: var(--text-muted);
}

/*==========================
WHY SERVICES
==========================*/

.why-services {
  padding: 100px 0;
  background: #f8fafc;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
}

.why-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.why-card p {
  color: var(--text-muted);
  line-height: 1.7;
}

/*==========================
RESPONSIVE
==========================*/

@media (max-width: 992px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }

  .service-row.reverse .service-image,
  .service-row.reverse .service-content {
    order: initial;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .services-page {
    padding: 70px 0;
  }

  .service-content h2 {
    font-size: 34px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}
