/* ===== TWAC LLP - Brand Design System ===== */

@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS Variables ===== */
:root {
  --teal: #3aafa9;
  --teal-light: #56c8c2;
  --deep-blue: #2c3e8c;
  --deep-blue-dark: #1e2d6e;
  --gradient: linear-gradient(135deg, #3aafa9 0%, #2c3e8c 100%);
  --gradient-lr: linear-gradient(90deg, #3aafa9 0%, #2c3e8c 100%);
  --gradient-hero: linear-gradient(135deg, #eef2ff 0%, #f0fbfa 50%, #e8f4ff 100%);
  --dark-bg: #0e1630;
  --dark-bg-2: #111d3a;
  --text-dark: #0d1b2a;
  --text-mid: #3a4a5c;
  --text-light: #6b7a8d;
  --white: #ffffff;
  --card-bg: #f7f9fc;
  --border: #e4eaf3;
  --shadow: 0 4px 24px rgba(44, 62, 140, 0.08);
  --shadow-card: 0 8px 40px rgba(44, 62, 140, 0.12);
  --shadow-hover: 0 16px 56px rgba(44, 62, 140, 0.20);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.4rem;
}

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ===== Utilities ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 100px 0;
}

.section-pad-sm {
  padding: 70px 0;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.pill-label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
}

.pill-label::after {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(44, 62, 140, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(44, 62, 140, 0.4);
}

.btn-primary svg {
  transition: transform 0.3s;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-outline {
  background: transparent;
  color: var(--deep-blue);
  border: 2px solid var(--deep-blue);
}

.btn-outline:hover {
  background: var(--deep-blue);
  color: white;
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--deep-blue);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--gradient);
  padding: 10px 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: none;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-left a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.topbar-left a:hover {
  color: white;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-right span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--teal);
  color: white;
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(44, 62, 140, 0.08);
  transition: box-shadow 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(44, 62, 140, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
}

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

.nav-logo img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
  display: block;
  /* Add pseudo-drawing reveal animation */
  animation: logoDrawReveal 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

@keyframes logoDrawReveal {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 0;
    transform: translateX(-10px);
    filter: brightness(2) drop-shadow(0 0 10px var(--teal));
  }

  50% {
    opacity: 1;
  }

  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transform: translateX(0);
    filter: brightness(1) drop-shadow(0 0 0 transparent);
  }
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text .brand-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.nav-logo-text .brand-sub {
  font-size: 0.65rem;
  font-family: 'Inter', sans-serif;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--deep-blue);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep-blue);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: white;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  gap: 4px;
  box-shadow: 0 12px 40px rgba(44, 62, 140, 0.1);
}

.mobile-nav a {
  padding: 12px 0;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover {
  color: var(--deep-blue);
}

.mobile-nav .btn {
  width: 100%;
  justify-content: center;
  margin-top: 12px;
}

/* ===== HERO SECTION ===== */
.hero {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--teal);
  top: -100px;
  right: 200px;
  animation: float1 8s ease-in-out infinite;
}

.blob-2 {
  width: 350px;
  height: 350px;
  background: var(--deep-blue);
  bottom: -80px;
  left: 100px;
  animation: float2 10s ease-in-out infinite;
}

.blob-3 {
  width: 200px;
  height: 200px;
  background: var(--teal-light);
  top: 50%;
  left: 45%;
  animation: float1 7s ease-in-out infinite 2s;
}

@keyframes float1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(20px, -30px) scale(1.05);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-20px, 20px) scale(1.03);
  }
}

