:root {
  --nav-bg: #0e1a34;
  --bg-main: #f7f9fc;
  --bg-soft: #d3d7db;
  --bg-section: #ffffff;
  --text: #0f172a;
  --muted: #5f6b7a;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.12);
  --white: #ffffff;
  --shadow-sm: 0 8px 22px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.08);
  --radius: 20px;
  --container: 1180px;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 24%),
    linear-gradient(180deg, #eef4fb 0%, #f7f9fc 35%, #f2f6fb 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 42px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* SECTION BASE */
.section {
  position: relative;
  padding: 110px 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 40px));
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--line-strong) 15%,
    var(--line-strong) 85%,
    transparent 100%
  );
}

.section-title {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-title span {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 16px;
  letter-spacing: -0.8px;
}

.section-title p {
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.03rem;
}

/* HERO */
.hero {
  position: relative;
  padding: 95px 0 90px;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.10), transparent 18%),
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.05), transparent 22%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 56px;
}

.hero-text h1 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.03;
  margin-bottom: 22px;
  letter-spacing: -1.4px;
}

.hero-text p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
  margin-bottom: 34px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 22px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 600;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--text);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #1e293b;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.hero-panel-card {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 24px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero-panel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.10);
}

.panel-line {
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: var(--primary);
  margin-bottom: 16px;
}

.hero-panel-card p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

/* HOME SERVICES */
.home-services {
  background: rgba(255, 255, 255, 0.42);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.12);
}

.service-card h3 {
  font-size: 1.22rem;
  margin-bottom: 14px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.8;
}

.section-action {
  text-align: center;
  margin-top: 34px;
}

/* CTA */
.cta {
  background: transparent;
}

.cta-box {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #0f172a 0%, #14213d 100%);
  color: var(--white);
  border-radius: 28px;
  padding: 56px 34px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.cta-label {
  display: inline-block;
  margin-bottom: 16px;
  color: #bfdbfe;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.cta-box p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.cta-box .btn {
  position: relative;
  z-index: 1;
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    min-height: auto;
    padding: 16px 0;
    flex-direction: column;
    gap: 14px;
  }

  .nav {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    min-height: auto;
    padding: 70px 0 60px;
  }

  .section {
    padding: 84px 0;
  }

  .hero-text h1 {
    font-size: 2.45rem;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .service-card,
  .hero-panel-card,
  .cta-box {
    padding: 24px;
  }
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .navbar {
    min-height: 76px;
    padding: 14px 0;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .logo {
    justify-self: start;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #0b1220;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.3s ease;
  }

  .nav.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    width: 100%;
    padding: 14px 12px;
    border-radius: 12px;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.active {
    background: rgba(255, 255, 255, 0.06);
  }

  .hero {
    min-height: auto;
    padding: 70px 0 60px;
  }

  .section {
    padding: 84px 0;
  }

  .hero-text h1 {
    font-size: 2.45rem;
  }
}

/* SERVICES PAGE */
.page-hero {
  position: relative;
  padding: 100px 0 70px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 20%),
    linear-gradient(180deg, #eef4fb 0%, #f7f9fc 100%);
}

.page-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-text h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -1.2px;
}

.page-hero-text p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.services-detail {
  background: rgba(255, 255, 255, 0.42);
}

.service-block {
  padding: 46px 0;
  border-bottom: 1px solid var(--line);
}

.service-block:first-child {
  padding-top: 0;
}

.service-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-block-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

.service-block-top h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.2;
}

.service-block-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.service-block-text p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.9;
}

.service-list-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.service-list-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
}

.service-list-card li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  line-height: 1.7;
}

.service-list-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

@media (max-width: 900px) {
  .service-block-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 80px 0 55px;
  }

  .service-block {
    padding: 34px 0;
  }

  .service-block-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .page-hero-text h1 {
    font-size: 2.3rem;
  }
}

/* PRICING PAGE */
.pricing-hero {
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 22%),
    linear-gradient(180deg, #eef4fb 0%, #f7f9fc 100%);
}

.pricing-plans,
.pricing-services {
  background: rgba(255, 255, 255, 0.42);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.14);
}

.pricing-card-featured {
  border: 1px solid rgba(37, 99, 235, 0.22);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08);
  position: relative;
}

.pricing-card-top {
  margin-bottom: 24px;
}

.pricing-label {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.pricing-card h3 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 10px;
}

