*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #f28c28;
  --orange-dark: #d97720;
  --orange-light: #fff3e6;
  --orange-glow: rgba(242, 140, 40, 0.15);
  --dark: #1a1a2e;
  --dark-secondary: #2d2d44;
  --gray-900: #1f2937;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --section-padding: 100px 0;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.announcement-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(242, 140, 40, 0.08),
    transparent
  );
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

.announcement-bar span {
  position: relative;
  z-index: 1;
}

.announcement-bar .highlight {
  color: var(--orange);
  font-weight: 700;
}

/* ===== FIXED HEADER WRAPPER ===== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
}

/* ===== NAV ===== */
nav {
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--gray-900);
}

.nav-logo-img {
  height: 60px;
  width: auto;
  display: block;
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

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

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

.nav-phone {
  text-decoration: none;
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  transition: color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.nav-phone:hover {
  color: var(--orange-dark);
}
.btn-ghost {
  padding: 9px 20px;
  border: 1.5px solid var(--gray-800);
  border-radius: 8px;
  background: transparent;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-primary {
  padding: 10px 24px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
  box-shadow: 0 2px 8px rgba(242, 140, 40, 0.3);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(242, 140, 40, 0.4);
}

.btn-large {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 10px;
}

.btn-large-ghost {
  padding: 15px 36px;
  font-size: 16px;
  border-radius: 10px;
}

.btn-navy {
  background: #1a1a2e;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.3);
}

.btn-navy:hover {
  background: #2d2d44;
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.4);
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #fae0b0 0%, #f2c68a 50%, #e8ad6a 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(242, 140, 40, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid rgba(242, 140, 40, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-dark);
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  animation: fadeInDown 0.6s ease-out;
}

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

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  animation: fadeIn 0.8s ease-out 0.1s both;
}

.hero h1 span {
  font-size: inherit !important;
}

.hero h1 .text-orange {
  color: var(--orange);
}

.hero .hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeIn 0.8s ease-out 0.3s both;
}

.hero-right {
  position: relative;
  animation: fadeIn 1s ease-out 0.4s both;
  min-height: 420px;
}

/* ===== HERO SLOGAN ===== */
.hero .hero-slogan {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  font-style: italic;
  color: var(--dark);
  text-align: center;
  margin: 48px 0 -60px;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 1;
}
.hero .hero-slogan .text-orange {
  color: var(--orange);
}

/* ===== PHONE MOCKUP ===== */
.phone-mockup {
  width: 220px;
  height: 420px;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 12px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.25),
    0 4px 15px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}
.phone-mockup::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #000;
  border-radius: 14px;
  z-index: 10;
}
.phone-screen {
  background: #f5f5f5;
  border-radius: 26px;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px 4px;
  font-size: 11px;
  font-weight: 600;
  color: #333;
}
.phone-status-bar .time {
  font-size: 13px;
  font-weight: 700;
}
.phone-status-icons {
  display: flex;
  gap: 4px;
  align-items: center;
}
.phone-status-icons span {
  font-size: 11px;
}
.phone-chat-area {
  flex: 1;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}
.chat-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(12px);
  animation: bubbleIn 0.4s ease-out forwards;
}
.chat-bubble.received {
  background: white;
  color: #333;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.chat-bubble.sent {
  background: var(--orange);
  color: white;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
@keyframes bubbleIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.phone-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 16px;
  background: #f5f5f5;
}
.phone-input-bar .input-field {
  flex: 1;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 12px;
  color: #999;
}
.phone-input-bar .send-btn {
  width: 30px;
  height: 30px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.phone-input-bar .send-btn svg {
  width: 14px;
  height: 14px;
}

/* ===== FLOATING DASHBOARD ===== */
.float-dashboard {
  position: absolute;
  top: 30px;
  right: -80px;
  width: 340px;
  background: var(--white);
  border-radius: 20px;
  padding: 22px 26px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.1),
    0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 3;
  animation: floatIn 0.8s ease-out 0.6s both;
}
.float-dashboard::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(242, 140, 40, 0.2), transparent 50%);
  z-index: -1;
}
@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateX(20px) translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}
.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-100);
}
.dashboard-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--gray-900);
}
.dashboard-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #10b981;
}
.dashboard-live::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.stat-card {
  padding: 12px 10px;
  border-radius: 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.stat-card.orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
}
.stat-card.light {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 2px;
}
.stat-card.light .stat-number {
  color: var(--dark);
}
.stat-label {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}
.stat-card.light .stat-label {
  color: var(--gray-500);
}

.dashboard-message {
  background: var(--gray-50);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.msg-avatar {
  width: 30px;
  height: 30px;
  background: var(--orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.msg-content {
  flex: 1;
}
.msg-text {
  font-size: 12px;
  color: var(--gray-700);
  line-height: 1.4;
}
.msg-status {
  font-size: 11px;
  color: #10b981;
  font-weight: 600;
  margin-top: 2px;
}

/* ===== TYPING INDICATOR ===== */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  align-self: flex-start;
}
.typing-indicator span {
  width: 7px;
  height: 7px;
  background: #ccc;
  border-radius: 50%;
  animation: typingBounce 1.2s ease-in-out infinite;
}
.typing-indicator span:nth-child(2) {
  animation-delay: 0.15s;
}
.typing-indicator span:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes typingBounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  30% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

/* ===== LOGOS ===== */
.logos-section {
  padding: 48px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: #edeef0;
}

.logos-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-500);
  margin-bottom: 28px;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  flex-wrap: nowrap;
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.3px;
  font-family: var(--font-display);
  transition: all 0.3s;
  user-select: none;
}

.logo-item:hover {
  opacity: 0.7;
}

.logo-item img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.logo-item.slack-logo img {
  height: 26px;
}
.logo-item.slack-logo {
  gap: 8px;
}
.logo-item.slack-logo span {
  font-size: 30px;
  font-weight: 800;
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.5px;
  color: #1a1a1a;
}
.logo-item.aristotle-logo {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 1px;
  color: #1a1a1a;
}
.logo-item.aristotle-logo .a-big {
  font-size: 52px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.logo-item.campaign-verify-logo {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #1a1a1a;
  line-height: 1.2;
}
.logo-item.campaigns-elections-logo {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  color: #1a1a1a;
  line-height: 1.15;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.logo-item.bitbean-logo {
  font-size: 26px;
  font-weight: 600;
  color: #1a1a1a;
  gap: 8px;
}

/* ===== SOCIAL PROOF STRIP ===== */
.proof-strip {
  padding: 60px 0;
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.proof-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.proof-item {
}

.proof-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.proof-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* ===== HERO SLOGAN ===== */
.hero-slogan {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  font-style: italic;
  color: var(--dark);
  text-align: center;
  margin: 48px 0 -60px;
  letter-spacing: -0.3px;
  position: relative;
  z-index: 1;
}
.hero-slogan .text-orange {
  color: var(--orange);
}

/* ===== WHO WE SERVE ===== */
.serve-section {
  padding: var(--section-padding);
  background: var(--white);
}

.section-eyebrow {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

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

.serve-card {
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid rgba(242, 140, 40, 0.15);
  background: var(--orange-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.serve-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.3s;
}

.serve-card:hover {
  border-color: rgba(242, 140, 40, 0.35);
  box-shadow: 0 8px 32px rgba(242, 140, 40, 0.15);
  transform: translateY(-4px);
}

.serve-card:hover::before {
  opacity: 1;
}

.serve-icon {
  width: 72px;
  height: 72px;
  background: rgba(242, 140, 40, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin: 0 auto 24px;
}

.serve-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.serve-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ===== FEATURES ===== */
.features-section {
  padding: var(--section-padding);
  background: var(--gray-50);
  position: relative;
}

.features-section .features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.features-section .feature-card {
  padding: 36px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
}

.features-section .feature-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.features-section .feature-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    var(--dark-secondary) 100%
  );
  border: none;
  color: white;
  padding: 48px;
}

.features-section .feature-card.featured:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.feature-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.features-section .feature-card.featured .feature-icon-wrap {
  background: rgba(242, 140, 40, 0.15);
}

.features-section .feature-card h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.features-section .feature-card.featured h3 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 14px;
}

.features-section .feature-card p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--gray-500);
}

.features-section .feature-card.featured p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15.5px;
}

