:root {
  --bg: #f5f8fc;
  --bg-alt: #eef3fa;
  --navy: #10213d;
  --ink-mute: #667895;
  --ice: #8da8ef;
  --violet: #aaa0f8;
  --mint: #72dcc2;
  --glass-border: rgba(130, 160, 220, 0.22);
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.7);
  --paper: #ffffff;
  --line: rgba(16, 33, 61, 0.1);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 10px 30px -14px rgba(58, 84, 140, 0.18);
  --shadow-lg: 0 40px 90px -30px rgba(30, 50, 100, 0.28);
  --glass-inner-edge: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  --side-pad: 64px;
}

@media (max-width: 900px) {
  :root {
    --side-pad: 40px;
  }
}

@media (max-width: 560px) {
  :root {
    --side-pad: 20px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--navy);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

html[dir="rtl"] body {
  font-family: "Scheherazade New", "Traditional Arabic", serif;
  line-height: 1.9;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(50% 38% at 88% -6%, rgba(141, 168, 239, 0.28), transparent 60%),
    radial-gradient(46% 36% at 4% 8%, rgba(170, 160, 248, 0.2), transparent 60%),
    radial-gradient(50% 40% at 10% 100%, rgba(114, 220, 194, 0.14), transparent 60%),
    var(--bg-alt);
}

.wrap {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.98;
  color: var(--navy);
  text-wrap: balance;
}

h1 em, h2 em {
  font-style: normal;
  color: var(--ink-mute);
}

p {
  margin: 0;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 3px;
  border-radius: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal, .float-chip, .live-dot, .decor {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none !important;
  }
}

/* ===== Decorative glass elements ===== */

.decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  animation: floaty-slow 9s ease-in-out infinite;
}

@keyframes floaty-slow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ===== Glass surface (shared) ===== */

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(32px) saturate(1.5);
  -webkit-backdrop-filter: blur(32px) saturate(1.5);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow), var(--glass-inner-edge);
}

@media (max-width: 640px) {
  .glass {
    backdrop-filter: blur(18px) saturate(1.3);
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
  }
}

/* ===== Header ===== */

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(44px) saturate(1.9);
  -webkit-backdrop-filter: blur(44px) saturate(1.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45) inset;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.topbar.scrolled {
  background: rgba(255, 255, 255, 0.28);
  border-bottom-color: var(--glass-border);
  box-shadow: var(--shadow), 0 1px 0 rgba(255, 255, 255, 0.45) inset;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  height: 72px;
  width: auto;
  display: block;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--navy);
  text-transform: none;
}

.foot-logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 10px;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-mute);
  transition: color 0.2s ease;
}

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

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.3s var(--ease), background 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  background: #1b2f54;
}

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

.lang-dropdown {
  position: relative;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.3s var(--ease);
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.lang-caret {
  font-size: 0.7rem;
  color: var(--ink-mute);
}

.lang-toggle[aria-expanded="true"] .lang-caret {
  transform: rotate(180deg);
}

.lang-menu[hidden] {
  display: none;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-start: 0;
  min-width: 100%;
  background: var(--glass-bg-strong);
  backdrop-filter: blur(32px) saturate(1.5);
  -webkit-backdrop-filter: blur(32px) saturate(1.5);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg), var(--glass-inner-edge);
  border-radius: var(--radius-sm);
  padding: 6px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lang-option {
  display: block;
  width: 100%;
  text-align: start;
  white-space: nowrap;
  padding: 9px 14px;
  border: none;
  background: transparent;
  border-radius: 8px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s ease;
}

.lang-option:hover {
  background: rgba(141, 168, 239, 0.18);
}

.lang-option.active {
  background: rgba(141, 168, 239, 0.28);
}

@media (max-width: 640px) {
  .topbar-inner {
    height: 76px;
    gap: 10px;
  }

  .brand-logo {
    height: 44px;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .nav-right {
    gap: 8px;
  }

  .lang-toggle {
    padding: 0 12px;
    min-height: 38px;
    font-size: 0.76rem;
  }

  .btn-cta {
    padding: 0 14px;
    min-height: 38px;
    font-size: 0.78rem;
  }
}

@media (max-width: 400px) {
  .brand-name {
    display: none;
  }
}

/* ===== Hero ===== */

.hero {
  padding: 90px 0 50px;
}

@media (max-width: 640px) {
  .hero {
    padding: 36px 0 40px;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 64px;
  align-items: center;
}

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

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ice);
  margin-bottom: 24px;
}

.kicker-line {
  width: 28px;
  height: 1.5px;
  background: var(--ice);
}

.hero-copy h1 {
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero-desc {
  color: var(--ink-mute);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 26px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 700;
  color: var(--navy);
  border-bottom: 2px solid var(--ice);
  padding-bottom: 2px;
  transition: gap 0.25s ease, color 0.25s ease;
}

.link-arrow:hover {
  gap: 10px;
  color: var(--ice);
}

.hero-stage {
  position: relative;
  padding: 34px;
}

.hero-mockup {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
  filter: drop-shadow(0 40px 70px rgba(30, 50, 100, 0.22));
}

.decor-hero-1 {
  width: 190px;
  top: -50px;
  inset-inline-end: -60px;
  opacity: 0.9;
}

.decor-hero-2 {
  width: 170px;
  bottom: -15px;
  inset-inline-start: -45px;
  opacity: 0.6;
  animation-delay: 1.8s;
}

@media (max-width: 640px) {
  .decor-hero-1 { width: 90px; }
  .decor-hero-2 { width: 110px; }
}

@media (max-width: 480px) {
  .decor-hero-1, .decor-hero-2 { display: none; }
}

.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-md);
  padding: 13px 17px;
  z-index: 2;
  animation: floaty 5s ease-in-out infinite;
}

