/* ========================================
   HERO
======================================== */

.contact-hero {
  position: relative;

  min-height: 88vh;

  padding: 160px 7% 90px;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;

  overflow: hidden;

  color: white;

  background:
    radial-gradient(circle at 78% 24%, rgba(60,155,70,0.22), transparent 34%),
    radial-gradient(circle at 20% 78%, rgba(59,130,246,0.10), transparent 34%),
    linear-gradient(135deg, #020617 0%, #07111f 44%, #0f172a 100%);
}

.contact-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  opacity: 0.18;

  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);

  background-size: 44px 44px;

  mask-image:
    radial-gradient(circle at 72% 46%, black 18%, transparent 68%);

  pointer-events: none;
}

.contact-hero-content {
  position: relative;
  z-index: 3;

  max-width: 860px;
}

.contact-hero h1 {
  margin: 24px 0 30px;

  font-size: clamp(50px, 5.4vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.07em;

  color: white;
}

.contact-hero p {
  max-width: 760px;

  margin: 0 0 42px;

  color: #cbd5e1;

  font-size: 20px;
  line-height: 1.8;
}

/* ========================================
   HERO VISUAL
======================================== */

.contact-hero-visual {
  position: relative;

  min-height: 620px;
}

.contact-glow {
  position: absolute;

  inset: 120px;

  border-radius: 50%;

  background:
    radial-gradient(circle, rgba(60,155,70,0.24), transparent 62%);

  filter: blur(34px);
}

.contact-hero-icon {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 280px;

  transform:
    translate(-50%, -50%)
    rotate(-8deg);

  opacity: 0.16;

  filter:
    drop-shadow(0 0 44px rgba(60,155,70,0.28));
}

.contact-floating-card {
  position: absolute;

  width: 300px;

  padding: 28px;

  border-radius: 28px;

  background:
    rgba(255,255,255,0.06);

  border:
    1px solid rgba(255,255,255,0.10);

  backdrop-filter: blur(20px);

  box-shadow:
    0 34px 80px rgba(0,0,0,0.34);
}

.contact-floating-card strong {
  display: block;

  margin-bottom: 10px;

  color: white;

  font-size: 22px;
  letter-spacing: -0.04em;
}

.contact-floating-card span {
  color: #cbd5e1;

  font-size: 15px;
  line-height: 1.6;
}

.contact-floating-card.card-one {
  top: 90px;
  right: 70px;

  transform: rotate(-4deg);
}

.contact-floating-card.card-two {
  top: 280px;
  left: 20px;

  transform: rotate(5deg);
}

.contact-floating-card.card-three {
  bottom: 80px;
  right: 120px;

  transform: rotate(-3deg);
}

/* ========================================
   CONTACT PATHS
======================================== */

.contact-paths {
  padding: 120px 7%;

  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.contact-paths-header {
  max-width: 920px;

  margin: 0 auto 70px;

  text-align: center;
}

.contact-paths-header h2 {
  margin: 20px 0 24px;

  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.contact-paths-header p {
  max-width: 760px;

  margin: 0 auto;

  color: var(--muted);

  font-size: 18px;
  line-height: 1.8;
}

.contact-path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-path-card {
  position: relative;

  min-height: 320px;

  padding: 36px;

  overflow: hidden;

  border-radius: 30px;

  background: white;

  border:
    1px solid rgba(148,163,184,0.14);

  box-shadow:
    0 18px 50px rgba(15,23,42,0.05);

  transition:
    transform 0.45s cubic-bezier(.16,1,.3,1),
    box-shadow 0.45s cubic-bezier(.16,1,.3,1),
    border-color 0.45s cubic-bezier(.16,1,.3,1);
}

.contact-path-card:hover {
  transform: translateY(-8px);

  border-color:
    rgba(60,155,70,0.24);

  box-shadow:
    0 34px 90px rgba(15,23,42,0.10);
}

.contact-path-card::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(60,155,70,0.08),
      transparent 36%
    );

  opacity: 0;

  transition: opacity 0.35s ease;

  pointer-events: none;
}

.contact-path-card:hover::after {
  opacity: 1;
}

.contact-path-card.featured {
  color: white;

  background:
    radial-gradient(circle at top right, rgba(60,155,70,0.28), transparent 34%),
    linear-gradient(145deg, #0f172a, #111827);
}

.contact-path-card span {
  display: block;

  margin-bottom: 60px;

  color: var(--green);

  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.contact-path-card.featured span {
  color: #a7f3d0;
}

.contact-path-card h3 {
  margin: 0 0 16px;

  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.contact-path-card p {
  color: var(--muted);

  font-size: 16px;
  line-height: 1.75;
}

.contact-path-card.featured p {
  color: #cbd5e1;
}

/* ========================================
   CONTACT SECTION
======================================== */

.contact-section {
  padding: 120px 7%;

  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;

  background: white;
}

.contact-info h2 {
  margin: 22px 0 24px;

  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.contact-info p {
  color: var(--muted);

  font-size: 18px;
  line-height: 1.9;
}

.contact-cards {
  display: grid;
  gap: 16px;

  margin-top: 36px;
}

.contact-cards div {
  padding: 26px;

  border-radius: 26px;

  background:
    linear-gradient(180deg, #ffffff, #f8fafc);

  border:
    1px solid rgba(148,163,184,0.14);

  box-shadow:
    0 16px 40px rgba(15,23,42,0.04);
}

.contact-cards strong {
  display: block;

  margin-bottom: 8px;

  color: var(--navy);

  font-size: 16px;
}

.contact-cards a,
.contact-cards span {
  color: var(--muted);

  font-size: 16px;
  line-height: 1.6;
}

.contact-cards a:hover {
  color: var(--green);
}

.contact-panel {
  padding: 42px;

  border-radius: 36px;

  background:
    radial-gradient(circle at top right, rgba(60,155,70,0.10), transparent 34%),
    linear-gradient(180deg, #f8fafc, #ffffff);

  border:
    1px solid rgba(148,163,184,0.14);

  box-shadow:
    0 24px 70px rgba(15,23,42,0.06);
}

.contact-panel h3 {
  margin: 0 0 30px;

  color: var(--navy);

  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.inquiry-list {
  display: grid;
  gap: 16px;
}

.inquiry-list div {
  padding: 24px;

  border-radius: 22px;

  background: white;

  border:
    1px solid rgba(148,163,184,0.14);
}

.inquiry-list span {
  display: block;

  margin-bottom: 14px;

  color: var(--green);

  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.inquiry-list strong {
  display: block;

  margin-bottom: 8px;

  color: var(--navy);

  font-size: 18px;
}

.inquiry-list p {
  margin: 0;

  color: var(--muted);

  font-size: 15px;
  line-height: 1.7;
}

/* ========================================
   COMPANY CONTACT
======================================== */

.company-contact {
  position: relative;

  overflow: hidden;

  padding: 120px 7%;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;

  color: white;

  background:
    radial-gradient(circle at top right, rgba(60,155,70,0.18), transparent 34%),
    linear-gradient(180deg, #07111f 0%, #020617 100%);
}

.company-contact-bg {
  position: absolute;
  inset: 0;

  opacity: 0.08;

  background-image:
    radial-gradient(circle, rgba(255,255,255,0.9) 1px, transparent 1px);

  background-size: 30px 30px;
}

.company-contact-left,
.company-contact-grid {
  position: relative;
  z-index: 2;
}

.company-contact-left h2 {
  margin: 22px 0 24px;

  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.company-contact-left p {
  color: #cbd5e1;

  font-size: 18px;
  line-height: 1.9;
}

.company-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.company-contact-grid div {
  min-height: 160px;

  padding: 30px;

  border-radius: 28px;

  background:
    rgba(255,255,255,0.05);

  border:
    1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(18px);

  box-shadow:
    0 24px 70px rgba(0,0,0,0.22);
}

.company-contact-grid strong {
  display: block;

  margin-bottom: 10px;

  color: white;

  font-size: 18px;
}

.company-contact-grid span,
.company-contact-grid a {
  color: #cbd5e1;

  font-size: 15px;
  line-height: 1.7;
}

/* ========================================
   INTERNATIONAL CONTACT
======================================== */

.international-contact {
  padding: 120px 7%;

  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.international-contact-inner {
  max-width: 980px;
  margin: 0 auto;

  text-align: center;
}

.international-contact h2 {
  margin: 22px 0 24px;

  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.international-contact p {
  color: var(--muted);

  font-size: 18px;
  line-height: 1.9;
}

.international-tags {
  margin-top: 38px;

  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.international-tags span {
  padding: 12px 18px;

  border-radius: 999px;

  background:
    rgba(60,155,70,0.10);

  border:
    1px solid rgba(60,155,70,0.18);

  color: var(--green);

  font-size: 13px;
  font-weight: 900;
}

/* ========================================
   RESPONSE SECTION
======================================== */

.response-section {
  padding: 120px 7%;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;

  background: white;
}

.response-copy h2 {
  margin: 22px 0 24px;

  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.response-copy p {
  color: var(--muted);

  font-size: 18px;
  line-height: 1.9;
}

.response-steps {
  display: grid;
  gap: 18px;
}

.response-steps div {
  padding: 28px;

  display: flex;
  align-items: center;
  gap: 22px;

  border-radius: 28px;

  background:
    linear-gradient(180deg, #ffffff, #f8fafc);

  border:
    1px solid rgba(148,163,184,0.14);

  box-shadow:
    0 16px 40px rgba(15,23,42,0.04);
}

.response-steps span {
  width: 48px;
  height: 48px;

  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background:
    rgba(60,155,70,0.10);

  color: var(--green);

  font-size: 13px;
  font-weight: 900;
}

.response-steps strong {
  color: var(--navy);

  font-size: 18px;
  line-height: 1.4;
}

/* ========================================
   CTA
======================================== */

.cta {
  position: relative;

  overflow: hidden;

  padding: 120px 7%;

  color: white;

  text-align: center;

  background:
    radial-gradient(circle at top center, rgba(60,155,70,0.26), transparent 34%),
    linear-gradient(135deg, #0f172a, #020617);
}

.cta::before {
  content: "";

  position: absolute;

  inset: 18px;

  border-radius: 38px;

  border:
    1px solid rgba(255,255,255,0.08);

  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;

  max-width: 940px;
  margin: 0 auto;
}

.cta h2 {
  margin: 20px 0 24px;

  font-size: clamp(42px, 4.6vw, 68px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.cta p {
  max-width: 760px;

  margin: 0 auto 40px;

  color: #cbd5e1;

  font-size: 18px;
  line-height: 1.9;
}

.cta .hero-buttons {
  justify-content: center;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1200px) {

  .contact-hero,
  .contact-section,
  .company-contact,
  .response-section {
    grid-template-columns: 1fr;
  }

  .contact-path-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 950px) {

  .contact-path-grid,
  .company-contact-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {

  .contact-hero,
  .contact-paths,
  .contact-section,
  .company-contact,
  .international-contact,
  .response-section,
  .cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-hero {
    grid-template-columns: 1fr;

    min-height: auto;

    padding-top: 140px;
  }

  .contact-hero h1,
  .contact-paths-header h2,
  .contact-info h2,
  .company-contact-left h2,
  .international-contact h2,
  .response-copy h2,
  .cta h2 {
    line-height: 1.02;
  }

  .contact-hero h1 {
    font-size: clamp(42px, 10vw, 62px);
  }

  .contact-hero-visual {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

}