.feature-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.feature-list li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-visual {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.visual-bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  flex: 1;
  position: relative;
  overflow: hidden;
}

.visual-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--orange), #f7b267);
}

.visual-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  min-width: 70px;
}

.visual-value {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  min-width: 50px;
  text-align: right;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: var(--section-padding);
  background: var(--white);
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonials-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 0 4px;
}

.carousel-arrows {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-300);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--gray-700);
  font-size: 20px;
}

.carousel-arrow:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 4px 12px rgba(242, 140, 40, 0.15);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-dot.active {
  background: var(--orange);
  transform: scale(1.2);
}

.testimonial-card {
  padding: 36px;
  background: var(--gray-50);
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 16px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-display);
}

.author-info {
}

.author-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
}

.author-role {
  font-size: 13px;
  color: var(--gray-500);
}

/* ===== AWARDS ===== */
.awards-section {
  padding: 80px 0;
  background: var(--orange-light);
  position: relative;
  overflow: hidden;
}

.awards-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(242, 140, 40, 0.08) 0%,
    transparent 50%
  );
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.award-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(242, 140, 40, 0.1);
  transition: all 0.3s;
}

.award-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.award-badge {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--dark);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  position: relative;
}

.award-badge .badge-label {
  position: absolute;
  bottom: -4px;
  right: -4px;
  background: var(--orange);
  color: white;
  font-size: 9px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.award-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.award-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== CTA ===== */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    #1a1a1a 50%,
    var(--orange-dark) 100%
  );
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}

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

.cta-section h2 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.cta-section h2 .text-orange {
  color: var(--orange);
}

.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 28px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-white {
  padding: 16px 36px;
  background: var(--white);
  color: var(--dark);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
  padding: 15px 36px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
}

.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

/* ===== FOOTER ===== */
footer {
  padding: 60px 0 32px;
  background:
    linear-gradient(180deg, rgba(255, 140, 50, 0.08) 0%, transparent 30%),
    #16161f;
  color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero-right {
    display: flex;
    justify-content: center;
    min-height: 360px;
    margin-top: 20px;
  }
  .phone-mockup {
    width: 190px;
    height: 360px;
  }
  .float-dashboard {
    right: -30px;
    top: 10px;
    width: 280px;
    padding: 16px 18px;
  }
  .stat-number {
    font-size: 20px;
  }
  .stat-card {
    padding: 12px 8px;
  }
  .features-section .features-grid {
    grid-template-columns: 1fr;
  }
  .features-section .feature-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .serve-grid,
  .testimonials-slide,
  .awards-grid {
    grid-template-columns: 1fr;
  }
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-title {
    font-size: 32px;
  }
  .cta-section h2 {
    font-size: 34px;
  }
  .hero-slogan {
    font-size: 17px;
    margin-top: 32px;
  }
}
@media (max-width: 500px) {
  .float-dashboard {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    margin-top: 16px;
  }
  .hero-right {
    flex-direction: column;
    align-items: center;
    min-height: auto;
  }
}

/* WordPress Menu Resets */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ==========================================================================
   Styles extracted from: About_Us_Final_10.html
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #f28c28;
  --orange-dark: #d97720;
  --orange-light: #fff3e6;
  --orange-glow: rgba(242, 140, 40, 0.15);
  --dark: #1a1a2e;
  --dark-secondary: #2d2d44;
  --gray-900: #1f2937;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.announcement-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(242, 140, 40, 0.08),
    transparent
  );
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

.announcement-bar span {
  position: relative;
  z-index: 1;
}
.announcement-bar .highlight {
  color: var(--orange);
  font-weight: 700;
}

/* ===== NAV ===== */
nav {
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--gray-900);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a {
  color: var(--orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  text-decoration: none;
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  transition: color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.nav-phone:hover {
  color: var(--orange-dark);
}

.btn-ghost {
  padding: 9px 20px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  background: transparent;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-primary {
  padding: 10px 24px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
  box-shadow: 0 2px 8px rgba(242, 140, 40, 0.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(242, 140, 40, 0.4);
}

/* ===== HERO ===== */
.about-hero {
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #fae0b0 0%, #f2c68a 50%, #e8ad6a 100%);
}

.about-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 24px;
  animation: fadeIn 0.8s ease-out both;
}

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

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  animation: fadeIn 0.8s ease-out 0.1s both;
}

.about-hero h1 .text-orange {
  color: var(--orange);
}

.about-hero .hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-700);
  margin: 0 auto 20px;
  max-width: 620px;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.about-hero .hero-slogan {
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin-top: 40px;
  padding-bottom: 10px;
  animation: fadeIn 0.8s ease-out 0.4s both;
}
.about-hero .hero-slogan .text-orange {
  color: var(--orange);
}

/* ===== OUR STORY ===== */
.story-section {
  padding: 100px 0;
  background: var(--white);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-content h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.story-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.story-visual {
  background: var(--orange-light);
  border-radius: 20px;
  padding: 48px;
  position: relative;
}

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

.story-stat {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(242, 140, 40, 0.15);
}

.story-stat .number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  display: block;
}

.story-stat .label {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ===== VALUES ===== */
.values-section {
  padding: 100px 0;
  background: var(--gray-50);
}

.section-eyebrow {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

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

.value-card {
  padding: 40px 32px;
  border-radius: 16px;
  background: var(--orange-light);
  border: 1px solid rgba(242, 140, 40, 0.15);
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.3s;
}

.value-card:hover {
  border-color: rgba(242, 140, 40, 0.35);
  box-shadow: 0 8px 32px rgba(242, 140, 40, 0.15);
  transform: translateY(-4px);
}

.value-card:hover::before {
  opacity: 1;
}

.value-icon {
  width: 72px;
  height: 72px;
  background: rgba(242, 140, 40, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ===== TIMELINE ===== */
.timeline-section {
  padding: 100px 0;
  background: var(--white);
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--orange),
    rgba(242, 140, 40, 0.2)
  );
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
  padding-left: 32px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--orange);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.2);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.timeline-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== STRIP ===== */
.stats-strip {
  padding: 60px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(242, 140, 40, 0.08) 0%,
    transparent 60%
  );
}

.strip-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  z-index: 1;
}

.strip-item {
  text-align: center;
}

.strip-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -1px;
}

.strip-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ===== CTA ===== */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    #1a1a1a 50%,
    var(--orange-dark) 100%
  );
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

.cta-section h2 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.2;
}
.cta-section h2 .text-orange {
  color: var(--orange);
}