/* Dot grid background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(44, 62, 140, 0.08) 1.5px, transparent 1.5px);
  background-size: 36px 36px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  width: fit-content;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(58, 175, 169, 0.4);
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(58, 175, 169, 0);
  }
}

.hero-h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  color: var(--text-dark);
}

.hero-tagline {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-light);
  font-style: italic;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-play {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--deep-blue);
  font-size: 0.9rem;
  transition: gap 0.3s;
}

.btn-play:hover {
  gap: 16px;
}

.play-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.play-circle::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px dashed rgba(44, 62, 140, 0.2);
  animation: spin-slow 8s linear infinite;
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.play-circle:hover {
  background: var(--gradient);
  border-color: transparent;
}

.play-circle:hover svg path {
  fill: white;
}

.hero-right {
  position: relative;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.hero-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  background: var(--gradient);
  aspect-ratio: 5/6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.hero-visual-content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 48px 40px;
  text-align: center;
  color: white;
}

.hero-logo-big {
  width: 120px;
  height: 120px;
  opacity: 0.95;
}

#hero-particles,
#about-particles,
#why-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-visual-content h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: white;
  line-height: 1.2;
}

.hero-visual-content p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 280px;
  line-height: 1.6;
}

.hero-corner-decor {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  gap: 4px;
  padding: 16px;
}

.hero-corner-decor .num {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-corner-decor .lbl {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-light);
  text-align: center;
  line-height: 1.3;
}

.hero-corner-decor-2 {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 96px;
  height: 96px;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  gap: 4px;
  padding: 12px;
}

.hero-corner-decor-2 .icon-wrap {
  width: 36px;
  height: 36px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-corner-decor-2 .lbl2 {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.3;
}

/* ===== TICKER ===== */
.ticker {
  background: var(--gradient);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

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

.ticker-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.ticker-star {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== ABOUT SECTION ===== */
.about {
  background: white;
}

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

.about-left {
  position: relative;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14, 22, 48, 0.6) 100%);
}

.about-img-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  color: white;
  z-index: 2;
}

.about-img-content h4 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.about-img-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.about-visual-grid {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  position: relative;
  z-index: 2;
}

@keyframes cellBreathe {

  0%,
  100% {
    background: rgba(255, 255, 255, 0.04);
  }

  50% {
    background: rgba(255, 255, 255, 0.12);
  }
}

.about-visual-cell {
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  aspect-ratio: 1;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.about-visual-cell:nth-child(1) {
  animation: cellBreathe 4s infinite ease-in-out;
}

.about-visual-cell:nth-child(2) {
  animation: cellBreathe 4s infinite ease-in-out 1s;
}

.about-visual-cell:nth-child(3) {
  animation: cellBreathe 4s infinite ease-in-out 2s;
}

.about-visual-cell:nth-child(4) {
  animation: cellBreathe 4s infinite ease-in-out 3s;
}

.about-visual-cell:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  transform: scale(1.03);
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}

.about-visual-cell svg {
  width: 40px;
  height: 40px;
  opacity: 0.8;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-visual-cell:hover svg {
  transform: scale(1.2) translateY(-5px);
  opacity: 1;
}

.about-stat-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: white;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-text .num {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-text .lbl {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 2px;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-right h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.about-right p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
}

.about-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.culture-collage-wrapper {
  margin-top: 48px;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.culture-collage-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.feature-mini {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.feature-mini:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-mini-icon {
  width: 38px;
  height: 38px;
  background: var(--gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-mini h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.feature-mini p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.4;
}

.about-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.founder-pill {
  display: flex;
  align-items: center;
  gap: 12px;
}

.founder-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 3px solid white;
  box-shadow: var(--shadow);
}

.founder-avatar svg {
  width: 24px;
  height: 24px;
}

.founder-info .name_ {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.founder-info .role_ {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===== SERVICES ===== */
.services {
  background: var(--card-bg);
}

.services-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.services-header .pill-label {
  justify-content: center;
}

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

.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-8px);
  border-color: rgba(58, 175, 169, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(58, 175, 169, 0.12) 0%, rgba(44, 62, 140, 0.12) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient);
}

.service-card:hover .service-icon svg path,
.service-card:hover .service-icon svg rect,
.service-card:hover .service-icon svg circle {
  stroke: white;
}

.service-card h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
}

.read-more {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  transition: gap 0.3s;
  margin-top: auto;
}

.service-card:hover .read-more {
  gap: 10px;
}

.services-cta-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.services-cta-text {
  font-size: 0.9rem;
  color: var(--text-light);
}

.services-cta-text strong {
  color: var(--teal);
}

/* ===== WHY TWAC ===== */
.why-twac {
  background: white;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-left {
  position: relative;
}

.why-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.why-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #1a2a55 0%, #0e3d3a 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  position: relative;
}

.why-visual-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(58, 175, 169, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
}

.why-visual-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px;
  text-align: center;
}

.why-visual-circles {
  position: relative;
  width: 160px;
  height: 160px;
}

.why-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(58, 175, 169, 0.4);
}

.why-c1 {
  inset: 0;
  animation: pulse-ring 3s ease-out infinite;
}

.why-c2 {
  inset: 20px;
  animation: pulse-ring 3s ease-out infinite 1s;
}

.why-visual-circles::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 70%, rgba(58, 175, 169, 0.25) 100%);
  animation: radarSweep 4s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes radarSweep {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.why-c3 {
  inset: 40px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 2;
}

.why-c3 img {
  width: 60px;
  height: 60px;
  position: relative;
  z-index: 3;
}

@keyframes pulse-ring {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

.why-visual-text {
  color: white;
}

.why-visual-text h4 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.why-visual-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.why-badge {
  position: absolute;
  top: 24px;
  left: -24px;
  background: white;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  z-index: 5;
}

.why-badge-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-badge-text .n {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep-blue);
  line-height: 1;
}

.why-badge-text .l {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 500;
}

.why-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-right h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.why-right>p {
  font-size: 0.95rem;
}

.why-grid {
  background: linear-gradient(135deg, #0e1630 0%, #111d3a 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 8px;
}

.why-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
}

.why-item p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}