.price strong {
  font-size: 2.3rem;
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 3px;
}

.custom-price strong {
  font-size: 1.55rem;
  line-height: 1.2;
}

.pricing-subtext {
  color: var(--muted);
  line-height: 1.7;
}

.pricing-features {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 26px;
  flex: 1;
}

.pricing-features li {
  position: relative;
  padding-left: 22px;
  line-height: 1.7;
  color: var(--text);
}

.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

.price-list {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}

.price-row:last-child {
  border-bottom: none;
}

.price-row span {
  color: var(--text);
  line-height: 1.6;
}

.price-row strong {
  white-space: nowrap;
  font-size: 1.02rem;
}

.pricing-note {
  max-width: 900px;
  margin: 18px auto 0;
  color: var(--muted);
  text-align: center;
  line-height: 1.8;
}

@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .price-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 22px;
  }

  .price-row strong {
    white-space: normal;
  }

  .pricing-card {
    padding: 24px;
  }

  .price strong {
    font-size: 2rem;
  }
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 14px;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

/* FOOTER */
.footer {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 20px;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
}

.footer-col h4 {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.footer-col p {
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  transition: 0.3s;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-logo {
  height: 40px;
  margin-bottom: 14px;
}

.whatsapp-link {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #25d366;
  color: white;
  font-weight: 500;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 16px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 10px;
  }

  .footer-col a {
    margin-bottom: 8px;
  }
}

/* CONTACT PAGE */
.contact-hero {
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 22%),
    linear-gradient(180deg, #eef4fb 0%, #f7f9fc 100%);
}

.contact-page {
  background: rgba(255, 255, 255, 0.42);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.section-kicker {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -0.8px;
}

.contact-info > p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.04rem;
  max-width: 640px;
  margin-bottom: 30px;
}

.contact-points {
  display: grid;
  gap: 16px;
}

.contact-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-point h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.contact-point p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-card {
  background: linear-gradient(135deg, #0f172a 0%, #16233f 100%);
  color: var(--white);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.contact-card-label {
  display: inline-block;
  color: #bfdbfe;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.contact-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.12;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.contact-card > p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.contact-card-details {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
  position: relative;
  z-index: 1;
}

.contact-detail-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-detail-row span {
  color: rgba(255, 255, 255, 0.72);
}

.contact-detail-row strong {
  color: var(--white);
  text-align: right;
}

.contact-whatsapp-btn {
  width: 100%;
  background: #25d366;
  color: #ffffff;
  box-shadow: none;
  position: relative;
  z-index: 1;
}

.contact-whatsapp-btn:hover {
  background: #20ba59;
  transform: translateY(-2px);
}

.contact-mini-text {
  margin-top: 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  position: relative;
  z-index: 1;
}

/* CONTACT STRIP */
.contact-strip {
  background: transparent;
}

.contact-strip-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 44px 30px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 26px;
  box-shadow: var(--shadow-md);
}

.contact-strip-box h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.12;
  margin-bottom: 14px;
}

.contact-strip-box p {
  max-width: 680px;
  margin: 0 auto 24px;
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-card,
  .contact-strip-box {
    padding: 24px;
  }

  .contact-detail-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-detail-row strong {
    text-align: left;
  }
}

/* ABOUT PAGE */
.about-hero {
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 22%),
    linear-gradient(180deg, #eef4fb 0%, #f7f9fc 100%);
}

.about-story,
.about-values {
  background: rgba(255, 255, 255, 0.42);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -0.8px;
}

.about-text p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.04rem;
  margin-bottom: 18px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-highlight-card {
  background: linear-gradient(135deg, #0f172a 0%, #16233f 100%);
  color: var(--white);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
  position: relative;
  overflow: hidden;
}

.about-highlight-card::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.about-card-label {
  display: inline-block;
  color: #bfdbfe;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.about-highlight-card h3 {
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.about-highlight-list {
  display: grid;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.about-highlight-item {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-highlight-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.about-highlight-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.about-highlight-item p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.about-value-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.about-value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.12);
}

.about-value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.about-value-card p {
  color: var(--muted);
  line-height: 1.8;
}

.about-cta {
  background: transparent;
}

@media (max-width: 980px) {
  .about-layout,
  .about-values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-highlight-card,
  .about-value-card {
    padding: 24px;
  }

  .about-highlight-card h3 {
    font-size: 1.7rem;
  }
}