.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-white {
  padding: 16px 36px;
  background: var(--white);
  color: var(--dark);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ===== FOOTER ===== */
footer {
  padding: 60px 0 32px;
  background:
    linear-gradient(180deg, rgba(255, 140, 50, 0.08) 0%, transparent 30%),
    #16161f;
  color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .about-hero h1 {
    font-size: 38px;
  }
  .section-title {
    font-size: 32px;
  }
  .cta-section h2 {
    font-size: 34px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .strip-inner {
    flex-wrap: wrap;
    gap: 32px;
  }
  .about-hero .hero-slogan {
    font-size: 17px;
    margin-top: 32px;
  }
}

/* ==========================================================================
   Styles extracted from: Blog_Images_Final_10.html
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #f28c28;
  --orange-dark: #d97720;
  --orange-light: #fff3e6;
  --orange-glow: rgba(242, 140, 40, 0.15);
  --dark: #1a1a2e;
  --dark-secondary: #2d2d44;
  --gray-900: #1f2937;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}
.announcement-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(242, 140, 40, 0.08),
    transparent
  );
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}
.announcement-bar span {
  position: relative;
  z-index: 1;
}
.announcement-bar .highlight {
  color: var(--orange);
  font-weight: 700;
}

/* ===== NAV ===== */
nav {
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--gray-900);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a {
  color: var(--orange);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  text-decoration: none;
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  transition: color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.nav-phone:hover {
  color: var(--orange-dark);
}

.btn-ghost {
  padding: 9px 20px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  background: transparent;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-primary {
  padding: 10px 24px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
  box-shadow: 0 2px 8px rgba(242, 140, 40, 0.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(242, 140, 40, 0.4);
}

/* ===== HERO ===== */
.blog-hero {
  padding: 50px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #fae0b0 0%, #f2c68a 50%, #e8ad6a 100%);
}
.blog-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  pointer-events: none;
}
.blog-hero .container {
  position: relative;
  z-index: 1;
}
.blog-hero h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -1.5px;
  animation: fadeIn 0.8s ease-out 0.1s both;
}
.blog-hero h1 .text-orange {
  color: var(--orange);
}
.blog-hero p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-700);
  max-width: 560px;
  margin: 0 auto;
  animation: fadeIn 0.8s ease-out 0.2s both;
}
.hero-slogan {
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin-top: 40px;
  padding-bottom: 10px;
  animation: fadeIn 0.8s ease-out 0.4s both;
}
.hero-slogan .text-orange {
  color: var(--orange);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== BLOG SECTION ===== */
.blog-section {
  padding: 80px 0 100px;
  background: var(--white);
}

.section-eyebrow {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 12px;
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.2;
}
.section-title .text-orange {
  color: var(--orange);
}
.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

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

.blog-card {
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.blog-card-image .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}
.blog-card-image .placeholder.orange-bg {
  background: linear-gradient(135deg, #f28c28 0%, #e8ad6a 100%);
}
.blog-card-image .placeholder.blue-bg {
  background: linear-gradient(135deg, #4a90d9 0%, #67b8f0 100%);
}
.blog-card-image .placeholder.green-bg {
  background: linear-gradient(135deg, #34a853 0%, #6fcf97 100%);
}
.blog-card-image .placeholder.purple-bg {
  background: linear-gradient(135deg, #7b61ff 0%, #a78bfa 100%);
}
.blog-card-image .placeholder.red-bg {
  background: linear-gradient(135deg, #e25c5c 0%, #f09090 100%);
}
.blog-card-image .placeholder.teal-bg {
  background: linear-gradient(135deg, #14b8a6 0%, #5eead4 100%);
}

.placeholder-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: white;
}
.placeholder-icon svg {
  opacity: 0.9;
}
.placeholder-icon span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.blog-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 10px;
}
.blog-card-content h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-card-content p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
  flex: 1;
}
.blog-card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray-400);
}
.read-more {
  color: var(--orange);
  font-weight: 600;
  font-size: 13px;
}

/* ===== CTA ===== */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    #1a1a1a 50%,
    var(--orange-dark) 100%
  );
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.2;
}
.cta-section h2 .text-orange {
  color: var(--orange);
}
.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.btn-white {
  padding: 16px 36px;
  background: var(--white);
  color: var(--dark);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ===== FOOTER ===== */
footer {
  padding: 60px 0 32px;
  background:
    linear-gradient(180deg, rgba(255, 140, 50, 0.08) 0%, transparent 30%),
    #16161f;
  color: rgba(255, 255, 255, 0.5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--orange);
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-hero h1 {
    font-size: 36px;
  }
  .section-title {
    font-size: 32px;
  }
  .cta-section h2 {
    font-size: 34px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-slogan {
    font-size: 17px;
    margin-top: 32px;
  }
}

/* ==========================================================================
   Styles extracted from: Contact_Us_Final_10.html
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #f28c28;
  --orange-dark: #d97720;
  --orange-light: #fff3e6;
  --orange-glow: rgba(242, 140, 40, 0.15);
  --dark: #1a1a2e;
  --dark-secondary: #2d2d44;
  --gray-900: #1f2937;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}
.announcement-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(242, 140, 40, 0.08),
    transparent
  );
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}
.announcement-bar span {
  position: relative;
  z-index: 1;
}
.announcement-bar .highlight {
  color: var(--orange);
  font-weight: 700;
}

/* ===== NAV ===== */
nav {
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--gray-900);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a {
  color: var(--orange);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-ghost {
  padding: 9px 20px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  background: transparent;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-primary {
  padding: 10px 24px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
  box-shadow: 0 2px 8px rgba(242, 140, 40, 0.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(242, 140, 40, 0.4);
}

/* ===== HERO ===== */
.contact-hero {
  padding: 50px 0 50px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #fae0b0 0%, #f2c68a 50%, #e8ad6a 100%);
  text-align: center;
}
.contact-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  pointer-events: none;
}
.contact-hero .container {
  position: relative;
  z-index: 1;
}
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -1.5px;
  animation: fadeIn 0.8s ease-out 0.1s both;
}
.contact-hero h1 .text-orange {
  color: var(--orange);
}
.contact-hero p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-700);
  max-width: 520px;
  margin: 0 auto;
  animation: fadeIn 0.8s ease-out 0.2s both;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 80px 0 100px;
  background: var(--white);
}

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

.contact-card {
  padding: 40px 32px;
  border-radius: 16px;
  background: var(--orange-light);
  border: 1px solid rgba(242, 140, 40, 0.15);
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.3s;
}
.contact-card:hover {
  border-color: rgba(242, 140, 40, 0.35);
  box-shadow: 0 8px 32px rgba(242, 140, 40, 0.15);
  transform: translateY(-4px);
}
.contact-card:hover::before {
  opacity: 1;
}

.contact-icon {
  width: 72px;
  height: 72px;
  background: rgba(242, 140, 40, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.contact-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 4px;
}
.contact-card a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
}
.contact-card a:hover {
  color: var(--orange-dark);
}

/* ===== MESSAGE SECTION ===== */
.message-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.message-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.message-content h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.message-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.message-content .support-image {
  display: block;
  max-width: 240px;
  height: auto;
  margin: 24px auto 0 150px;
}

.message-form {
  background: var(--white);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.form-group {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--gray-900);
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.1);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
  box-shadow: 0 2px 8px rgba(242, 140, 40, 0.3);
}
.btn-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(242, 140, 40, 0.4);
}