/* ===== APPROACH ===== */
.approach {
  background: var(--card-bg);
}

.approach-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}

.approach-header-left .pill-label {
  justify-content: flex-start;
}

.approach-header-right p {
  font-size: 0.95rem;
}

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

.approach-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.approach-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px);
}

.approach-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Fredoka', sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: rgba(44, 62, 140, 0.05);
  line-height: 1;
  user-select: none;
}

.approach-card-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.approach-card h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.approach-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

.approach-card-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.step-num {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: var(--gradient);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.stat-cell {
  text-align: center;
}

.stat-cell .number {
  font-family: 'Fredoka', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-cell .label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
  align-self: stretch;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: white;
  padding: 80px 0;
}

.cta-box {
  background: var(--gradient);
  border-radius: 28px;
  padding: 72px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.cta-box-decor {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 300px;
  background: rgba(255, 255, 255, 0.05);
  clip-path: ellipse(80% 100% at 100% 50%);
}

.cta-left {
  position: relative;
  z-index: 1;
}

.cta-left h2 {
  color: white;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 12px;
}

.cta-left p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  max-width: 480px;
}

.cta-right {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== UNIFIED CONTACT SECTION ===== */
.contact-section {
  padding: 40px 0 80px 0;
  background: white;
}

.contact-block {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(44, 62, 140, 0.09);
}

/* Zone 1 — Header with CTA Gradient */
.cb-header {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 44px 52px;
  background: var(--gradient);
}

.cb-header-left {
  flex: 1;
}

.cb-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  line-height: 1.25;
}

.cb-header-right {
  flex: 1;
}

.cb-subtitle {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
}

/* Zone 2 — Two-column info */
.cb-info {
  display: flex;
  align-items: stretch;
  padding: 40px 52px;
  gap: 0;
  background: #f5f8ff;
}

.cb-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cb-col-heading {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--deep-blue);
  margin: 0;
  line-height: 1.3;
}

.cb-col-heading em {
  font-style: italic;
  color: var(--teal);
}

/* Contact rows */
.cb-contact-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cb-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.2s;
}

.cb-contact-row:hover {
  background: rgba(58, 175, 169, 0.07);
}

.cb-ci-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.cb-ci-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.cb-ci-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.cb-ci-val {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--teal);
}

/* Follow us */
.cb-follow {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
}

.cb-follow-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.cb-follow-icons {
  display: flex;
  gap: 8px;
}

.cb-soc {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cb-soc:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 62, 140, 0.2);
}

/* Vertical divider */
.cb-col-divider {
  width: 1px;
  background: var(--border);
  margin: 0 40px;
  align-self: stretch;
}

/* Address row */
.cb-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
}

.cb-address svg {
  stroke: url(#twac-grad) !important;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Zone 3 — Map */
.cb-map-zone {
  background: white;
  border-top: 1px solid var(--border);
}

.cb-map-zone iframe {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
}

.cb-map-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 52px;
  border-top: 1px solid var(--border);
}

.cb-navigate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: gap 0.2s;
}

