:root {
  --primary: #25a9e0;
  --primary-dark: #0f5f8f;
  --primary-deep: #0b3f63;
  --primary-soft: #eaf8ff;
  --white: #ffffff;
  --cyan-soft: #dff7ff;
  --silver: #f4f7fb;
  --slate: #5c6b7a;
  --text: #102132;
  --border: rgba(25, 109, 154, 0.12);
  --shadow: 0 20px 50px rgba(10, 52, 82, 0.1);
  --shadow-soft: 0 10px 30px rgba(12, 64, 99, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1200px;
  --default-color: #25a9e0;
  --accent-color: #102132;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fafdff 0%, #ffffff 100%);
  overflow-x: hidden;
}

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

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

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 998;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

/* ===== HEADER ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(14, 95, 143, 0.08);
}

.topbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(10, 52, 82, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand,
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 0;
}

.brand img,
.logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
  min-width: 0;
}

.logo-text h1 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.2px;
}

.logo-text span {
  margin-top: 4px;
  font-size: 10px;
  color: var(--slate);
  opacity: 0.9;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  line-height: 1.15;
}

.navmenu,
.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.navmenu a,
.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 8px;
  margin: 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: #28485e;
  transition: all 0.3s ease;
}

.navmenu a:hover,
.navmenu a.active,
.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-dark);
}

.navmenu a::after,
.nav-links a::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #148cc0);
  transition: width 0.3s ease;
}

.navmenu a:hover::after,
.navmenu a.active::after,
.nav-links a:hover::after,
.nav-links a.active::after {
  width: calc(100% - 16px);
}

.nav-arrow {
  display: none;
  font-size: 18px;
  color: var(--primary);
  line-height: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
  flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.35s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #148cc0);
  color: white;
  box-shadow: 0 18px 35px rgba(37, 169, 224, 0.28);
}

.btn-primary:hover {
  color: white;
  box-shadow: 0 24px 42px rgba(37, 169, 224, 0.34);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(37, 169, 224, 0.2);
  color: var(--primary-deep);
}

.btn-secondary:hover {
  background: var(--primary-soft);
  transform: translateY(-2px);
}

/* ===== MOBILE NAV BUTTONS ===== */
.menu-toggle,
.mobile-nav-toggle,
.mobile-nav-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 14px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.menu-toggle:hover,
.mobile-nav-toggle:hover,
.mobile-nav-close:hover {
  border-color: rgba(37, 169, 224, 0.35);
  transform: translateY(-2px);
}

.navmenu-top,
.mobile-menu-actions {
  display: none;
}

/* ===== GENERIC SECTION ===== */
section {
  padding: 30px 0;
}

.section-head {
  max-width: 95%;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  color: #1edfc7;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
     
    padding: 6px 16px;
    background:  var(--primary);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.why-section-tag {
  color: var(--white) !important;
}

.section-head h2 {
  font-family: "Rakkas", serif;
  margin: 0;
  font-size: clamp(1rem, 3vw, 2.5rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.section-head p {
  margin: 18px 0 0;
  color: var(--slate);
  line-height: 1.9;
  font-size: 1.06rem;
}

/* ===== LAYOUT GRIDS ===== */
.about-grid,
.why-grid,
.contact-grid,
.process-grid,
.premium-grid {
  display: grid;
  gap: 30px;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.services-grid,
.why-grid,
.partners-grid,
.trust-strip-grid {
  display: grid;
  gap: 22px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.trust-strip-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stat-card,
.glass-card,
.service-card,
.feature-card,
.step,
.contact-card,
.placeholder-box,
.why-card,
.showcase-card,
.trust-item {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
}

.service-card,
.why-card,
.feature-card,
.contact-card,
.trust-item {
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.step {
  padding: 11px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card::before,
.why-card::before,
.feature-card::before {
  content: "";
  position: absolute;
  inset: auto -30px -60px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 169, 224, 0.14), transparent 68%);
}

.service-card:hover,
.why-card:hover,
.feature-card:hover,
.step:hover,
.contact-card:hover,
.trust-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(37, 169, 224, 0.24);
}

.service-badge,
.why-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(37, 169, 224, 0.22);
  margin-bottom: 18px;
}

.service-card h3,
.why-card h3,
.feature-card h3,
.contact-card h3,
.step h3,
.trust-item h3 {
  margin: 0;
  font-size: 1.26rem;
  font-weight: 800;
}

.service-card p,
.why-card p,
.feature-card p,
.contact-card p,
.step p,
.about-copy p,
.premium-copy p,
.trust-item p {
  color: var(--slate);
  line-height: 1.85;
  margin: 14px 0 0;
}

.about-copy,
.premium-copy {
  padding-right: 14px;
}

.feature-stack {
  display: grid;
  gap: 18px;
}

.feature-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.step-list {
  display: grid;
  gap: 18px;
}

.step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.step-number {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-weight: 900;
  box-shadow: 0 18px 26px rgba(37, 169, 224, 0.25);
}

.premium-band {
  background: linear-gradient(135deg, #0a3f63 0%, #0f5f8f 58%, #20a7dd 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.premium-band::before,
.premium-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(8px);
}

.premium-band::before {
  width: 280px;
  height: 280px;
  top: -80px;
  right: -60px;
}

.premium-band::after {
  width: 220px;
  height: 220px;
  bottom: -80px;
  left: -60px;
}

.premium-grid {
  position: relative;
  z-index: 1;
}

.premium-copy p {
  color: rgba(255, 255, 255, 0.85);
}

.premium-copy .section-tag {
  color: rgba(255, 255, 255, 0.8);
}

.premium-copy h2 {
  font-family: "Rakkas", serif;
  margin: 0;
  font-size: clamp(1rem, 3vw, 2.5rem);
}

.trust-strip {
  padding: 40px 0 20px;
}

.trust-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.trust-item i {
  font-size: 28px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-box {
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-cards {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.contact-card small {
  color: var(--slate);
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-card strong {
  font-size: 1.12rem;
  line-height: 1.7;
  display: block;
  word-break: break-word;
}

.image-note {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: var(--primary-soft);
  color: var(--primary-deep);
  font-weight: 600;
  line-height: 1.8;
  border: 1px dashed rgba(37, 169, 224, 0.28);
}

.footer {
  padding: 32px 0 42px;
  border-top: 1px solid rgba(14, 95, 143, 0.08);
  background: white;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--slate);
  font-size: 0.95rem;
}

.footer strong {
  color: #25a9e0;
}

.reveal-line {
  overflow: hidden;
  display: inline-block;
}

.reveal-line span {
  display: inline-block;
  animation: riseIn 1.1s ease both;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c35f, #16a34a);
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 18px 32px rgba(22, 163, 74, 0.28);
  animation: pulseGlow 2.4s infinite;
}

.tilt-card {
  transition: transform 0.4s ease;
}

.tilt-card:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-4deg) translateY(-6px);
}

.floating-mini {
  position: absolute;
  right: -18px;
  bottom: 24px;
  width: min(270px, 72%);
  padding: 20px;
  border-radius: 24px;
  background: white;
  border: 1px solid rgba(11, 63, 99, 0.08);
  box-shadow: 0 24px 50px rgba(4, 49, 76, 0.15);
  animation: floatY 4s ease-in-out infinite;
}

.floating-mini .mini-title {
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mini-pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary-deep);
  font-size: 0.83rem;
  font-weight: 700;
}

.glass-card {
  padding: 18px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 255, 0.86));
  box-shadow: var(--shadow);
}

.showcase-card {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f2fbff 100%);
}

.showcase-banner {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  color: white;
  padding: 26px;
}

.showcase-banner h3,
.showcase-banner p {
  margin: 0;
}

.showcase-banner p {
  margin-top: 10px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.placeholder-box {
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(37, 169, 224, 0.1), rgba(255, 255, 255, 0.95)),
    repeating-linear-gradient(
      45deg,
      rgba(37, 169, 224, 0.08),
      rgba(37, 169, 224, 0.08) 12px,
      rgba(255, 255, 255, 0.92) 12px,
      rgba(255, 255, 255, 0.92) 24px
    );
  text-align: center;
  color: var(--primary-deep);
  font-weight: 700;
}

.placeholder-box span {
  display: block;
  color: var(--slate);
  font-size: 0.95rem;
  margin-top: 8px;
  font-weight: 500;
}

.hero-premium {
  position: relative;
  padding: 24px 0 64px;
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(25, 214, 190, 0.08), transparent 22%),
    radial-gradient(circle at left center, rgba(37, 169, 224, 0.08), transparent 24%),
    linear-gradient(180deg, #eef7fb 0%, #f6fbff 45%, #f9fcff 100%);
}

.hero h2 {
  font-family: "Rakkas", serif;
  font-size: clamp(1rem, 3vw, 2.5rem);
  line-height: 1.04;
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.about-premium-content h2 {
  font-family: "Rakkas", serif;
  margin: 0;
  font-size: clamp(1rem, 3vw, 2.5rem);
  line-height: 1.04;
  font-weight: 900;
  color: #ffffff;
  max-width: 760px;
  letter-spacing: 0.03em;
}

.hero-premium-wrap {
  position: relative;
  z-index: 2;
}

.hero-bg-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero-blur-1 {
  width: 340px;
  height: 340px;
  top: 60px;
  left: -100px;
  background: rgba(37, 169, 224, 0.12);
}

.hero-blur-2 {
  width: 280px;
  height: 280px;
  top: 20px;
  right: -80px;
  background: rgba(46, 230, 214, 0.08);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 90%);
  pointer-events: none;
}

.hero-premium-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-premium-title {
  font-family: "Rakkas", serif;
  font-size: clamp(1rem, 3vw, 2.5rem);
  line-height: 1.04;
  color: #102132;
  margin: 0;
  letter-spacing: 0.01em;
}

.hero-premium-text {
  max-width: 760px;
  margin: 16px auto 0;
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--slate);
}

.hero-premium-actions {
  justify-content: center;
  margin-top: 32px;
}

.hero-showcase-wrap {
  position: relative;
  max-width: 980px;
  margin: 24px auto 0;
}

.hero-showcase-card {
  position: relative;
  border-radius: 28px;
  overflow: visible;
  padding: 0 0 30px;
  background: transparent;
  transform-style: preserve-3d;
  transition: transform 0.25s ease;
}

.hero-showcase-card::before {
  content: "";
  position: absolute;
  inset: 40px -30px -20px;
  background: radial-gradient(circle, rgba(28, 226, 204, 0.14), transparent 60%);
  filter: blur(30px);
  z-index: -1;
}

.hero-showcase-image-wrap {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.hero-showcase-image {
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.6s ease;
}

.hero-showcase-card:hover .hero-showcase-image {
  transform: scale(1.05);
}

.hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.14)),
    radial-gradient(circle at top right, rgba(28, 226, 204, 0.1), transparent 24%);
  pointer-events: none;
}
.logo-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.logo-mark img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.since-text {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.06em;
}