/* ===== CTA ===== */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    #1a1a1a 50%,
    var(--orange-dark) 100%
  );
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-content {
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.2;
}
.cta-section h2 .text-orange {
  color: var(--orange);
}
.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  justify-content: center;
}
.btn-white {
  padding: 16px 36px;
  background: var(--white);
  color: var(--dark);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ===== FOOTER ===== */
footer {
  padding: 60px 0 32px;
  background:
    linear-gradient(180deg, rgba(255, 140, 50, 0.08) 0%, transparent 30%),
    #16161f;
  color: rgba(255, 255, 255, 0.5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--orange);
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* Contact page: cards and form are always fully visible (no fade animation) */
.contact-section .fade-up,
.message-section .fade-up {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .message-grid {
    grid-template-columns: 1fr;
  }
  .contact-hero h1 {
    font-size: 36px;
  }
  .cta-section h2 {
    font-size: 34px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   Styles extracted from: Demo_Final_10.html
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #f28c28;
  --orange-dark: #d97720;
  --orange-light: #fff3e6;
  --orange-glow: rgba(242, 140, 40, 0.15);
  --dark: #1a1a2e;
  --dark-secondary: #2d2d44;
  --gray-900: #1f2937;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.announcement-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(242, 140, 40, 0.08),
    transparent
  );
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

.announcement-bar span {
  position: relative;
  z-index: 1;
}
.announcement-bar .highlight {
  color: var(--orange);
  font-weight: 700;
}

/* ===== NAV ===== */
nav {
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--gray-900);
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  text-decoration: none;
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  transition: color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.nav-phone:hover {
  color: var(--orange-dark);
}

.btn-ghost {
  padding: 9px 20px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  background: transparent;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-primary {
  padding: 10px 24px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
  box-shadow: 0 2px 8px rgba(242, 140, 40, 0.3);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(242, 140, 40, 0.4);
}

/* ===== HERO ===== */
.demo-hero {
  padding: 60px 0 0;
  background: linear-gradient(165deg, #fae0b0 0%, #f2c68a 50%, #e8ad6a 100%);
  position: relative;
  overflow: hidden;
}

.demo-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  pointer-events: none;
}

.demo-hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(242, 140, 40, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.demo-hero .container {
  position: relative;
  z-index: 1;
}

.hero-header {
  text-align: center;
  margin-bottom: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid rgba(242, 140, 40, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-dark);
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  animation: fadeInDown 0.6s ease-out;
}

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

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-header h1 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -1.5px;
  animation: fadeIn 0.8s ease-out 0.1s both;
}

.hero-header h1 .text-orange {
  color: var(--orange);
}

.hero-header p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

/* ===== MAIN CONTENT ===== */
.demo-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 80px;
  animation: fadeIn 0.8s ease-out 0.3s both;
}

/* ===== CALL TYPE CARDS ===== */
.call-types {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.call-types h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.call-types > p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 8px;
  line-height: 1.6;
}

.call-card {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: 16px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.call-card:hover {
  border-color: rgba(242, 140, 40, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.call-card.selected {
  border-color: var(--orange);
  background: var(--orange-light);
  box-shadow: 0 4px 20px rgba(242, 140, 40, 0.12);
}

.call-radio {
  width: 22px;
  height: 22px;
  border: 2px solid var(--gray-300);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.call-card.selected .call-radio {
  border-color: var(--orange);
  background: var(--orange);
}

.call-card.selected .call-radio::after {
  content: "";
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.call-card-content {
  flex: 1;
}

.call-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.call-card-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

.call-card-duration {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: var(--gray-50);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
}

.call-card.selected .call-card-duration {
  background: rgba(242, 140, 40, 0.12);
  color: var(--orange-dark);
}

.call-card-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

.call-card-icon {
  width: 44px;
  height: 44px;
  background: var(--gray-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gray-400);
  transition: all 0.2s;
}

.call-card.selected .call-card-icon {
  background: rgba(242, 140, 40, 0.12);
  color: var(--orange);
}

/* Trust signals */
.trust-signals {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-500);
}

.trust-icon {
  width: 32px;
  height: 32px;
  background: var(--orange-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}

/* ===== FORM ===== */
.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.form-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(
    135deg,
    rgba(242, 140, 40, 0.15),
    transparent 50%
  );
  z-index: -1;
}

.form-card h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.form-card > p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 28px;
}

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

.form-card .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-card .form-group.full-width {
  grid-column: span 2;
}

.form-card .form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}

.form-card .form-group label .required {
  color: var(--orange);
  margin-left: 2px;
}

.form-card .form-group input,
.form-card .form-group select,
.form-card .form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--gray-100);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--gray-50);
  transition: all 0.2s;
  outline: none;
}

.form-card .form-group input:focus,
.form-card .form-group select:focus,
.form-card .form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.1);
}

.form-card .form-group input::placeholder,
.form-card .form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-card .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-card .form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 16px;
  background: var(--gray-50);
  border-radius: 10px;
  border: 1px solid var(--gray-100);
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--orange);
  flex-shrink: 0;
  cursor: pointer;
}

.form-consent p {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.6;
}

.form-consent a {
  color: var(--orange);
  text-decoration: none;
}

.form-consent a:hover {
  text-decoration: underline;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.captcha-row label {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
}

.captcha-row input {
  width: 80px;
  padding: 10px 12px;
  border: 1.5px solid var(--gray-100);
  border-radius: 10px;
  font-size: 14px;
  font-family: var(--font-body);
  background: var(--gray-50);
  outline: none;
  text-align: center;
  transition: all 0.2s;
}

.captcha-row input:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.1);
}

.form-card .btn-submit {
  width: 100%;
  padding: 16px 32px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-display);
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 24px;
  box-shadow: 0 4px 16px rgba(242, 140, 40, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-card .btn-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(242, 140, 40, 0.4);
}

.form-secure {
  text-align: center;
  margin-top: 14px;
  font-size: 12px;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ===== CTA ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    #1a1a1a 50%,
    var(--orange-dark) 100%
  );
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

.cta-section h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.cta-section h2 .text-orange {
  color: var(--orange);
}

.cta-section p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
footer {
  padding: 60px 0 32px;
  background:
    linear-gradient(180deg, rgba(255, 140, 50, 0.08) 0%, transparent 30%),
    #16161f;
  color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .demo-content {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-card .form-group.full-width {
    grid-column: span 1;
  }
  .hero-header h1 {
    font-size: 34px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-section h2 {
    font-size: 32px;
  }
  .nav-links {
    display: none;
  }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Styles extracted from: FAQ_Final_10.html
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #f28c28;
  --orange-dark: #d97720;
  --orange-light: #fff3e6;
  --orange-glow: rgba(242, 140, 40, 0.15);
  --dark: #1a1a2e;
  --dark-secondary: #2d2d44;
  --gray-900: #1f2937;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.announcement-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(242, 140, 40, 0.08),
    transparent
  );
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

.announcement-bar span {
  position: relative;
  z-index: 1;
}
.announcement-bar .highlight {
  color: var(--orange);
  font-weight: 700;
}

/* ===== NAV ===== */
nav {
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--gray-900);
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a {
  color: var(--orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  text-decoration: none;
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  transition: color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.nav-phone:hover {
  color: var(--orange-dark);
}

.btn-ghost {
  padding: 9px 20px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  background: transparent;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-primary {
  padding: 10px 24px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
  box-shadow: 0 2px 8px rgba(242, 140, 40, 0.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(242, 140, 40, 0.4);
}

/* ===== HERO ===== */
.faq-hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #fae0b0 0%, #f2c68a 50%, #e8ad6a 100%);
}

.faq-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  pointer-events: none;
}

.faq-hero .container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid rgba(242, 140, 40, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-dark);
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  animation: fadeInDown 0.6s ease-out;
}

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

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-hero h1 {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  animation: fadeIn 0.8s ease-out 0.1s both;
}

.faq-hero h1 .text-orange {
  color: var(--orange);
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-500);
  margin: 0 auto 40px;
  max-width: 580px;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

/* Search Bar */
.faq-search {
  max-width: 520px;
  margin: 0 auto;
  position: relative;
  animation: fadeIn 0.8s ease-out 0.3s both;
}

.faq-search input {
  width: 100%;
  padding: 18px 24px 18px 52px;
  border-radius: 14px;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  font-size: 16px;
  font-family: var(--font-body);
  color: var(--gray-900);
  outline: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.2s;
}

.faq-search input::placeholder {
  color: var(--gray-400);
}
.faq-search input:focus {
  border-color: var(--orange);
  box-shadow: 0 4px 24px rgba(242, 140, 40, 0.12);
}

.faq-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--gray-400);
  pointer-events: none;
}

/* ===== QUICK ANSWERS STRIP ===== */
.quick-strip {
  padding: 48px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.quick-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.quick-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
}

.quick-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(242, 140, 40, 0.3);
  transform: translateY(-2px);
}

.quick-icon {
  width: 52px;
  height: 52px;
  background: rgba(242, 140, 40, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--orange);
}

.quick-card h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.quick-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ===== SECTION STYLES ===== */
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* ===== FAQ ACCORDION ===== */
.faq-section {
  padding: 100px 0;
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}

.faq-categories {
  position: sticky;
  top: 100px;
  align-self: start;
}

.faq-cat-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.faq-cat-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  border: none;
  background: transparent;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
  text-align: left;
  margin-bottom: 4px;
}

.faq-cat-btn:hover {
  background: var(--gray-50);
  color: var(--gray-700);
}

.faq-cat-btn.active {
  background: var(--orange-light);
  color: var(--orange-dark);
}