.cb-navigate span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cb-navigate svg {
  stroke: url(#twac-grad) !important;
}

.cb-navigate:hover {
  gap: 10px;
}

.cb-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cb-hours svg {
  stroke: url(#twac-grad) !important;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .cb-header {
    flex-direction: column;
    padding: 32px 28px;
  }

  .cb-info {
    flex-direction: column;
    padding: 32px 28px;
  }

  .cb-col-divider {
    width: 100%;
    height: 1px;
    margin: 8px 0;
  }

  .cb-map-bar {
    padding: 14px 28px;
  }
}

/* ===== CONTACT CARDS (below CTA banner) ===== */

.contact-cards-wrap {
  display: flex;
  gap: 24px;
  max-width: 1240px;
  margin: 40px auto 0;
  padding: 0 24px 64px;
  align-items: stretch;
}

/* Shared card base */
.cc-card {
  border-radius: 24px;
  padding: 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── LEFT card (gradient) ── */
.cc-left {
  background: var(--gradient);
  box-shadow: 0 12px 40px rgba(44, 62, 140, 0.18);
  flex: 0 0 42%;
}

.cc-heading {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: white;
  margin: 0 0 20px;
  line-height: 1.25;
}

.cc-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 4px 0 20px;
}

/* Contact rows */
.cc-rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.cc-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition: background 0.2s;
}

.cc-row:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.cc-row-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cc-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.cc-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
}

/* Social icons */
.cc-follow-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 12px;
}

.cc-socials {
  display: flex;
  gap: 10px;
}

.cc-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.cc-social:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: white;
}

/* ── RIGHT card (white) ── */
.cc-right {
  background: white;
  box-shadow: 0 8px 32px rgba(44, 62, 140, 0.1);
  border: 1px solid var(--border);
  flex: 1;
  gap: 16px;
}

.cc-heading-dark {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

.cc-heading-dark em {
  font-style: italic;
  color: var(--teal);
}

.cc-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.6;
}

.cc-address svg {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Map */
.cc-map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  flex: 1;
}

.cc-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 180px;
  border-radius: 14px;
}

/* Navigate + hours footer */
.cc-map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.cc-navigate {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--teal);
  text-decoration: none;
  transition: gap 0.2s;
}

.cc-navigate:hover {
  gap: 10px;
}