.hero-floating-card {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 250px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(37, 169, 224, 0.12);
  box-shadow: 0 18px 40px rgba(4, 23, 34, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: floatCard 4s ease-in-out infinite;
  z-index: 3;
}

.hero-floating-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

.hero-floating-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--slate);
  line-height: 1.6;
}

.floating-card-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 1rem;
}

.floating-card-left {
  left: -24px;
  top: 96px;
}

.floating-card-right {
  right: -24px;
  bottom: 112px;
  animation-delay: 1.2s;
}

.premium-header {
  border-bottom: 1px solid rgba(37, 169, 224, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.premium-header .logo-text h1 {
  color: #ffffff;
}

.premium-header .logo-text span {
  color: rgba(255, 255, 255, 0.72);
}

.premium-nav-shell {
  margin-top: 18px;
  margin-bottom: 12px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  border: 1px solid rgba(37, 169, 224, 0.12);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.premium-header .navmenu a,
.premium-header .nav-links a {
  color: rgba(255, 255, 255, 0.82);
}

.premium-header .navmenu a:hover,
.premium-header .navmenu a.active,
.premium-header .nav-links a:hover,
.premium-header .nav-links a.active {
  color: #2ee6d6;
}

.hero-pill-btn {
  background: linear-gradient(180deg, #fafdff 0%, #ffffff 100%);
  color: #041319;
  box-shadow: 0 18px 35px rgba(28, 226, 204, 0.24);
}

.hero-pill-btn:hover {
  background: linear-gradient(180deg, #fafdff 0%, #ffffff 100%);
  color: #041319;
  box-shadow: 0 22px 42px rgba(28, 226, 204, 0.34);
}

.premium-eyebrow {
  background: rgba(255, 255, 255, 0.06);
  color: #8cefe6;
  border: 1px solid rgba(46, 230, 214, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-cta-primary {
  background: linear-gradient(135deg, #1ce2cc, #19d6aa);
  color: #05151a;
  font-weight: 800;
  box-shadow: 0 20px 40px rgba(28, 226, 204, 0.22);
}

.hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(28, 226, 204, 0.3);
}

.hero-cta-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(46, 230, 214, 0.26);
  color: #ffffff;
}

body.modal-open {
  overflow: hidden !important;
}

.custom-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow-y: auto;
  padding: 40px 20px;
}

.custom-modal.active {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.modal-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #fff;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  margin: auto;
  animation: modalUp 0.35s ease;
}

.modal-content {
  padding: 40px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #f1f5f9;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s ease;
}

.modal-close:hover {
  background: #e2e8f0;
  transform: scale(1.05);
}

.modal-content h2 {
  margin: 0 0 10px;
  font-family: "Rakkas", serif;
  font-size: clamp(1rem, 3vw, 2.5rem);
  color: #1e293b;
  line-height: 1.1;
}

.modal-content p {
  margin: 0 0 25px;
  color: #64748b;
  line-height: 1.8;
}

#modalForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-input input,
.form-input select,
.form-input textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: 0.3s ease;
  background: #fff;
  color: var(--text);
}

.form-input input:focus,
.form-input select:focus,
.form-input textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(37, 169, 224, 0.1);
}

.form-input textarea {
  resize: vertical;
  min-height: 110px;
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary), #148cc0);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
  font-family: inherit;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #1f9bcf, #0f7fb0);
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(37, 169, 224, 0.22);
}

.form-input.has-error input,
.form-input.has-error select,
.form-input.has-error textarea {
  border-color: #d92d20;
  box-shadow: 0 0 0 4px rgba(217, 45, 32, 0.08);
}

.form-error {
  margin-top: 6px;
  color: #d92d20;
  font-size: 0.85rem;
  font-weight: 600;
}

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

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

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 195, 95, 0.34), 0 18px 32px rgba(22, 163, 74, 0.24);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(34, 195, 95, 0), 0 18px 32px rgba(22, 163, 74, 0.24);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 195, 95, 0), 0 18px 32px rgba(22, 163, 74, 0.24);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(110%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes modalUp {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (max-width: 1199px) {
  .logo-mark img {
    height: 48px;
  }

  .since-text {
    font-size: 9px;
  }
}

@media (max-width: 767px) {
  .logo-mark img {
    height: 40px;
  }

  .since-text {
    font-size: 8px;
  }
}

@media (max-width: 575px) {
  .logo-mark img {
    height: 35px;
  }

  .since-text {
    font-size: 7px;
  }
}
@media (max-width: 1399px) {
  .header-inner {
    gap: 10px;
  }

.brand img,
.logo img {
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

  .logo-text h1 {
    font-size: 18px;
  }

  .logo-text span {
    font-size: 9px;
    letter-spacing: 0.7px;
    max-width: 170px;
  }

  .navmenu a,
  .nav-links a {
    margin: 0 4px;
    padding: 10px 6px;
    font-size: 14px;
  }

  .header-actions {
    gap: 8px;
  }

  .btn {
    padding: 11px 18px;
    font-size: 13px;
  }
}

@media (max-width: 1199px) {
  .header-inner {
    min-height: 74px;
    gap: 8px;
  }

  .brand {
    flex: 1;
  }

  .brand img,
  .logo img {
    height: 48px;
  }

  .logo-text h1 {
    font-size: 17px;
  }

  .logo-text span {
    font-size: 8px;
    letter-spacing: 0.5px;
    max-width: 135px;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle,
  .mobile-nav-toggle {
    display: inline-flex;
  }

  .header-actions {
    gap: 6px;
    margin-left: 12px;
  }

  .btn {
    padding: 8px 14px;
    font-size: 12px;
  }

  .navmenu,
  .nav-links {
    position: fixed;
    top: 16px;
    right: 16px;
    width: min(360px, calc(100% - 32px));
    height: calc(100vh - 32px);
    margin-left: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 18px 18px 24px;
    transform: translateX(115%);
    transition: transform 0.35s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  }

  .navmenu.open,
  .nav-links.open {
    transform: translateX(0);
  }

  .navmenu-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 10px;
  }

  .mobile-nav-close {
    display: inline-flex;
  }

  .navmenu a,
  .nav-links a {
    width: 100%;
    margin: 0;
    padding: 14px 14px;
    font-size: 16px;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    justify-content: space-between;
  }

  .navmenu a:hover,
  .navmenu a.active,
  .nav-links a:hover,
  .nav-links a.active {
    color: var(--text);
    border-color: rgba(37, 169, 224, 0.35);
    background: var(--primary-soft);
  }

  .navmenu a::after,
  .nav-links a::after {
    display: none;
  }

  .nav-arrow {
    display: inline-flex;
  }

  .premium-nav-shell {
    margin-top: 10px;
    margin-bottom: 8px;
    border-radius: 18px;
    padding: 12px 16px;
  }

  .premium-header .navmenu,
  .premium-header .nav-links {
    border: 1px solid rgba(46, 230, 214, 0.12);
  }

  .premium-header .navmenu a,
  .premium-header .nav-links a {
    color: var(--text);
    background: #fff;
    border-color: rgba(15, 95, 143, 0.12);
  }

  .premium-header .navmenu a:hover,
  .premium-header .navmenu a.active,
  .premium-header .nav-links a:hover,
  .premium-header .nav-links a.active {
    border-color: rgba(37, 169, 224, 0.35);
    color: var(--text);
    background: var(--primary-soft);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .process-grid,
  .premium-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .about-copy,
  .premium-copy {
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  .brand img,
  .logo img {
    height: 45px;
  }

  .logo-text h1 {
    font-size: 16px;
  }

  .logo-text span {
    font-size: 8px;
    max-width: 118px;
  }

  .header-actions {
    gap: 5px;
  }

  .menu-toggle,
  .mobile-nav-toggle,
  .mobile-nav-close {
    width: 40px;
    height: 40px;
  }

  .hero-premium {
    padding: 18px 0 54px;
  }

  .hero-premium-title {
    font-size: clamp(2.1rem, 6vw, 3.2rem);
  }

  .hero-premium-text {
    font-size: 0.98rem;
  }

  .hero-showcase-wrap {
    margin-top: 18px;
  }

  .hero-showcase-image {
    height: 320px;
  }

  .hero-floating-card {
    width: 220px;
    padding: 14px;
  }

  .floating-card-left {
    left: -8px;
    top: 82px;
  }

  .floating-card-right {
    right: -8px;
    bottom: 96px;
  }
}

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

  .floating-mini {
    position: static;
    width: 100%;
    margin-top: 18px;
    animation: none;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .custom-modal {
    padding: 20px 10px;
  }

  .modal-box {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

  .modal-content {
    padding: 30px 20px;
  }

  .modal-content h2 {
    font-size: 24px;
    padding-right: 30px;
  }
}

@media (max-width: 767px) {
  .header-inner {
    gap: 6px;
  }

  .brand img,
  .logo img {
    height: 40px;
  }

  .logo-text h1 {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo-text span {
    font-size: 7px;
    max-width: 100px;
  }

  .navmenu,
  .nav-links {
    top: 12px;
    right: 12px;
    width: calc(100% - 24px);
    height: calc(100vh - 24px);
    border-radius: 20px;
  }

  .hero-premium {
    padding: 14px 0 40px;
  }

  .hero-premium-content {
    max-width: 100%;
  }

  .hero-premium-title {
    font-size: 2rem;
    line-height: 1.08;
  }

  .hero-premium-text {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 100%;
    padding: 0 6px;
  }

  .hero-showcase-wrap {
    margin-top: 16px;
  }

  .hero-showcase-card {
    padding-bottom: 0;
  }

  .hero-showcase-image {
    height: 240px;
  }

  .hero-floating-card {
    position: static;
    width: 100%;
    margin-top: 14px;
    animation: none;
  }

  .hero-stats-bar {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    margin-top: 14px;
    border-radius: 18px;
  }

  .hero-stat-item {
    padding: 18px 14px;
  }

  .hero-stat-item:not(:last-child)::after {
    display: none;
  }

  .hero-stat-value {
    font-size: 1.8rem;
  }

  .hero-stat-label {
    font-size: 0.9rem;
  }
}

@media (max-width: 575px) {
  html,
  body {
    overflow-x: hidden;
  }

  .brand {
    flex: 1;
  }

  .brand img,
  .logo img {
    height: 35px;
  }

  .logo-text h1 {
    font-size: 15px;
  }

  .btn {
    padding: 6px 10px;
    font-size: 11px;
  }

  .menu-toggle,
  .mobile-nav-toggle,
  .mobile-nav-close {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
  .custom-modal {
    padding: 12px 8px;
  }

  .modal-content {
    padding: 24px 16px;
  }

  .modal-content h2 {
    font-size: 22px;
  }

  .form-input input,
  .form-input select,
  .form-input textarea {
    padding: 13px 14px;
    font-size: 15px;
  }

  .submit-btn {
    padding: 14px;
    font-size: 15px;
  }

  .hero-premium {
    padding: 10px 0 34px;
  }

  .hero-premium-title {
    font-size: 1.75rem;
    line-height: 1.1;
  }

  .hero-premium-text {
    font-size: 0.9rem;
  }

  .hero-showcase-image-wrap {
    border-radius: 20px;
  }

  .hero-showcase-image {
    height: 215px;
  }

  .hero-floating-card {
    gap: 12px;
    border-radius: 16px;
    padding: 12px;
  }

  .floating-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .hero-floating-card h3 {
    font-size: 0.95rem;
  }

  .hero-floating-card p {
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .hero-stats-bar {
    border-radius: 16px;
  }

  .hero-stat-value {
    font-size: 1.65rem;
  }

  .hero-stat-label {
    font-size: 0.86rem;
  }
}

/* =====================================================
   Stats bar — small-screen grid.
   5 items → row 1: 3 items (33.333% each), row 2: 2 items (50% each).
   Also forces position: relative so the bar no longer overlaps the hero image.
   Applies to all viewports below the `md` Bootstrap breakpoint (≤767.98px).
   ===================================================== */
@media (max-width: 767.98px) {
  /* Drop the absolute overlap from the desktop layout. */
  .hero-stats-bar {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    width: 100% !important;
    margin-top: 18px;
  }

  /* Items 1–3: 3 per row. */
  .hero-stats-bar > .row > .hero-stat-item:nth-child(-n+3) {
    flex: 0 0 33.3333%;
    max-width: 33.3333%;
    width: 33.3333%;
  }

  /* Items 4 & 5: 2 per row in the second row. */
  .hero-stats-bar > .row > .hero-stat-item:nth-child(n+4):nth-child(-n+5) {
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
  }

  /* Hide vertical separators — they look wrong when columns aren't equal width. */
  .hero-stat-item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .navbar {
    padding: 14px 0;
  }

  .btn {
    width: 100%;
  }

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

  .contact-box {
    padding: 24px;
  }

  .placeholder-box {
    min-height: 230px;
  }

  .premium-eyebrow {
    font-size: 0.82rem;
  }
}

.about-premium-section {
  background: linear-gradient(135deg, #20a7dd 0%, #0f5f8f 58%, #0a3f63 100%);
  position: relative;
  overflow: hidden;
}

.about-premium-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0b3f63;
  opacity: 0.35;
  pointer-events: none;
}

.about-premium-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-premium-visual-wrap {
  position: relative;
  padding-top: 34px;
}

.visual-tag {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
  margin: 0;
}

.about-premium-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  color: #1edfc7;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
     
    padding: 6px 16px;
    background: 
 color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.about-premium-visuals-overlap {
  position: relative;
  min-height: 620px;
}

.about-visual {
  position: absolute;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
}

.about-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-visual-main {
  top: 40px;
  left: 0;
  width: 68%;
  height: 480px;
  z-index: 1;
}

.about-visual-secondary {
  right: 0;
  bottom: 20px;
  width: 52%;
  height: 300px;
  z-index: 2;
  border: 6px solid #081018;
  transform: rotate(-2deg);
}

.about-exp-card.about-exp-floating {
  position: absolute;
  top: 110px;
  right: 20px;
  width: 190px;
  min-height: 220px;
  z-index: 3;
  border-radius: 22px;
  background: linear-gradient(135deg, #1edfc7, #25a9e0);
  color: #04161d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 26px 22px;
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.18),
    0 0 40px rgba(37, 169, 224, 0.18);
}

.about-exp-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.about-exp-icon i {
  font-size: 1.35rem;
}

.about-exp-floating h3 {
  margin: 0 0 10px;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
}

.about-exp-floating p {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.about-premium-content {
  color: #ffffff;
}

.about-premium-content h2 {
  font-family: "Rakkas", serif;
  margin: 0;
  font-size: clamp(1rem, 3vw, 2.5rem);
  line-height: 1.08;
  font-weight: 900;
  color: #ffffff;
  max-width: 760px;
}

.about-premium-line {
  width: 76px;
  height: 4px;
  border-radius: 999px;
  margin: 26px 0 28px;
  background: linear-gradient(90deg, #1edfc7, #25a9e0);
}

.about-premium-content p {
  font-size: 1.04rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.74);
  margin: 0 0 14px;
}

.about-premium-lead {
  color: rgba(255, 255, 255, 0.88) !important;
}

.about-premium-points {
  margin-top: 28px;
  display: grid;
  gap: 0;
}

.about-point-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-point-item:last-child {
  border-bottom: none;
}

.about-point-number {
  font-size: 2rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(30, 223, 199, 0.7);
}

.about-point-item p {
  margin: 0;
  color: #ffffff;
  font-size: 1.06rem;
  line-height: 1.7;
  font-weight: 500;
}

.about-premium-btn {
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border: 1px solid #1edfc7;
  border-radius: 8px;
  color: #1edfc7;
  font-size: 1.08rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.about-premium-btn:hover {
  background: #1edfc7;
  color: #04161d;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .about-premium-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-premium-content h2 {
    max-width: 100%;
  }

  .about-premium-visual-wrap {
    padding-top: 0;
  }

  .visual-tag {
    position: relative;
    top: auto;
    left: auto;
    margin: 0 0 18px 0;
    display: inline-flex;
  }

  .about-premium-visuals-overlap {
    min-height: 500px;
  }

  .about-visual-main {
    top: 20px;
    left: 0;
    width: 72%;
    height: 360px;
  }

  .about-visual-secondary {
    right: 0;
    bottom: 10px;
    width: 50%;
    height: 220px;
  }

  .about-exp-card.about-exp-floating {
    top: 90px;
    right: 10px;
    width: 150px;
    min-height: 170px;
    padding: 18px 14px;
  }

  .about-exp-floating h3 {
    font-size: 2rem;
  }

  .about-exp-floating p {
    font-size: 0.9rem;
  }
}

@media (max-width: 767px) {
  .about-premium-visuals-overlap {
    min-height: 420px;
  }

  .about-visual-main {
    top: 16px;
    left: 0;
    width: 74%;
    height: 280px;
  }

  .about-visual-secondary {
    right: 0;
    bottom: 8px;
    width: 52%;
    height: 170px;
    border-width: 4px;
  }

  .about-exp-card.about-exp-floating {
    top: 72px;
    right: 8px;
    width: 130px;
    min-height: 145px;
    border-radius: 18px;
    padding: 14px 10px;
  }

  .about-exp-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 10px;
  }

  .about-exp-floating h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
  }

  .about-exp-floating p {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .about-premium-tag {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    padding: 9px 12px;
  }

  .about-point-item {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 8px 0;
  }

  .about-point-number {
    font-size: 1.6rem;
  }

  .about-point-item p {
    font-size: 0.98rem;
  }

  .about-premium-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-premium-visuals-overlap {
    min-height: 350px;
  }

  .about-visual-main {
    width: 76%;
    height: 220px;
  }

  .about-visual-secondary {
    width: 54%;
    height: 140px;
    bottom: 0;
  }

  .about-exp-card.about-exp-floating {
    top: 58px;
    right: 6px;
    width: 112px;
    min-height: 120px;
    padding: 12px 8px;
  }

  .about-exp-floating h3 {
    font-size: 1.25rem;
  }

  .about-exp-floating p {
    font-size: 0.7rem;
  }

  .about-premium-content p {
    font-size: 0.95rem;
  }
}

.services-section {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

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

.why-processes-section {
  position: relative;
  background: url("../images/services/team.png") no-repeat center center;
  background-size: cover;
  background-attachment: scroll;
}

@media (max-width: 991px) {
  .why-processes-section {
    background-position: center top;
    background-size: cover;
  }
}

@media (max-width: 767px) {
  .why-processes-section {
    background-position: center center;
    background-size: cover;
  }
}

@media (max-width: 767px) {
  .why-processes-section {
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #f7fbff;
  }
}

.service-card {
  position: relative;
  padding: 0 0 24px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(25, 109, 154, 0.12);
  box-shadow: 0 12px 30px rgba(12, 64, 99, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(10, 52, 82, 0.14);
  border-color: rgba(37, 169, 224, 0.22);
}

.service-image {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.service-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 25, 37, 0.04), rgba(6, 25, 37, 0.12));
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.06);
}

.service-trust {
  display: inline-block;
  margin: 16px 24px 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--primary-soft);
  padding: 8px 12px;
  border-radius: 999px;
}

.service-badge {
  position: relative;
  margin: -26px 24px 16px;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 26px rgba(37, 169, 224, 0.24);
  z-index: 2;
}

.service-card h3 {
  margin: 0 24px 10px;
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--text);
}

.service-card p {
  margin: 0 24px;
  color: var(--slate);
  line-height: 1.8;
  font-size: 0.96rem;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .service-image {
    height: 220px;
  }
}

.why-process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: stretch;
}

.why-process-intro,
.why-process-steps {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  border-radius: 24px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.why-process-intro {
  position: relative;
  background: linear-gradient(135deg, #20a7dd 0%, #0f5f8f 58%, #0a3f63 100%);
  overflow: hidden;
}

.why-process-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/services/team.png") no-repeat center;
  background-size: cover;
  opacity: 0.15; 
  z-index: 0;
}

.why-process-intro > * {
  position: relative;
  z-index: 1;
}

.why-process-steps {
  background: rgba(255, 255, 255, 0.88);
}

.why-process-steps .step-list {
  flex: 1;
}

.why-process-intro h2 {
  font-family: "Rakkas", serif;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.08;
  color: var(--text);
}

.why-process-lead {
  margin: 18px 0 0;
  color: var(--white);
  line-height: 1.9;
  font-size: 1.02rem;
}

.why-process-points {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

.why-process-point {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(25, 109, 154, 0.1);
}

.why-process-point:last-child {
  border-bottom: none;
}

.why-process-point h3 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--text);
}

.why-process-point p {
  margin: 10px 0 0;
  color: var(--white);
  line-height: 1.8;
}

.modern-step-list {
  margin-top: 8px;
  display: grid;
  gap: 16px;
}

.modern-step-list .step {
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.why-process-steps .section-tag {
  margin-bottom: 18px;
}

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

@media (max-width: 767px) {
  .why-process-intro,
  .why-process-steps {
    padding: 24px;
  }

  .why-process-point {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }

  .why-process-point h3 {
    font-size: 1.02rem;
  }

  .why-process-point p {
    font-size: 0.95rem;
  }
}

.partners-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: scrollPartners 28s linear infinite;
}

.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}

@keyframes scrollPartners {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.partner-card {
  flex: 0 0 auto;
  min-width: 180px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 18px;
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.partner-card img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.partner-card:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-premium-section {
  background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

.contact-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.contact-top-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--primary);
  border-radius: 22px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(37, 169, 224, 0.24);
}

.contact-info-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 16px 28px rgba(37, 169, 224, 0.22);
}

.contact-info-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}

.contact-info-card p {
  margin: 0;
  color: var(--slate);
  line-height: 1.7;
  font-size: 0.95rem;
}

.contact-info-card a {
  color: inherit;
}

.contact-bottom-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.contact-form-wrap,
.contact-map-wrap {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  padding: 28px;
  height: 100%;
}

.contact-panel-head h3 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text);
}

.contact-panel-head p {
  margin: 10px 0 0;
  color: var(--slate);
  line-height: 1.8;
}

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

.contact-premium-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-premium-form .form-group {
  margin-bottom: 16px;
}

.contact-premium-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.contact-premium-form .form-control {
  width: 100%;
  border: 1px solid rgba(15, 95, 143, 0.14);
  background: #fff;
  color: var(--text);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.contact-premium-form .form-control:focus {
  border-color: rgba(37, 169, 224, 0.6);
  box-shadow: 0 0 0 4px rgba(37, 169, 224, 0.1);
}

.contact-premium-form textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-submit-wrap {
  margin-top: 8px;
}
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 26px;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-showcase-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.8s ease-in-out, transform 0.6s ease;
  transform: scale(1.01);
}

.hero-showcase-image.active {
  opacity: 1;
}

.hero-showcase-card:hover .hero-showcase-image.active {
  transform: scale(1.05);
}

.contact-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #148cc0);
  color: #fff;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 18px 35px rgba(37, 169, 224, 0.22);
}