.faq-cat-icon {
  font-size: 18px;
}

.faq-cat-count {
  margin-left: auto;
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
}

.faq-cat-btn.active .faq-cat-count {
  background: rgba(242, 140, 40, 0.15);
  color: var(--orange);
}

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

.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: rgba(242, 140, 40, 0.15);
}

.faq-item.open {
  border-color: rgba(242, 140, 40, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-item.open .faq-question {
  background: var(--orange-light);
}

.faq-question h3 {
  font-family: var(--font-display);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}

.faq-item.open .faq-question h3 {
  color: var(--orange-dark);
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  font-size: 14px;
  color: var(--gray-500);
}

.faq-item.open .faq-toggle {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 24px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-500);
}

/* ===== STILL HAVE QUESTIONS ===== */
.faq-contact-section {
  padding: 80px 0;
  background: var(--gray-50);
}

.faq-contact-card {
  background: linear-gradient(165deg, #fae0b0 0%, #f2c68a 50%, #e8ad6a 100%);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.faq-contact-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(242, 140, 40, 0.1) 0%,
    transparent 60%
  );
}

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

.contact-left h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.contact-left p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 28px;
}

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

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-method:hover {
  background: var(--white);
  border-color: rgba(242, 140, 40, 0.3);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-method-icon {
  width: 42px;
  height: 42px;
  background: var(--orange-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  color: var(--orange);
}

.contact-method-text h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.contact-method-text p {
  font-size: 13px;
  color: var(--gray-500);
  margin: 0;
}

.contact-right {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.support-stat {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.support-stat:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.support-stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -1px;
}

.support-stat-label {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
}

/* ===== CTA ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    #1a1a1a 50%,
    var(--orange-dark) 100%
  );
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.25;
}

.cta-section h2 .text-orange {
  color: var(--orange);
}

.cta-section .cta-content > p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-white {
  padding: 16px 36px;
  background: var(--white);
  color: var(--dark);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.btn-outline-light {
  padding: 15px 36px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
}
.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

/* ===== FOOTER ===== */
footer {
  padding: 60px 0 32px;
  background: #111122;
  color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .faq-hero h1 {
    font-size: 38px;
  }
  .section-title {
    font-size: 32px;
  }
  .cta-section h2 {
    font-size: 34px;
  }
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-categories {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  .faq-cat-btn {
    width: auto;
  }
  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-contact-card {
    grid-template-columns: 1fr;
    padding: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==========================================================================
   Styles extracted from: Features_Final 10.html
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #f28c28;
  --orange-dark: #d97720;
  --orange-light: #fff3e6;
  --orange-glow: rgba(242, 140, 40, 0.15);
  --dark: #1a1a2e;
  --dark-secondary: #2d2d44;
  --gray-900: #1f2937;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.announcement-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(242, 140, 40, 0.08),
    transparent
  );
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

.announcement-bar span {
  position: relative;
  z-index: 1;
}
.announcement-bar .highlight {
  color: var(--orange);
  font-weight: 700;
}

/* ===== NAV ===== */
nav {
  padding: 16px 0;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--gray-900);
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a {
  color: var(--orange);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  text-decoration: none;
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  transition: color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.nav-phone:hover {
  color: var(--orange-dark);
}

.btn-ghost {
  padding: 9px 20px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  background: transparent;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-primary {
  padding: 10px 24px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
  box-shadow: 0 2px 8px rgba(242, 140, 40, 0.3);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(242, 140, 40, 0.4);
}

.btn-large {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 10px;
}

/* ===== HERO ===== */
.features-hero {
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #fae0b0 0%, #f2c68a 50%, #e8ad6a 100%);
}

.features-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  pointer-events: none;
}

.features-hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid rgba(242, 140, 40, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-dark);
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  animation: fadeInDown 0.6s ease-out;
}

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

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.features-hero h1 {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 800;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  animation: fadeIn 0.8s ease-out 0.1s both;
}

.features-hero h1 .text-orange {
  color: var(--orange);
}
.text-orange {
  color: var(--orange);
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 20px;
  max-width: 480px;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.hero-slogan {
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  color: var(--dark) !important;
  text-align: center;
  margin-top: 40px;
  padding-bottom: 10px;
  animation: fadeIn 0.8s ease-out 0.4s both;
}

.hero-slogan .text-orange {
  color: var(--orange);
}

.hero-feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeIn 0.8s ease-out 0.3s both;
}

.hero-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
}

.hero-highlight .check {
  width: 24px;
  height: 24px;
  background: var(--orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.hero-right {
  animation: fadeIn 1s ease-out 0.4s both;
}

.hero-stats-visual {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-stats-visual::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(242, 140, 40, 0.2), transparent 50%);
  z-index: -1;
}

.stats-visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}

.stats-visual-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--gray-900);
}

.stats-visual-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  background: var(--orange-light);
  padding: 4px 10px;
  border-radius: 6px;
}

.feature-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature-preview-item {
  padding: 16px;
  background: var(--gray-50);
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: all 0.2s;
}

.feature-preview-item:hover {
  border-color: rgba(242, 140, 40, 0.2);
  background: var(--orange-light);
}

.feature-preview-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.feature-preview-name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
}

/* ===== FEATURES COUNT STRIP ===== */
.features-strip {
  padding: 48px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.features-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.strip-item {
  text-align: center;
}

.strip-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -1px;
}

.strip-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  margin-top: 2px;
}

/* ===== SECTION STYLES ===== */
.section-eyebrow {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* ===== CORE FEATURES (4-col highlight) ===== */
.core-features {
  padding: 100px 0;
  background: var(--white);
}

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

.core-card {
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  background: var(--white);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.core-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.3s;
}

.core-card:hover {
  border-color: rgba(242, 140, 40, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.core-card:hover::before {
  opacity: 1;
}

.core-icon {
  width: 64px;
  height: 64px;
  background: var(--orange-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
  transition: all 0.3s;
}

.core-card:hover .core-icon {
  background: var(--orange);
  transform: scale(1.05);
}

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

.core-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.core-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== FEATURED SECTION ===== */
.featured-feature {
  padding: 100px 0;
  background: var(--gray-50);
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    var(--dark-secondary) 100%
  );
  border-radius: 24px;
  padding: 60px;
  color: white;
  position: relative;
  overflow: hidden;
}

.featured-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(242, 140, 40, 0.1) 0%,
    transparent 60%
  );
}

.featured-content {
  position: relative;
  z-index: 1;
}

.featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(242, 140, 40, 0.15);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featured-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.featured-content > p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
}

.featured-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.featured-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.featured-list li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.featured-visual {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.visual-metric:last-child {
  border-bottom: none;
}

.visual-metric-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.visual-metric-bar {
  flex: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  margin: 0 16px;
  overflow: hidden;
}

.visual-metric-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--orange), #f7b267);
}

.visual-metric-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: white;
  min-width: 44px;
  text-align: right;
}

/* ===== ALL FEATURES GRID ===== */
.all-features {
  padding: 100px 0;
  background: var(--white);
}

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

.feature-tile {
  padding: 28px 24px;
  border-radius: 14px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
  text-align: center;
}

.feature-tile:hover {
  background: var(--white);
  border-color: rgba(242, 140, 40, 0.2);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.tile-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
  transition: all 0.3s;
}

.feature-tile:hover .tile-icon {
  background: var(--orange);
}