.chip-top {
  top: 0;
  inset-inline-start: 0;
}

.chip-bottom {
  bottom: 0;
  inset-inline-end: 0;
  animation-delay: 1.4s;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.chip-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.float-chip b {
  display: block;
  font-size: 0.85rem;
}

.float-chip small {
  font-size: 0.72rem;
  color: var(--ink-mute);
}

@media (max-width: 480px) {
  .float-chip {
    display: none;
  }
}

/* ===== Section heads ===== */

section {
  position: relative;
  z-index: 0;
  padding: 130px 0;
}

.floor-bg::before,
.swirl-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-size: cover;
  background-repeat: no-repeat;
  mask-image: linear-gradient(to bottom, transparent, black 16%, black 84%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 16%, black 84%, transparent);
}

.floor-bg::before {
  background-image: url("../assets/floor-bg.jpg");
}

.hero.floor-bg::before {
  background-position: right bottom;
}

#process.floor-bg::before {
  background-position: left bottom;
  background-color: rgba(170, 160, 248, 0.04);
  background-blend-mode: multiply;
}

.contact-section.floor-bg::before {
  background-position: center bottom;
  background-color: rgba(114, 220, 194, 0.05);
  background-blend-mode: multiply;
}

.services-section.floor-bg::before {
  background-position: top right;
  background-color: rgba(141, 168, 239, 0.05);
  background-blend-mode: multiply;
}

.swirl-bg::before {
  background-image: url("../assets/bg-swirl.jpg");
  background-position: center;
}

.decor-process,
.decor-process-2,
.decor-services,
.decor-services-2,
.decor-showcase,
.decor-showcase-2,
.decor-why-2,
.decor-contact-1,
.decor-contact-2 {
  z-index: -1;
}

.decor-process {
  width: 320px;
  top: 0;
  inset-inline-end: -90px;
  opacity: 0.6;
}

.decor-process-2 {
  width: 170px;
  bottom: -20px;
  inset-inline-start: -60px;
  opacity: 0.5;
  animation-delay: 3.2s;
}

.decor-services {
  width: 260px;
  bottom: -30px;
  inset-inline-start: -80px;
  opacity: 0.55;
  animation-delay: 1.6s;
}

.decor-services-2 {
  width: 190px;
  top: 10px;
  inset-inline-end: -50px;
  opacity: 0.5;
  animation-delay: 0.8s;
}

.decor-showcase {
  width: 220px;
  top: -30px;
  inset-inline-start: -60px;
  opacity: 0.5;
  animation-delay: 2.6s;
}

.decor-showcase-2 {
  width: 180px;
  bottom: -20px;
  inset-inline-end: -50px;
  opacity: 0.45;
  animation-delay: 1.2s;
}

.decor-why-2 {
  width: 200px;
  bottom: 20px;
  inset-inline-start: -70px;
  opacity: 0.45;
  animation-delay: 3.6s;
}

.decor-podium {
  width: min(560px, 80%);
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.8;
  z-index: -1;
  animation: none;
}

@media (max-width: 640px) {
  .decor-podium {
    display: none;
  }
}

.decor-contact-1 {
  width: 150px;
  top: 10px;
  inset-inline-start: 2%;
  opacity: 0.5;
  animation-delay: 2s;
}

.decor-contact-2 {
  width: 160px;
  top: -10px;
  inset-inline-end: 3%;
  opacity: 0.45;
  animation-delay: 0.4s;
}

@media (max-width: 900px) {
  .decor-process, .decor-process-2, .decor-services, .decor-services-2,
  .decor-showcase, .decor-showcase-2, .decor-contact-1, .decor-contact-2 {
    display: none;
  }
}

.sec-head {
  max-width: 46ch;
  margin: 0 auto 64px;
  text-align: center;
}

.sec-head-left {
  max-width: 62ch;
  margin-bottom: 56px;
}

.eye {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 16px;
}