.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(37, 169, 224, 0.28);
}

.contact-map-box {
  margin-top: 22px;
  border-radius: 22px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(15, 95, 143, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.contact-map-box iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
}

@media (max-width: 1100px) {
  .contact-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-bottom-grid {
    grid-template-columns: 1fr;
  }
}

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

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

  .contact-form-wrap,
  .contact-map-wrap {
    padding: 22px;
  }

  .contact-map-box,
  .contact-map-box iframe {
    min-height: 320px;
  }
}

.footer {
  background: linear-gradient(180deg, #07131d 0%, #081018 100%);
  color: rgba(255, 255, 255, 0.78);
  padding: 70px 0 0;
}

.footer-brand .footer-logo {
  height: 54px;
  width: auto;
}


.footer-brand h4 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-brand span {
  display: block;
  margin-top: 6px;
  margin-bottom: 14px;
  color: #25a9e0;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-brand p,
.footer-links ul li a {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  font-size: 0.96rem;
}

.footer-social {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-social li {
  margin: 0;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease,
    border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  outline: none;
}

.footer-social a[aria-label*="LinkedIn"]:hover,
.footer-social a[aria-label*="LinkedIn"]:focus-visible {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #ffffff;
}

.footer-social a[aria-label*="Facebook"]:hover,
.footer-social a[aria-label*="Facebook"]:focus-visible {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
}

.footer-social a[aria-label*="Instagram"]:hover,
.footer-social a[aria-label*="Instagram"]:focus-visible {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 50%, #8134af 100%);
  border-color: transparent;
  color: #ffffff;
}

.footer-social a[aria-label*="WhatsApp"]:hover,
.footer-social a[aria-label*="WhatsApp"]:focus-visible {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1;
  font-size: 0.96rem;
}

.footer-links h5,
.footer-contact h5 {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 800;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-contact a:hover {
  color: #1edfc7;
}

.footer-bottom {
  margin-top: 40px;
  padding: 18px 0;
  border-top: 1px solid var(--text);
}

.footer-bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-copy {
  margin: 0;
  font-size: 14px;
  color: var(--default-color);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-copy .sitename {
  font-weight: 600;
  color: #25a9e0;
}

.footer-copy a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--default-color);
  text-decoration: none;
  font-weight: 400;
  font-size: inherit;
  line-height: 1;
  transition: 0.3s ease;
}

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

.footer-copy img {
  height: 19px;
  width: auto;
  transform: translateY(1px);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

@media (max-width: 767px) {
  .footer {
    text-align: center;
  }

  .footer-logo-mark {
    align-items: center !important;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-copy {
    justify-content: center;
  }
}

/* ===== FINAL MODAL IMAGE FIX ===== */
.modal-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #fff;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  margin: auto;
  animation: modalUp 0.35s ease;
}

.modal-image {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary));
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 768px) {
  .modal-box {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .modal-image {
    height: auto;
    max-height: 260px;
    background: #eef6fb;
  }

  .modal-image img {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: contain;
    object-position: center;
  }

  .modal-content {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .modal-image {
    max-height: 220px;
  }

  .modal-image img {
    max-height: 220px;
  }

  .modal-content {
    padding: 24px 16px;
  }
}

.footer-logo-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 12px;
}

.footer-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.footer-since {
  margin-top: 4px;
  font-size: 10px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.06em;
  line-height: 1;
}
@media (max-width: 767px) {
  .footer-logo {
    height: 48px;
  }

  .footer-since {
    font-size: 9px;
  }
}


    /* Banner Flash Highlights */
        .flash-banner {
            background: linear-gradient(90deg, #ee9b00, #ca6702);
            color: #fff;
            padding: 12px;
            text-align: center;
            font-weight: bold;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .flash-badge {
            background-color: #005f73;
            color: #fff;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.85rem;
            animation: pulse 1.5s infinite alternate;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            100% { transform: scale(1.05); }
        }

        /* Loan Section Styling */
        .loans-section {
            padding: 50px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 30px;
            color: #0d3b66;
        }

        .tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .tab-button {
            padding: 12px 24px;
            border: none;
            background-color: #e0e0e0;
            color: #333;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            border-radius: 5px 5px 0 0;
            transition: all 0.3s ease;
        }

        .tab-button:hover {
            background-color: #0d3b66;
            color: #fff;
        }

        .tab-button.active {
            background-color: #0d3b66;
            color: #fff;
            border-bottom: 3px solid #f4d35e;
        }

        .tab-content {
            display: none;
            background: #fff;
            padding: 30px;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .tab-content.active {
            display: block;
        }

        .loan-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 2px solid #f4f7f6;
            padding-bottom: 15px;
            margin-bottom: 25px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .loan-title {
            color: #0d3b66;
            font-size: 1.8rem;
        }

        .rate-badge {
            background-color: #e9d8a6;
            color: #005f73;
            padding: 6px 12px;
            border-radius: 4px;
            font-weight: bold;
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .card {
            background:linear-gradient(135deg, #0a3f63 0%, #0f5f8f 58%, #20a7dd 100%);
            color: #fff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .card h3 {
            border-bottom: 2px solid #0a9396;
            padding-bottom: 10px;
            margin-bottom: 15px;
            color: #e9d8a6;
            font-size: 1.3rem;
        }

        .card ul {
            list-style: none;
        }

        .card ul li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            font-size: 0.95rem;
        }

        .card ul li::before {
            content: "★";
            position: absolute;
            left: 0;
            color: #f4d35e;
        }
		
		

.hero-showcase, 
.hero-showcase-image {
  touch-action: pan-y;
  user-select: none;
}	

@media (max-width: 991px) {

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }


  .hero-title {
    font-size: 2.25rem;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 1rem;
    max-width: 100%;
  }


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

  .btn {
    width: 100%;
    max-width: 320px;
  }


  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }

  .hero-stat-value {
    font-size: 1.75rem;
  }


  .hero-showcase {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
  }

  .hero-showcase-image {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-stat-item {
    width: 100%;
    text-align: center;
  }
}


@media (max-width: 991px) {
  .flash-banner {
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: normal !important;
    line-height: 1.3 !important;
    max-height: calc(1.3em * 2 + 16px) !important; 
    padding: 8px 12px !important;
  }


  .flash-banner .flash-badge,
  .flash-banner span,
  .flash-banner a {
    display: inline !important;
    animation: none !important;
  }
}

.career-cta {
  margin-top: 22px;
}

.career-banner {
  display: flex;
  justify-content: center;
}

.career-banner-link {
  display: inline-block;
  line-height: 0;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
}

.career-banner-img {
  display: block;
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 18px;
  transform-origin: center bottom;
  animation: careerBounce 2.2s ease-in-out infinite;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.career-banner-link:hover .career-banner-img {
  animation-play-state: paused;
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

@keyframes careerBounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  20% {
    transform: translateY(-12px) scale(1.02, 0.98);
  }
  40% {
    transform: translateY(0) scale(0.98, 1.02);
  }
  55% {
    transform: translateY(-6px) scale(1.01, 0.99);
  }
  70% {
    transform: translateY(0) scale(1, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .career-banner-img {
    animation: none;
  }
}

/* =====================================================
   Join Our Team (career.html) page styles
   Reuses the index design system: --primary, --slate,
   --accent-color, --border, --shadow, --radius-xl,
   Rakkas / Outfit fonts.
   ===================================================== */

.career-hero {
  position: relative;
  padding: 120px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(25, 214, 190, 0.10), transparent 22%),
    radial-gradient(circle at left center, rgba(37, 169, 224, 0.10), transparent 24%),
    linear-gradient(180deg, #eef7fb 0%, #f6fbff 45%, #f9fcff 100%);
  text-align: center;
}

.career-hero-wrap {
  position: relative;
  z-index: 2;
}

.career-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}

.career-hero-content {
  max-width: 100%;
  margin: 0;
  text-align: left;
}

.career-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #148cc0);
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 18px 35px rgba(37, 169, 224, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.career-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(37, 169, 224, 0.34);
  color: #fff;
}

/* Golden bouncing "Attractive Bonuses" button */

.career-hero-bonus {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bonus-bounce-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, #fff3a0 0%, #ffd700 25%, #f5a623 55%, #d18a00 100%);
  color: #3a2400;
  text-decoration: none;
  font-family: "Outfit", sans-serif;
  overflow: hidden;
  isolation: isolate;
  transform-origin: center bottom;
  animation: bonusBounce 2.4s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
  box-shadow:
    0 14px 30px rgba(245, 166, 35, 0.45),
    0 4px 12px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.7);
}

.bonus-bounce-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.7), transparent 50%),
    radial-gradient(circle at 80% 90%, rgba(255, 200, 0, 0.5), transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.bonus-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    100deg,
    transparent 30%,
    rgba(255, 255, 255, 0.7) 50%,
    transparent 70%
  );
  transform: skewX(-20deg);
  animation: bonusShine 3.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.bonus-bounce-btn > * {
  position: relative;
  z-index: 2;
}

.bonus-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  color: #8a4500;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.bonus-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.bonus-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b3700;
  margin-bottom: 4px;
}

.bonus-headline {
  font-family: "Rakkas", serif;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #3a2400;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

.bonus-sub {
  font-size: 0.82rem;
  font-weight: 600;
  color: #5a3000;
  margin-top: 2px;
}

.bonus-bounce-btn:hover {
  animation-play-state: paused;
  transform: translateY(-8px) scale(1.05) rotate(-1deg);
  box-shadow:
    0 22px 44px rgba(245, 166, 35, 0.55),
    0 8px 18px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.bonus-bounce-btn:active {
  transform: translateY(-2px) scale(1.01);
}

@keyframes bonusBounce {
  0%, 100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
  15% {
    transform: translateY(-18px) scale(1.04, 0.96) rotate(-1deg);
  }
  30% {
    transform: translateY(0) scale(0.96, 1.04) rotate(0.5deg);
  }
  45% {
    transform: translateY(-9px) scale(1.02, 0.98) rotate(-0.5deg);
  }
  60% {
    transform: translateY(0) scale(1, 1) rotate(0deg);
  }
}

@keyframes bonusShine {
  0% { left: -100%; }
  60% { left: 150%; }
  100% { left: 150%; }
}

@media (max-width: 900px) {
  .career-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .career-hero-content {
    text-align: center;
  }
  .bonus-bounce-btn {
    width: 100%;
    max-width: 360px;
    justify-content: center;
  }
}

.career-hero-title {
  font-family: "Rakkas", serif;
  font-size: clamp(1rem, 3vw, 2.5rem);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0.03em;
  margin: 0 0 18px;
  color: var(--accent-color);
}

.career-hero-title .reveal-line > span {
  color: var(--accent-color) !important;
}

.career-hero-sub {
  font-family: "Outfit", sans-serif;
  font-size: 1.06rem;
  line-height: 1.9;
  color: var(--slate);
  max-width: 640px;
  margin: 18px auto 36px;
}

/* Stats bar mirrors the index .hero-stats-bar pattern */

.career-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(84%, 720px);
  margin: 0 auto;
  background: rgba(34, 34, 38, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.career-hero-stat {
  padding: 22px 16px;
  text-align: center;
  position: relative;
}

.career-hero-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.career-hero-stat-value {
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(30, 223, 199, 0.7);
  margin-bottom: 8px;
  font-family: "Rakkas", serif;
  letter-spacing: 0.03em;
}

.career-hero-stat-label {
  display: block;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
  font-family: "Outfit", sans-serif;
}

/* Section heading — matches .section-head used elsewhere */

.career-section-head {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 95%;
}

.career-section-head h2 {
  font-family: "Rakkas", serif;
  font-size: clamp(1rem, 3vw, 2.5rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: var(--accent-color);
  margin: 0;
}

.career-section-head p {
  margin: 18px auto 0;
  max-width: 720px;
  color: var(--slate);
  line-height: 1.9;
  font-size: 1.06rem;
  font-family: "Outfit", sans-serif;
}

/* Openings grid */

.career-openings {
  padding: 90px 0;
  background: var(--silver);
}

.career-openings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.career-opening-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.career-opening-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.career-opening-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-soft);
  color: var(--primary-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.career-opening-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 10px;
}

.career-opening-card p {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 18px;
  font-family: "Outfit", sans-serif;
}

.career-opening-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: var(--cyan-soft);
  color: var(--primary-deep);
  padding: 6px 14px;
  border-radius: 50px;
  font-family: "Outfit", sans-serif;
}

/* Apply section — same surface treatment as the contact form */

.career-apply-section {
  padding: 0px 0 !important;
  background: var(--white);
}

.career-apply-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: stretch;
}

.career-apply-intro {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

.career-apply-intro h2 {
  font-family: "Rakkas", serif;
  font-size: clamp(1rem, 3vw, 2.5rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: var(--accent-color);
  margin: 0 0 18px;
}

.career-apply-intro p {
  color: var(--slate);
  font-size: 1.06rem;
  line-height: 1.9;
  margin-bottom: 24px;
  font-family: "Outfit", sans-serif;
}

.career-apply-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.career-apply-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  font-family: "Outfit", sans-serif;
}

.career-apply-list i {
  color: var(--primary);
  font-size: 20px;
}

.career-apply-contact p {
  margin: 6px 0;
  color: var(--text);
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
}

.career-apply-contact a {
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
}

.career-apply-contact a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* FAQ section — AEO/AEO optimization (visible Q&A mirrors the FAQPage JSON-LD) */

.career-faq-section {
  padding: 90px 0;
  background: var(--silver);
}

.career-faq-wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.career-faq-intro {
  text-align: center;
  margin-bottom: 40px;
}

.career-faq-intro h2 {
  font-family: "Rakkas", serif;
  font-size: clamp(1rem, 3vw, 2.5rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: var(--accent-color);
  margin: 0 0 18px;
}

.career-faq-intro p {
  margin: 0 auto;
  max-width: 720px;
  color: var(--slate);
  line-height: 1.9;
  font-size: 1.06rem;
  font-family: "Outfit", sans-serif;
}

.career-faq-intro a {
  color: var(--primary-dark);
  font-weight: 600;
}

.career-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.career-faq-item {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.career-faq-item[open] {
  box-shadow: var(--shadow);
  border-color: rgba(37, 169, 224, 0.3);
}

.career-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  user-select: none;
}

.career-faq-item summary::-webkit-details-marker {
  display: none;
}

.career-faq-item summary i {
  color: var(--primary);
  font-size: 1.3rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.career-faq-item[open] summary i {
  transform: rotate(45deg);
}

.career-faq-body {
  padding: 0 26px 22px;
  color: var(--slate);
  line-height: 1.85;
  font-size: 1rem;
  font-family: "Outfit", sans-serif;
}

.career-faq-body p {
  margin: 0;
}

.career-faq-body a {
  color: var(--primary-dark);
  font-weight: 600;
}

@media (max-width: 900px) {
  .career-faq-item summary {
    padding: 18px 18px;
    font-size: 0.98rem;
  }
  .career-faq-body {
    padding: 0 18px 18px;
    font-size: 0.95rem;
  }
}

.career-form-wrap {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  padding: 28px;
}

@media (max-width: 900px) {
  .career-apply-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .career-hero {
    padding: 100px 0 70px;
  }
  .career-hero-stats {
    grid-template-columns: 1fr;
  }
  .career-hero-stat:not(:last-child)::after {
    right: 18px;
    left: 18px;
    top: auto;
    bottom: 0;
    width: auto;
    height: 1px;
  }
}


.services-section {
  position: relative; 
  padding-top: 130px;
}

.about-premium-section {
  padding-bottom: 130px;
}

.section-overlap-image-wrap {
  position: absolute;
  top: 0;
  right: 5%; 
  transform: translateY(-50%); 
  z-index: 10; 
}

.overlap-end-img {
  height: 170px; 
  width: auto;
  display: block;
}


@media (max-width: 768px) {
  .section-overlap-image-wrap {
    right: 3%;
    transform: translateY(-40%);
  }
  .overlap-end-img {
    height: 100px;
    margin-top: 25px;
  }
}



@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  /* Header — strip the brand subtitle to keep the logo row compact */
  .premium-nav-shell {
    gap: 6px;
  }
  .logo-text h1 {
    font-size: 16px;
  }
  .logo-text span {
    font-size: 8px;
    max-width: 130px;
    letter-spacing: 0.4px;
  }
  .logo-mark img {
    height: 36px;
  }
  .since-text {
    font-size: 7px;
  }
  .nav-cta {
    padding: 8px 14px !important;
    font-size: 13px !important;
  }

  /* Career hero */
  .career-hero {
    padding: 80px 0 50px;
  }
  .career-hero-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    line-height: 1.1;
  }
  .career-hero-sub {
    font-size: 0.98rem;
    line-height: 1.7;
  }
  .career-hero-cta {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  /* Golden bonus button — fit 320-380px screens without overflow */
  .bonus-bounce-btn {
    padding: 16px 14px;
    gap: 10px;
    border-radius: 18px;
  }
  .bonus-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .bonus-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }
  .bonus-headline {
    font-size: 1.2rem;
    letter-spacing: 0.01em;
  }
  .bonus-sub {
    font-size: 0.72rem;
  }

  /* Career apply form panel */
  .career-form-wrap,
  .career-apply-intro {
    padding: 20px;
  }
  .career-apply-intro h2 {
    font-size: 1.4rem;
    line-height: 1.15;
  }
  .career-apply-list li {
    font-size: 0.92rem;
    padding: 6px 0;
  }
  .career-apply-contact p {
    font-size: 0.92rem;
    word-break: break-word;
  }
  .contact-premium-form .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .contact-premium-form label {
    font-size: 0.85rem;
  }
  .contact-premium-form .form-control {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  .contact-submit-btn {
    width: 100%;
    justify-content: center;
  }

  /* Career FAQ */
  .career-faq-section {
    padding: 60px 0;
  }
  .career-faq-item summary {
    padding: 16px 14px;
    font-size: 0.92rem;
    gap: 10px;
  }
  .career-faq-body {
    padding: 0 14px 16px;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  /* Index.html — contact form, services, hero stats */
  .hero-premium {
    padding: 16px 0 40px;
  }
  .hero-stats-bar {
    width: 100%;
    border-radius: 16px;
  }
  .hero-stat-item {
    padding: 14px 8px;
  }
  .hero-stat-value {
    font-size: 1.5rem;
  }
  .hero-stat-label {
    font-size: 0.78rem;
  }
  .section-head h2,
  .career-section-head h2,
  .career-faq-intro h2 {
    font-size: 1.4rem;
    line-height: 1.15;
  }
  .section-head p,
  .career-section-head p,
  .career-faq-intro p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .contact-premium-form .form-row {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap,
  .contact-map-wrap {
    padding: 20px;
  }

  /* Footer */
  .footer-brand p,
  .footer-links ul li a,
  .footer-contact p {
    font-size: 0.9rem;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .footer-copy {
    font-size: 0.85rem;
  }

  /* Footer hiring image — keep within column */
  .career-banner-img {
    max-width: 240px;
  }
}

@media (max-width: 380px) {
  /* Ultra-small fallback for 320-360px viewports (iPhone SE 1st gen, etc.) */
  .container {
    padding-left: 14px;
    padding-right: 14px;
  }
  .bonus-bounce-btn {
    padding: 14px 10px;
    gap: 8px;
  }
  .bonus-headline {
    font-size: 1.05rem;
  }
  .bonus-sub {
    font-size: 0.65rem;
  }
  .career-hero-title {
    font-size: 1.2rem;
  }
  .section-head h2,
  .career-section-head h2,
  .career-faq-intro h2 {
    font-size: 1.25rem;
  }
  .hero-premium-content h2,
  .career-hero-title {
    font-size: 1.15rem;
  }
  .nav-cta {
    display: none !important;
  }
}

/* =====================================================
   Tablet portrait (768-991px) — fix sections that only
   get media queries at 767px, leaving the tablet band
   with desktop-only styles.
   ===================================================== */

@media (max-width: 991px) and (min-width: 768px) {
  .career-hero-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
  }
  .bonus-bounce-btn {
    padding: 18px 18px;
  }
  .bonus-headline {
    font-size: 1.3rem;
  }
  .career-apply-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .career-hero-stats {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
  .career-hero-stat {
    padding: 16px 8px;
  }
  .career-hero-stat-value {
    font-size: 1.5rem;
  }
  .career-hero-stat-label {
    font-size: 0.78rem;
  }
  .hero-stats-bar {
    width: 92%;
  }
}

/* =====================================================
   Ultra-wide screens (>= 1600px) — keep things readable,
   don't stretch text lines too wide.
   ===================================================== */

@media (min-width: 1600px) {
  .career-hero-grid {
    max-width: 1280px;
  }
  .career-faq-wrap {
    max-width: 1100px;
  }
  .career-apply-grid {
    max-width: 1280px;
    margin: 0 auto;
  }
  .hero-premium-content h2 {
    max-width: 1100px;
    margin: 0 auto;
  }
}

/* =====================================================
   Landscape phone — keep hero content readable when
   the device is short in height.
   ===================================================== */

@media (max-height: 500px) and (orientation: landscape) {
  .career-hero {
    padding: 60px 0 50px;
  }
  .career-hero-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 30px;
  }
  .career-hero-stats {
    display: none;
  }
}

/* =====================================================
   Defensive: prevent horizontal page scroll on any screen
   caused by oversize elements (decorations, blurred bgs,
   gold bonus button, footer banner image, etc.)
   ===================================================== */

html, body {
  overflow-x: hidden;
}

.hero-bg-blur,
.hero-grid-lines,
.bonus-bounce-btn {
  max-width: 100%;
}

.career-banner-img
{
	  max-width: 100px;
	  max-height: 100px;
}
img {
  max-width: 100%;
  height: auto;
}



.hero-stats-bar {
  position: absolute;
  left: 50%;
  bottom: -45px;
  transform: translateX(-50%);
  width: min(92%, 900px);
  background: rgba(34, 34, 38, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

.hero-stat-item {
  padding: 18px 12px;
  text-align: center;
  position: relative;
}

.hero-stat-value {
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  color: rgba(30, 223, 199, 0.7);
  margin-bottom: 8px;
}

.hero-stat-label {
  display: block;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}


@media (min-width: 992px) {
  .hero-stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
  }
}


@media (max-width: 991px) {
  .services-section {
    padding-top: 85px;
  }
  .about-premium-section {
    padding-bottom: 85px;
  }
  .section-overlap-image-wrap {
    right: 4%;
    transform: translateY(-48%);
  }
  .overlap-end-img {
    height: 120px;
  }
}


@media (max-width: 768px) {
  padding-top: 45px;           
  .section-overlap-image-wrap {
    right: 3%;
    transform: translateY(-40%);
  }
  .overlap-end-img {
    height: 100px;
    margin-top: 25px;
  }
  
  .services-section {
  padding-top: 45px;
}
.about-premium-section {
  padding-bottom: 45px;
}
}

@media (max-width: 420px) {
  .services-section {
    padding-top: 38px;
  }
  .about-premium-section {
    padding-bottom: 38px;
  }
  .overlap-end-img {
    height: 75px;
  }
}

/* SEO utility: visually hidden but crawlable (for keyword-rich supplementary text) */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ============================================================
   Generic inner-page styles (FAQ, Blog, Privacy, Terms)
   Uses existing tokens — no new colors introduced.
   ============================================================ */

.content-page {
  padding: 140px 0 80px;
  background: var(--silver);
  min-height: 60vh;
}

.content-page .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.content-head {
  text-align: center;
  margin-bottom: 48px;
}

.content-head .section-tag {
  display: inline-block;
  background: var(--primary-soft);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}

.content-head h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.2;
}

.content-head p {
  color: var(--slate);
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

/* FAQ accordion */
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: box-shadow .25s ease, border-color .25s ease;
}

.faq-item:hover {
  border-color: rgba(37, 169, 224, 0.35);
}

.faq-question {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 18px 22px;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-question::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--primary);
  transition: transform .25s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 22px;
}

.faq-item.open .faq-answer {
  max-height: 800px;
  padding: 0 22px 20px;
}

.faq-answer p {
  color: var(--slate);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.faq-answer a {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Legal / prose page (privacy policy, terms) */
.legal-prose {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-soft);
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
}

.legal-prose h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  color: var(--text);
  margin: 32px 0 12px;
}

.legal-prose h2:first-child {
  margin-top: 0;
}

.legal-prose h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  color: var(--primary-dark);
  margin: 22px 0 8px;
}

.legal-prose p {
  color: var(--slate);
  margin: 0 0 14px;
}

.legal-prose ul {
  color: var(--slate);
  margin: 0 0 14px;
  padding-left: 22px;
}

.legal-prose li {
  margin-bottom: 8px;
}

.legal-prose a {
  color: var(--primary-dark);
  text-decoration: underline;
}

.legal-prose .legal-meta {
  font-size: 13px;
  color: var(--slate);
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
  margin-bottom: 24px;
}

/* Privacy checkbox row in forms */
.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 4px;
  font-size: 13px;
  color: var(--slate);
  line-height: 1.5;
}

.form-privacy input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--primary);
  flex-shrink: 0;
}

.form-privacy label {
  cursor: pointer;
}

.form-privacy a {
  color: var(--primary-dark);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .content-page { padding-top: 110px; }
  .legal-prose { padding: 26px 20px; }
  .faq-question { font-size: 15px; padding: 16px 18px; }
  .faq-answer { padding: 0 18px; }
  .faq-item.open .faq-answer { padding: 0 18px 18px; }
}