.feature-tile h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.feature-tile p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ===== WHAT'S NEW ===== */
.whats-new {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.whats-new::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(242, 140, 40, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.whats-new-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.new-feature-card {
  border-radius: 20px;
  border: 1.5px solid rgba(242, 140, 40, 0.18);
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.new-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #f7b267);
}

.new-feature-card::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  background: radial-gradient(
    circle,
    rgba(242, 140, 40, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.new-feature-card:hover {
  border-color: rgba(242, 140, 40, 0.35);
  box-shadow:
    0 12px 40px rgba(242, 140, 40, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.04);
  transform: translateY(-4px);
}

.new-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--orange), #e87a18);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(242, 140, 40, 0.3);
}

.new-badge svg {
  flex-shrink: 0;
}

.new-feature-icon {
  width: 72px;
  height: 72px;
  background: var(--orange-light);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.new-feature-card:hover .new-feature-icon {
  background: var(--orange);
  transform: scale(1.05);
}

.new-feature-card:hover .new-feature-icon svg {
  stroke: white;
}

.new-feature-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.new-feature-card > p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 24px;
}

.new-feature-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.new-feature-highlights .nf-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.5;
}

.new-feature-highlights .nf-check {
  width: 20px;
  height: 20px;
  background: var(--orange-light);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.new-feature-card:hover .nf-check {
  background: var(--orange);
  color: white;
}

/* ===== FEATURE SUGGESTION ===== */
.suggestion-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--gray-50) 0%,
    var(--orange-light) 100%
  );
}

.suggestion-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(242, 140, 40, 0.1);
  text-align: center;
}

.suggestion-icon {
  width: 64px;
  height: 64px;
  background: var(--orange-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--orange);
}

.suggestion-card h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.suggestion-card > p {
  font-size: 16px;
  color: var(--gray-500);
  margin-bottom: 32px;
  line-height: 1.6;
}

.suggestion-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.suggestion-form textarea {
  width: 100%;
  min-height: 140px;
  padding: 16px 20px;
  border: 1.5px solid var(--gray-200);
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--gray-900);
  resize: vertical;
  transition: all 0.2s;
}

.suggestion-form textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.1);
}

.suggestion-form textarea::placeholder {
  color: var(--gray-400);
}

.suggestion-form .btn-submit {
  padding: 14px 32px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
  align-self: center;
}

.suggestion-form .btn-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(242, 140, 40, 0.3);
}

/* ===== CTA ===== */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(
    105deg,
    #1a1a2e 0%,
    #2d2d44 40%,
    #8b5a2b 75%,
    #d97720 100%
  );
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(
    ellipse at 80% 50%,
    rgba(242, 140, 40, 0.4) 0%,
    transparent 60%
  );
  pointer-events: none;
}

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

.cta-section h2 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.cta-section h2 .text-orange {
  color: var(--orange);
}

.cta-section > .container > .cta-content > p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-white {
  padding: 16px 36px;
  background: var(--white);
  color: var(--dark);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
  padding: 15px 36px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
}

.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

/* ===== FOOTER ===== */
footer {
  padding: 60px 0 32px;
  background:
    linear-gradient(180deg, rgba(255, 140, 50, 0.08) 0%, transparent 30%),
    #16161f;
  color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .core-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .featured-card {
    grid-template-columns: 1fr;
  }
  .features-hero .container {
    grid-template-columns: 1fr;
  }
  .whats-new-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .core-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 32px;
  }
  .features-hero h1 {
    font-size: 36px;
  }
  .featured-card {
    padding: 36px;
  }
  .strip-inner {
    gap: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .whats-new-grid {
    grid-template-columns: 1fr;
  }
  .new-feature-card {
    padding: 32px 24px;
  }
}

/* ==========================================================================
   Styles extracted from: Pricing_Final_10.html
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #f28c28;
  --orange-dark: #d97720;
  --orange-light: #fff3e6;
  --orange-glow: rgba(242, 140, 40, 0.15);
  --dark: #1a1a2e;
  --dark-secondary: #2d2d44;
  --gray-900: #1f2937;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --section-padding: 100px 0;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.announcement-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(242, 140, 40, 0.08),
    transparent
  );
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

.announcement-bar span {
  position: relative;
  z-index: 1;
}

.announcement-bar .highlight {
  color: var(--orange);
  font-weight: 700;
}

/* ===== NAV ===== */
nav {
  padding: 16px 0;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--gray-900);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--orange);
}
.nav-links a.active,
.nav-links .current-menu-item > a {
  color: var(--orange);
  font-weight: 700;
}

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

.nav-phone {
  text-decoration: none;
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  transition: color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.nav-phone:hover {
  color: var(--orange-dark);
}

.btn-ghost {
  padding: 9px 20px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  background: transparent;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-primary {
  padding: 10px 24px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
  box-shadow: 0 2px 8px rgba(242, 140, 40, 0.3);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(242, 140, 40, 0.4);
}

.btn-large {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 10px;
}

.btn-large-ghost {
  padding: 15px 36px;
  font-size: 16px;
  border-radius: 10px;
}

.btn-navy {
  background: #1a1a2e;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.3);
}

.btn-navy:hover {
  background: #2d2d44;
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.4);
}

/* ===== HERO ===== */
.pricing-hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #fae0b0 0%, #f2c68a 50%, #e8ad6a 100%);
}

.pricing-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-hero::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(242, 140, 40, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.pricing-hero .container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid rgba(242, 140, 40, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-dark);
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  animation: fadeInDown 0.6s ease-out;
}

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

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-hero h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  animation: fadeIn 0.8s ease-out 0.1s both;
}

.pricing-hero h1 .text-orange {
  color: var(--orange);
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  animation: fadeIn 0.8s ease-out 0.3s both;
}

/* ===== SECTION STYLES ===== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--orange-light);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 560px;
}

/* ===== CUSTOM PRICING SECTION ===== */
.pricing-approach {
  padding: var(--section-padding);
  background: var(--white);
}

.pricing-approach .container {
  text-align: center;
}

.pricing-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 60px;
  text-align: left;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.pricing-card:hover {
  border-color: rgba(242, 140, 40, 0.3);
  box-shadow: 0 12px 40px rgba(242, 140, 40, 0.08);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: 0 12px 40px rgba(242, 140, 40, 0.12);
}

.pricing-card.featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}

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

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.pricing-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ===== BILLING OPTIONS ===== */
.billing-section {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.billing-section .container {
  text-align: center;
}

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

.billing-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.billing-card:hover {
  border-color: rgba(242, 140, 40, 0.3);
  box-shadow: 0 8px 32px rgba(242, 140, 40, 0.08);
  transform: translateY(-4px);
}

.billing-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.billing-card h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.billing-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: var(--section-padding);
  background: var(--white);
}

.how-it-works .container {
  text-align: center;
}

.how-it-works-card {
  background: linear-gradient(135deg, var(--dark) 0%, #1e1e38 100%);
  border-radius: 24px;
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}

.how-it-works-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(
      circle at 30% 40%,
      rgba(242, 140, 40, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(242, 140, 40, 0.05) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.how-it-works-card > * {
  position: relative;
  z-index: 1;
}

.how-it-works .section-label {
  background: rgba(242, 140, 40, 0.15);
}

.how-it-works .section-title {
  color: var(--white);
}

.step-item h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step-item p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--orange),
    var(--orange),
    transparent
  );
  opacity: 0.25;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(242, 140, 40, 0.25);
}

/* ===== QUOTE CTA ===== */
.page-template-template-pricing .quote-section {
  padding: 80px 0;
  background: var(--orange-light);
  position: relative;
  overflow: hidden;
}

.quote-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.quote-left h2 {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.quote-left h2 .text-orange {
  color: var(--orange);
}

.quote-left p {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 32px;
}

.quote-right {
  background: var(--white);
  border: 1px solid rgba(242, 140, 40, 0.15);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.quote-right .clock-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(242, 140, 40, 0.3);
}

.quote-right h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.quote-right p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 28px;
}

.btn-orange-large {
  display: inline-block;
  padding: 18px 44px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
  box-shadow: 0 4px 16px rgba(242, 140, 40, 0.35);
}

.btn-orange-large:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(242, 140, 40, 0.45);
}

/* ===== CTA ===== */
.cta-section {
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    #1a1a1a 50%,
    var(--orange-dark) 100%
  );
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}

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

.cta-section h2 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.cta-section h2 .text-orange {
  color: var(--orange);
}

.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-white {
  padding: 16px 36px;
  background: var(--white);
  color: var(--dark);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-display);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ===== FOOTER ===== */