.sec-head h2, .sec-head-left h2 {
  font-size: clamp(2.1rem, 4.6vw, 4rem);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.sec-head p, .sec-head-left p {
  color: var(--ink-mute);
  font-size: 1.08rem;
  line-height: 1.75;
}

/* ===== Projects ===== */

.decor-projects {
  width: 220px;
  top: -30px;
  inset-inline-end: -60px;
  opacity: 0.5;
  z-index: -1;
}

.decor-projects-2 {
  width: 170px;
  bottom: -20px;
  inset-inline-start: -50px;
  opacity: 0.45;
  z-index: -1;
  animation-delay: 2.2s;
}

@media (max-width: 900px) {
  .decor-projects, .decor-projects-2 {
    display: none;
  }
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .project-grid {
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  }
}

.project-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: var(--radius-xl);
  padding: 40px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease);
}

.project-example {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.project-example-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.project-example-cell {
  position: relative;
  height: 190px;
}

.project-example-cell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-example-label {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(15, 20, 30, 0.55);
  color: white;
  backdrop-filter: blur(4px);
}

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

.project-icon {
  width: 84px;
  height: 84px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.project-info h3 {
  font-size: 1.5rem;
  text-transform: none;
  margin: 8px 0 12px;
}

.project-tag {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ice);
}

.project-info p {
  color: var(--ink-mute);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 18px;
}

.project-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.project-pills span {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}

@media (max-width: 640px) {
  .project-card {
    padding: 28px;
  }
}

/* ===== Process ===== */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

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

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

.step {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 46px;
  inset-inline-end: -20px;
  width: 20px;
  height: 1px;
  background: var(--glass-border);
}

@media (max-width: 800px) {
  .step:not(:last-child)::after {
    display: none;
  }
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(141, 168, 239, 0.28), rgba(170, 160, 248, 0.28));
}

.step-badge img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.step-illustration {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin: 4px 0 14px;
  filter: drop-shadow(0 18px 26px rgba(30, 50, 100, 0.22));
}

.step-n {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--glass-border);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-mute);
}

.step h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.step p {
  color: var(--ink-mute);
  font-size: 0.92rem;
  line-height: 1.65;
}


/* ===== Why WinGen ===== */

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

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

.why-card {
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: transform 0.3s var(--ease);
}

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

.why-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(141, 168, 239, 0.28), rgba(170, 160, 248, 0.28));
  margin-bottom: 16px;
}

.why-badge img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.why-illustration {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 18px 26px rgba(30, 50, 100, 0.22));
}

.why-card h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--ink-mute);
  font-size: 0.92rem;
  line-height: 1.65;
}

.decor-why {
  width: 240px;
  top: -20px;
  inset-inline-end: -70px;
  opacity: 0.55;
  z-index: -1;
}

@media (max-width: 900px) {
  .decor-why, .decor-why-2 {
    display: none;
  }
}

/* ===== Showcase ===== */

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.showcase-card {
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  text-align: center;
  transition: transform 0.3s var(--ease);
}

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

.showcase-card img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 22px;
  filter: drop-shadow(0 24px 40px rgba(30, 50, 100, 0.18));
}

.showcase-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ===== Services ===== */

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

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

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

.service-card {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

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

.service-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(141, 168, 239, 0.28), rgba(170, 160, 248, 0.28));
  margin-bottom: 14px;
}

.service-badge img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.service-illustration {
  display: block;
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 18px 26px rgba(30, 50, 100, 0.22));
}

.service-card h3 {
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.service-card p {
  color: var(--ink-mute);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===== Contact / CTA ===== */

.contact-section {
  padding-top: 0;
}

.cta-card {
  background: var(--glass-bg);
  backdrop-filter: blur(32px) saturate(1.5);
  -webkit-backdrop-filter: blur(32px) saturate(1.5);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg), var(--glass-inner-edge);
  border-radius: var(--radius-xl);
  padding: 90px 40px;
  text-align: center;
}

@media (max-width: 420px) {
  .cta-card {
    padding: 60px 18px;
  }
}

.cta-card h2 {
  font-size: clamp(2.2rem, 5.6vw, 4.4rem);
  text-transform: uppercase;
  margin-bottom: 34px;
}

.cta-card h2 em {
  color: var(--ice);
}

.cta-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.75);
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  transition: transform 0.3s var(--ease);
}

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

.cta-icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

@media (max-width: 640px) {
  .cta-email {
    font-size: 0.95rem;
    padding: 0 18px;
    gap: 8px;
    max-width: 100%;
  }

  .cta-icon {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 420px) {
  .cta-email {
    font-size: 0.72rem;
    padding: 0 14px;
  }

  .cta-icon {
    width: 20px;
    height: 20px;
  }
}

/* ===== Footer ===== */

footer {
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

.foot-brand p {
  color: var(--ink-mute);
  font-size: 0.88rem;
}

.foot-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.foot-links a {
  text-decoration: none;
  color: var(--ink-mute);
  font-size: 0.88rem;
  font-weight: 600;
}

.foot-links a:hover {
  color: var(--navy);
}

.foot-copy {
  color: var(--ink-mute);
  font-size: 0.82rem;
}