.cc-hours {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.cc-hours svg {
  color: var(--teal);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-cards-wrap {
    flex-direction: column;
  }

  .cc-left {
    flex: unset;
  }
}

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

.footer {
  background: var(--gradient);
  color: rgba(255, 255, 255, 0.75);
  padding: 0;
  position: relative;
  overflow: hidden;
  border-top: none;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 60px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-logo-circle {
  background: white;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.footer-logo-circle img {
  width: 20px;
  height: auto;
  margin: 0;
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-links a::before {
  content: '›';
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  transition: transform 0.2s;
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-links a:hover::before {
  transform: translateX(4px);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-item-icon {
  width: 34px;
  height: 34px;
  background: rgba(58, 175, 169, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-text {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

.contact-item-text strong {
  display: block;
  color: white;
  font-size: 0.8rem;
  margin-bottom: 2px;
}

.footer-bottom-bar {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 24px;
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-copyright a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: white;
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 6px 24px rgba(44, 62, 140, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
}

.back-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(44, 62, 140, 0.5);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ===== SERVICES SHOWCASE SECTION (ne 2 inspired) ===== */
.svc-showcase {
  background: linear-gradient(135deg, #1b2d6e 0%, #0e3a6e 30%, #0a4a5e 65%, #0d6060 100%);
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

/* Globe watermark background */
.svc-showcase::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 2px solid rgba(58, 175, 169, 0.08);
  pointer-events: none;
}

.svc-showcase::before {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 2px solid rgba(58, 175, 169, 0.06);
  pointer-events: none;
}

.svc-showcase-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left: headline block */
.svc-showcase-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.svc-showcase-headline {
  font-family: 'Fredoka', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  color: white;
  margin-bottom: 20px;
}

.svc-showcase-headline span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.svc-showcase-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Big "+" circle button (decorative like the reference) */
.svc-showcase-plus {
  position: absolute;
  bottom: -48px;
  right: -36px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(58, 175, 169, 0.4);
  color: var(--teal);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  transition: var(--transition);
  cursor: pointer;
}

.svc-showcase-plus:hover {
  background: var(--gradient);
  color: white;
  border-color: transparent;
}

/* Right: 2×3 grid of cards */
.svc-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 0;
}

.svc-showcase-card {
  padding: 32px 28px;
  border: 1px solid rgba(58, 175, 169, 0.18);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: var(--transition);
  cursor: default;
  background: transparent;
}

.svc-showcase-card:hover {
  background: rgba(58, 175, 169, 0.05);
  border-color: rgba(58, 175, 169, 0.5);
  z-index: 2;
}

.svc-showcase-card:hover .svc-showcase-icon {
  background: var(--gradient);
}

.svc-showcase-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(58, 175, 169, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.svc-showcase-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.svc-showcase-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
}

/* Responsive showcase */
@media (max-width: 1000px) {
  .svc-showcase-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .svc-showcase-left {
    align-items: flex-start;
  }

  .svc-showcase-plus {
    display: none;
  }

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

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

  .svc-showcase-headline {
    font-size: 2rem;
  }
}

/* ===== CULTURE / LIFE AT TWAC SECTION ===== */
.culture {
  background: white;
}

.culture-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.culture-header .pill-label {
  color: var(--deep-blue);
}

.culture-header .pill-label::before {
  background: var(--gradient);
}

.culture-header .pill-label::after {
  background: var(--gradient);
}

.culture-header-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
}

.culture-header-inner h2 {
  color: var(--text-dark);
}

.culture-header-desc {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.75;
}

/* Grid layout */
.culture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
  height: 540px;
  /* Constrain grid to a single vertical frame without scroll */
}

.culture-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
}

/* Base card */
.culture-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  flex: 1;
}

.culture-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Tall left card */
.culture-card--tall {
  height: 100%;
  min-height: 0;
}

.culture-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  min-height: 0;
}

.culture-col .culture-card {
  flex: 1;
  /* evenly split the 540px frame height */
  min-height: 0;
  /* fixes flex item intrinsic size overflow */
}

/* Standalone Innovation Banner */
.culture-card--innovation {
  width: 100%;
  height: 85vh;
  max-height: 800px;
  min-height: 480px;
}

/* Final Culture Frame (Card 5 + Values + Join) */
.culture-final-frame {
  width: 100%;
  /* Removed fixed 90vh height which was causing extra blank space on tall screens */
  min-height: 600px;
  display: flex;
  flex-direction: column;
}

.culture-card--card5 {
  flex: 1;
  width: 100%;
  min-height: 0;
  margin-bottom: 32px;
  background-color: #121c2e;
  /* Match the dark theme to fill empty spaces smoothly */
}

.culture-card--card5 img {
  object-fit: cover;
  /* Fills the container, removing black side spaces */
  object-position: center;
}

/* Aligning Card 5 overlay content right-to-left */
.culture-card--card5 .culture-card-overlay {
  align-items: flex-end;
  text-align: right;
  padding-right: 40px;
  /* slight extra padding on big screens */
}

.culture-card--card5 .culture-tag {
  left: auto;
  right: 40px;
}

.culture-final-frame .culture-values {
  margin-bottom: 32px;
}

.culture-final-frame .culture-join {
  margin-top: 0;
  padding-bottom: 20px;
}

/* Overlay (always present, full reveal on hover) */
.culture-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 22, 48, 0) 30%, rgba(14, 22, 48, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px 32px;
  transition: background 0.4s;
}

.culture-card:hover .culture-card-overlay {
  background: linear-gradient(180deg, rgba(14, 22, 48, 0.2) 0%, rgba(14, 22, 48, 0.95) 100%);
}

/* Tag pill at top-left */
.culture-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}

/* Card content */
.culture-card-content {
  transform: translateY(8px);
  transition: transform 0.4s ease;
}

.culture-card:hover .culture-card-content {
  transform: translateY(0);
}

.culture-caption {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
  line-height: 1.35;
  margin-bottom: 8px;
}

.culture-card--tall .culture-caption {
  font-size: 1.35rem;
}

.culture-card--wide .culture-caption {
  font-size: 1.2rem;
}

.culture-sub {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s 0.05s, transform 0.4s 0.05s;
}

.culture-card:hover .culture-sub {
  opacity: 1;
  transform: translateY(0);
}

/* Culture values strip */
.culture-values {
  display: flex;
  align-items: center;
  gap: 0;
  background: #f0f5ff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.culture-value-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  min-width: 180px;
  padding: 0 20px;
}

.culture-value-item:first-child {
  padding-left: 0;
}

.culture-value-item:last-child {
  padding-right: 0;
}

.cv-icon {
  width: 46px;
  height: 46px;
  background: var(--gradient);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cv-title {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.cv-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
}

.cv-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* Join CTA */
.culture-join {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: -40px;
  /* pull the contact section up slightly */
}

.culture-join-text {
  font-size: 0.9rem;
  color: var(--text-light);
}

.culture-join-text strong {
  color: var(--teal);
}

/* Responsive culture */
@media (max-width: 900px) {
  .culture-header-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .culture-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .culture-card--tall {
    min-height: 380px;
  }

  .culture-col {
    gap: 16px;
  }

  .culture-values {
    flex-direction: column;
    padding: 28px 24px;
    gap: 20px;
  }

  .culture-value-item {
    padding: 0;
  }

  .cv-divider {
    width: 100%;
    height: 1px;
  }
}

@media (max-width: 600px) {
  .culture-card--tall {
    min-height: 200px;
  }

  .culture-caption {
    font-size: 1rem;
  }

  .culture-join {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

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

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

  .stat-divider {
    display: none;
  }
}

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

  .hero-right {
    display: none;
  }

  .hero {
    min-height: auto;
  }

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

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

  .why-left {
    display: none;
  }

  .approach-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 48px 32px;
  }

  .cta-left p {
    max-width: 100%;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav.open {
    display: flex;
  }

  .topbar {
    display: none;
  }

  .section-pad {
    padding: 70px 0;
  }

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

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

  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
  }

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

  .about-features-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-box {
    padding: 40px 24px;
    border-radius: 20px;
  }

  .cta-right {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

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

/* ===== NAVBAR ACTIONS BUTTONS ===== */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(44, 62, 140, 0.15);
  transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(44, 62, 140, 0.25);
  color: white;
}

/* Attract Animations */
@keyframes pulse-ripple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.nav-btn-talk {
  position: relative;
  background: var(--gradient);
  padding: 10px 24px;
  z-index: 1;
}

.nav-btn-talk::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: var(--gradient);
  z-index: -1;
  animation: pulse-ripple 2s infinite cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-btn-talk:hover::after {
  animation: none;
  opacity: 0;
}

.nav-btn-talk:hover {
  box-shadow: 0 6px 16px rgba(44, 62, 140, 0.4);
}

/* ===== HELP WIDGET (Bottom Left) ===== */
.help-widget {
  position: fixed;
  bottom: 32px;
  left: 32px;
  display: flex;
  align-items: center;
  background: var(--gradient);
  border-radius: 50px;
  padding: 4px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(44, 62, 140, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 999;
  max-width: 52px;
  overflow: hidden;
}

.help-widget:hover {
  max-width: 300px;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44, 62, 140, 0.25);
}

.help-widget-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.draw-icon path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: draw-chat 2s ease-in-out infinite alternate;
}

@keyframes draw-chat {
  0% {
    stroke-dashoffset: 100;
    fill: transparent;
  }

  100% {
    stroke-dashoffset: 0;
    fill: url(#twac-grad);
  }
}

.help-widget-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  white-space: nowrap;
  opacity: 0;
  width: 0;
  transition: opacity 0.3s ease 0.1s, width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.help-widget:hover .help-widget-text {
  opacity: 1;
  width: auto;
  padding-left: 12px;
  padding-right: 16px;
}

@media (max-width: 1024px) {
  .nav-actions {
    margin-left: auto;
    margin-right: 20px;
  }
}

@media (max-width: 900px) {
  .nav-btn-talk {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .help-widget {
    bottom: 20px;
    left: 20px;
    padding: 4px;
    gap: 8px;
    max-width: 44px;
    /* Icon is 36px + 8px padding = 44px total */
  }

  .help-widget-text {
    font-size: 0.85rem;
  }

  .help-widget-icon {
    width: 36px;
    height: 36px;
  }

  .help-widget-icon svg {
    width: 20px;
    height: 20px;
  }

  .back-top {
    bottom: 20px;
    right: 20px;
  }
}