footer {
  padding: 60px 0 32px;
  background:
    linear-gradient(180deg, rgba(255, 140, 50, 0.08) 0%, transparent 30%),
    #16161f;
  color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .pricing-hero h1 {
    font-size: 38px;
  }
  .pricing-card-grid {
    grid-template-columns: 1fr;
  }
  .billing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .steps-grid::before {
    display: none;
  }
  .quote-inner {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .section-title {
    font-size: 32px;
  }
  .cta-section h2 {
    font-size: 34px;
  }
  .quote-left h2 {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .billing-grid {
    grid-template-columns: 1fr;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .nav-links {
    display: none;
  }
}

/* ==========================================================================
   Styles extracted from: Team_Final_Second_Version_10.html
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #f28c28;
  --orange-dark: #d97720;
  --orange-light: #fff3e6;
  --orange-glow: rgba(242, 140, 40, 0.15);
  --dark: #1a1a2e;
  --dark-secondary: #2d2d44;
  --gray-900: #1f2937;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}
.announcement-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(242, 140, 40, 0.08),
    transparent
  );
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}
.announcement-bar span {
  position: relative;
  z-index: 1;
}
.announcement-bar .highlight {
  color: var(--orange);
  font-weight: 700;
}

/* ===== NAV ===== */
nav {
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--gray-900);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--orange);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-ghost {
  padding: 9px 20px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  background: transparent;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-primary {
  padding: 10px 24px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
  box-shadow: 0 2px 8px rgba(242, 140, 40, 0.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(242, 140, 40, 0.4);
}

/* ===== HERO ===== */
.team-hero {
  padding: 60px 0 70px;
  background: linear-gradient(165deg, #f5d9a8 0%, #e8c088 50%, #dead6e 100%);
  position: relative;
  overflow: hidden;
}
.team-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.team-hero .container {
  position: relative;
  z-index: 1;
}
.team-hero h1 .text-orange {
  color: var(--orange);
}
.team-hero h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1.5px;
  line-height: 1.15;
  animation: fadeIn 0.8s ease-out both;
}
.team-hero p {
  font-size: 18px;
  color: var(--gray-700);
  margin-top: 14px;
  max-width: 500px;
  line-height: 1.7;
  animation: fadeIn 0.8s ease-out 0.15s both;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== LEADERSHIP ===== */
.section-eyebrow {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 12px;
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -1px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 16px;
  color: var(--gray-500);
  text-align: center;
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.team-section {
  padding: 80px 0;
}
.team-section.alt {
  background: var(--gray-50);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
}

.team-card {
  text-align: center;
  transition: all 0.3s;
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-avatar {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  background: var(--gray-100);
  margin: 0 auto 16px;
  overflow: hidden;
  border: 3px solid var(--gray-100);
  transition: border-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card:hover .team-avatar {
  border-color: var(--orange);
}

.team-avatar-initials {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--gray-300);
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 8px;
  line-height: 1.4;
}

.team-card .contact-link {
  display: block;
  font-size: 12px;
  color: var(--orange);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.6;
}

.team-card .contact-link:hover {
  color: var(--orange-dark);
  text-decoration: underline;
}

.team-card .phone {
  font-size: 12px;
  color: var(--gray-500);
}

/* Leadership badge */
.team-card.leadership .team-avatar {
  border-color: var(--orange);
  box-shadow: 0 4px 16px rgba(242, 140, 40, 0.15);
}

.leadership-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: var(--orange-light);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--orange-dark);
  margin-bottom: 12px;
}

/* ===== CTA ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    #1a1a1a 50%,
    var(--orange-dark) 100%
  );
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.2;
}
.cta-section h2 .text-orange {
  color: var(--orange);
}
.cta-section p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.btn-white {
  padding: 16px 36px;
  background: var(--white);
  color: var(--dark);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.btn-outline-light {
  padding: 15px 36px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
}
.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

/* ===== FOOTER ===== */
footer {
  padding: 60px 0 32px;
  background:
    linear-gradient(180deg, rgba(255, 140, 50, 0.08) 0%, transparent 30%),
    #16161f;
  color: rgba(255, 255, 255, 0.5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--orange);
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* Scroll animations */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
  .team-hero h1 {
    font-size: 36px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-section h2 {
    font-size: 32px;
  }
  .nav-links {
    display: none;
  }
}

/* ==========================================================================
   Styles extracted from: Us_v_Them_Final_10.html
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #f28c28;
  --orange-dark: #d97720;
  --orange-light: #fff3e6;
  --orange-glow: rgba(242, 140, 40, 0.15);
  --dark: #1a1a2e;
  --dark-secondary: #2d2d44;
  --green: #22c55e;
  --green-light: #f0fdf4;
  --red: #ef4444;
  --red-light: #fef2f2;
  --gray-900: #1f2937;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.announcement-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(242, 140, 40, 0.08),
    transparent
  );
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

.announcement-bar span {
  position: relative;
  z-index: 1;
}
.announcement-bar .highlight {
  color: var(--orange);
  font-weight: 700;
}

/* ===== NAV ===== */
nav {
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--gray-900);
}

.nav-logo .logo-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a {
  color: var(--orange);
}

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

.btn-ghost {
  padding: 9px 20px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  background: transparent;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--orange);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-phone:hover {
  color: var(--orange-dark);
}
.nav-phone svg {
  flex-shrink: 0;
  stroke: var(--orange);
}

.btn-primary {
  padding: 10px 24px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
  box-shadow: 0 2px 8px rgba(242, 140, 40, 0.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(242, 140, 40, 0.4);
}

.btn-large {
  padding: 16px 36px;
  font-size: 16px;
  border-radius: 10px;
}

/* ===== HERO ===== */
.comparison-hero {
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #fae0b0 0%, #f2c68a 50%, #e8ad6a 100%);
}

.comparison-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  pointer-events: none;
}

.comparison-hero .container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--white);
  border: 1px solid rgba(242, 140, 40, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-dark);
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  animation: fadeInDown 0.6s ease-out;
}

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

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.comparison-hero h1 {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  animation: fadeIn 0.8s ease-out 0.1s both;
}

.comparison-hero h1 .text-orange {
  color: var(--orange);
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-500);
  margin: 0 auto 40px;
  max-width: 560px;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
  animation: fadeIn 0.8s ease-out 0.3s both;
}

.btn-large-ghost {
  padding: 15px 36px;
  font-size: 16px;
  border-radius: 10px;
}

.hero-slogan {
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  margin-top: 40px;
  padding-bottom: 10px;
  animation: fadeIn 0.8s ease-out 0.4s both;
}

.hero-slogan .text-orange {
  color: var(--orange);
}

/* ===== COMPARISON TABLE ===== */
.comparison-section {
  padding: 100px 0;
  background: var(--white);
}

.section-eyebrow {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 12px;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.comparison-table-wrap {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--gray-100);
}

.table-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  background: var(--dark);
}

.table-header-cell {
  padding: 24px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
}

.table-header-cell.us {
  background: var(--orange);
  color: white;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
}

.table-header-cell.us .header-logo {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
}

.table-header-cell.them {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.table-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.2s;
}

.table-row:last-child {
  border-bottom: none;
}

.table-row:hover {
  background: var(--gray-50);
}

.table-cell {
  padding: 20px 28px;
  font-size: 14.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.table-cell.feature-name {
  font-weight: 600;
  color: var(--dark);
  font-family: var(--font-display);
}

.table-cell.us-cell {
  color: var(--gray-700);
  background: rgba(242, 140, 40, 0.12);
  justify-content: center;
  text-align: center;
}

.table-cell.them-cell {
  color: var(--gray-500);
  justify-content: center;
  text-align: center;
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.check-icon.green {
  background: var(--green-light);
  color: var(--green);
}

.check-icon.red {
  background: var(--red-light);
  color: var(--red);
}

.table-cell-text {
  line-height: 1.4;
}

/* ===== ADVANTAGES ===== */
.advantages-section {
  padding: 80px 0 100px;
  background: var(--gray-50);
}

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

.advantage-card {
  padding: 40px 32px;
  border-radius: 16px;
  background: var(--orange-light);
  border: 1px solid rgba(242, 140, 40, 0.15);
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.advantage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.3s;
}

.advantage-card:hover {
  border-color: rgba(242, 140, 40, 0.35);
  box-shadow: 0 8px 32px rgba(242, 140, 40, 0.15);
  transform: translateY(-4px);
}

.advantage-card:hover::before {
  opacity: 1;
}

.advantage-icon {
  width: 72px;
  height: 72px;
  background: rgba(242, 140, 40, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
}

.advantage-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.advantage-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ===== WHY SWITCH STRIP ===== */
.why-switch {
  padding: 60px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.why-switch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.switch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.switch-item {
}

.switch-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.switch-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* ===== TESTIMONIAL QUOTE ===== */
.quote-section {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.quote-card {
  max-width: 720px;
  margin: 0 auto;
}

.quote-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: var(--orange);
  font-size: 22px;
  margin-bottom: 24px;
}

.quote-text {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  margin-bottom: 28px;
  font-style: italic;
  letter-spacing: -0.3px;
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.quote-avatar {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-display);
}

.quote-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
}

.quote-role {
  font-size: 13px;
  color: var(--gray-500);
}

/* ===== DETAILED BREAKDOWN ===== */
.breakdown-section {
  padding: 100px 0;
  background: var(--gray-50);
}

.breakdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.breakdown-card {
  padding: 32px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: all 0.3s;
}

.breakdown-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.breakdown-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.breakdown-icon {
  width: 44px;
  height: 44px;
  background: var(--orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.breakdown-header h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
}

.breakdown-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.compare-box {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 13.5px;
  line-height: 1.5;
}

.compare-box.ours {
  background: var(--green-light);
  border: 1px solid rgba(34, 197, 94, 0.15);
  color: #166534;
}

.compare-box.theirs {
  background: var(--red-light);
  border: 1px solid rgba(239, 68, 68, 0.1);
  color: #991b1b;
}

.compare-box-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.compare-box.ours .compare-box-label {
  color: var(--green);
}
.compare-box.theirs .compare-box-label {
  color: var(--red);
}

/* ===== CTA ===== */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    #1a1a1a 50%,
    var(--orange-dark) 100%
  );
  position: relative;
  overflow: hidden;
  text-align: center;
}

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

.cta-section h2 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.2;
}

.cta-section h2 .text-orange {
  color: var(--orange);
}

.cta-section .cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-white {
  padding: 16px 36px;
  background: var(--white);
  color: var(--dark);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
  padding: 15px 36px;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
}
.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

/* ===== FOOTER ===== */
footer {
  padding: 60px 0 32px;
  background:
    linear-gradient(180deg, rgba(255, 140, 50, 0.08) 0%, transparent 30%),
    #16161f;
  color: rgba(255, 255, 255, 0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--orange);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .comparison-hero h1 {
    font-size: 38px;
  }
  .section-title {
    font-size: 32px;
  }
  .cta-section h2 {
    font-size: 34px;
  }
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  .switch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .breakdown-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .comparison-table-wrap {
    overflow-x: auto;
  }
  .table-header,
  .table-row {
    min-width: 700px;
  }
}

/* ==========================================================================
   Styles extracted from: Who_We_Serve_Final_10.html
   ========================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #f28c28;
  --orange-dark: #d97720;
  --orange-light: #fff3e6;
  --orange-glow: rgba(242, 140, 40, 0.15);
  --dark: #1a1a2e;
  --dark-secondary: #2d2d44;
  --gray-900: #1f2937;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --font-display: "Plus Jakarta Sans", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--dark);
  color: var(--white);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}
.announcement-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(242, 140, 40, 0.08),
    transparent
  );
  animation: shimmer 4s ease-in-out infinite;
}
@keyframes shimmer {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}
.announcement-bar span {
  position: relative;
  z-index: 1;
}
.announcement-bar .highlight {
  color: var(--orange);
  font-weight: 700;
}

/* ===== NAV ===== */
nav {
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--gray-900);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a {
  color: var(--orange);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  text-decoration: none;
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-body);
  transition: color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.nav-phone:hover {
  color: var(--orange-dark);
}

.btn-ghost {
  padding: 9px 20px;
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  background: transparent;
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
}
.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}
.btn-primary {
  padding: 10px 24px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
  box-shadow: 0 2px 8px rgba(242, 140, 40, 0.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(242, 140, 40, 0.4);
}

/* ===== HERO ===== */
.serve-hero {
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #fae0b0 0%, #f2c68a 50%, #e8ad6a 100%);
  text-align: center;
}
.serve-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  pointer-events: none;
}
.serve-hero .container {
  position: relative;
  z-index: 1;
}
.serve-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 24px;
  animation: fadeIn 0.8s ease-out both;
}
.serve-hero .hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}
.serve-hero h1 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -1.5px;
  animation: fadeIn 0.8s ease-out 0.1s both;
}
.serve-hero h1 .text-orange {
  color: var(--orange);
}
.serve-hero p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-700);
  max-width: 620px;
  margin: 0 auto;
  animation: fadeIn 0.8s ease-out 0.2s both;
}
.serve-hero .hero-slogan {
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
  color: var(--dark) !important;
  text-align: center;
  margin-top: 40px;
  padding-bottom: 10px;
  animation: fadeIn 0.8s ease-out 0.4s both;
}
.serve-hero .hero-slogan .text-orange {
  color: var(--orange);
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== OVERVIEW ===== */
.overview-section {
  padding: 80px 0;
  background: var(--white);
}
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.overview-content h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.overview-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--gray-500);
  margin-bottom: 24px;
}
.overview-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.overview-list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-700);
}
.overview-list .check {
  color: var(--orange);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.overview-list strong {
  display: inline-block;
  min-width: 160px;
  flex-shrink: 0;
}

.overview-visual {
  background: var(--orange-light);
  border-radius: 20px;
  padding: 48px;
}
.overview-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.overview-stat {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(242, 140, 40, 0.15);
}
.overview-stat .number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  display: block;
}
.overview-stat .label {
  font-size: 12px;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ===== INDUSTRIES ===== */
.industries-section {
  padding: 100px 0;
  background: var(--gray-50);
}
.section-eyebrow {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--orange);
  margin-bottom: 12px;
  text-align: center;
}
.section-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--dark);
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

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

.industry-card {
  padding: 40px 28px;
  border-radius: 16px;
  background: var(--orange-light);
  border: 1px solid rgba(242, 140, 40, 0.15);
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.3s;
}
.industry-card:hover {
  border-color: rgba(242, 140, 40, 0.35);
  box-shadow: 0 8px 32px rgba(242, 140, 40, 0.15);
  transform: translateY(-4px);
}
.industry-card:hover::before {
  opacity: 1;
}

.industry-icon {
  width: 72px;
  height: 72px;
  background: rgba(242, 140, 40, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.industry-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.industry-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

/* ===== CTA ===== */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    #1a1a1a 50%,
    var(--orange-dark) 100%
  );
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
  line-height: 1.2;
}
.cta-section h2 .text-orange {
  color: var(--orange);
}
.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  justify-content: center;
}
.btn-white {
  padding: 16px 36px;
  background: var(--white);
  color: var(--dark);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ===== FOOTER ===== */
footer {
  padding: 60px 0 32px;
  background:
    linear-gradient(180deg, rgba(255, 140, 50, 0.08) 0%, transparent 30%),
    #16161f;
  color: rgba(255, 255, 255, 0.5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--orange);
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .serve-hero h1 {
    font-size: 36px;
  }
  .section-title {
    font-size: 32px;
  }
  .cta-section h2 {
    font-size: 34px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .serve-hero .hero-slogan {
    font-size: 17px;
    margin-top: 32px;
  }
}
