/* ============================================
   THE SUPER STUFF LLC - Complete Stylesheet
   Converted from Tailwind CSS + React
   ============================================ */

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

/* ---------- CSS Variables (Theme) ---------- */
:root {
  --background: hsl(210, 40%, 98%);
  --foreground: hsl(217, 32%, 17%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(217, 32%, 17%);
  --popover: hsl(0, 0%, 100%);
  --popover-foreground: hsl(217, 32%, 17%);
  --primary: hsl(217, 94%, 38%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(34, 100%, 50%);
  --secondary-foreground: hsl(217, 32%, 17%);
  --muted: hsl(214, 32%, 91%);
  --muted-foreground: hsl(215, 16%, 47%);
  --accent: hsl(34, 100%, 50%);
  --accent-foreground: hsl(0, 0%, 100%);
  --destructive: hsl(0, 84%, 60%);
  --border: hsl(214, 32%, 91%);
  --input: hsl(214, 32%, 91%);
  --ring: hsl(217, 94%, 38%);
  --radius: 0.75rem;

  --font-sans: 'Inter', sans-serif;
  --font-display: 'Plus Jakarta Sans', sans-serif;
}

/* ---------- Base Styles ---------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.025em;
}

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

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

ul {
  list-style: none;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ---------- Layout Helpers ---------- */
.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-wrapper > main {
  flex: 1;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-sans);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(to right, var(--primary), var(--primary));
  color: white;
  border-radius: 9999px;
  padding: 0 1.5rem;
  height: 2.25rem;
  font-size: 0.875rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  box-shadow: 0 10px 25px -5px hsla(217, 94%, 38%, 0.25);
}

.btn-lg {
  height: 3.5rem;
  padding: 0 2rem;
  font-size: 1rem;
  border-radius: 9999px;
}

.btn-hero-primary {
  background: linear-gradient(to right, hsl(217, 84%, 48%), hsl(217, 84%, 42%));
  color: white;
  border-radius: 9999px;
  height: 3.5rem;
  padding: 0 2rem;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  width: 100%;
}

.btn-hero-primary:hover {
  background: linear-gradient(to right, hsl(217, 84%, 42%), hsl(217, 84%, 36%));
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.btn-hero-outline {
  background: transparent;
  color: hsl(217, 84%, 48%);
  border: 2px solid hsl(217, 84%, 48%);
  border-radius: 9999px;
  height: 3.5rem;
  padding: 0 2rem;
  font-size: 1rem;
  font-weight: 700;
  width: 100%;
}

.btn-hero-outline:hover {
  background: hsl(217, 84%, 97%);
}

.btn-cta-white {
  background: white;
  color: var(--primary);
  border-radius: 9999px;
  padding: 0 2.5rem;
  height: 3.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.btn-cta-white:hover {
  background: rgba(255, 255, 255, 0.9);
}

.btn-form {
  width: 100%;
  height: 3.5rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--primary), var(--primary));
  color: white;
  box-shadow: 0 10px 15px -3px hsla(217, 94%, 38%, 0.25);
}

.btn-form:hover {
  background: linear-gradient(to right, var(--primary), hsl(217, 84%, 32%));
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: hsla(210, 40%, 98%, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar .container {
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.navbar-brand img {
  height: 3.5rem;
  width: 3.5rem;
  object-fit: contain;
}

.navbar-brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary);
  letter-spacing: -0.025em;
  display: none;
}

.navbar-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.navbar-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
  cursor: pointer;
}

.navbar-link:hover {
  color: var(--secondary);
}

.navbar-link.active {
  color: var(--primary);
  font-weight: 600;
}

.navbar-toggle {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

.navbar-mobile {
  display: none;
  border-bottom: 1px solid var(--border);
  background: var(--background);
  padding: 1rem;
}

.navbar-mobile.open {
  display: block;
}

.navbar-mobile a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s;
}

.navbar-mobile a.active {
  color: var(--primary);
}

.navbar-mobile .btn-primary {
  width: 100%;
  margin-top: 0.5rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  padding: 6rem 0 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, hsl(210, 33%, 97%), hsla(213, 80%, 96%, 0.2), white);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(1, 93, 196, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 93, 196, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

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

.hero-blob-1 {
  top: -8rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  background: linear-gradient(to bottom right, hsla(217, 82%, 63%, 0.15), transparent);
  animation: blobFloat1 20s ease-in-out infinite;
}

.hero-blob-2 {
  bottom: -10rem;
  right: -10rem;
  width: 24rem;
  height: 24rem;
  background: linear-gradient(to top left, hsla(30, 90%, 60%, 0.1), transparent);
  animation: blobFloat2 25s ease-in-out infinite 1s;
}

.hero-blob-3 {
  top: 33%;
  right: 33%;
  width: 20rem;
  height: 20rem;
  background: linear-gradient(to bottom left, hsla(217, 70%, 70%, 0.1), transparent);
  animation: blobPulse 8s ease-in-out infinite;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -60px); }
}

@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-50px, 80px); }
}

@keyframes blobPulse {
  0%, 100% { transform: scale(1); opacity: 0.1; }
  50% { transform: scale(1.1); opacity: 0.2; }
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-headline h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: hsl(215, 25%, 15%);
}

.hero-headline h2 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  background: linear-gradient(to right, hsl(217, 84%, 48%), hsl(30, 100%, 50%), hsl(217, 84%, 48%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheading {
  font-size: 1.25rem;
  color: hsl(215, 15%, 35%);
  line-height: 1.7;
  max-width: 32rem;
}

.hero-subheading .highlight-blue {
  font-weight: 700;
  color: hsl(217, 84%, 48%);
}

.hero-subheading .highlight-orange {
  font-weight: 700;
  color: hsl(30, 100%, 50%);
}

.hero-description {
  font-size: 1.125rem;
  color: hsl(215, 15%, 42%);
  line-height: 1.7;
  max-width: 36rem;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.25rem;
}

.hero-proof-strip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(1, 93, 196, 0.08);
  border: 1px solid rgba(1, 93, 196, 0.14);
  color: hsl(215, 25%, 24%);
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 600;
}

/* ── Hero Trust Card (replaces two metric cards) ── */
.hero-trust-card {
  display: flex;
  align-items: flex-start;
  gap: 1.125rem;
  margin-top: 2rem;
  padding: 1.375rem 1.5rem;
  border: 1px solid rgba(1, 93, 196, 0.14);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 2px 8px rgba(15, 23, 42, 0.06),
    0 16px 32px -20px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
  cursor: default;
}

.hero-trust-card:hover {
  box-shadow:
    0 4px 16px rgba(15, 23, 42, 0.09),
    0 22px 44px -20px rgba(15, 23, 42, 0.22);
  transform: translateY(-2px);
  border-color: rgba(1, 93, 196, 0.26);
}

.hero-trust-card-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(1, 93, 196, 0.08);
  color: hsl(217, 84%, 42%);
  margin-top: 0.1rem;
}

.hero-trust-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.hero-trust-card-heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: hsl(215, 25%, 15%);
}

.hero-trust-card-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: hsl(215, 15%, 42%);
  font-weight: 450;
  max-width: 30rem;
}

/* Hero Right Column - Service Cards */
.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-right-bg {
  position: absolute;
  inset: -2rem;
  border-radius: 1.5rem;
  background: linear-gradient(to bottom right, hsla(217, 84%, 48%, 0.05), hsla(30, 100%, 50%, 0.05));
  z-index: -1;
}

.service-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-card-blue {
  background: linear-gradient(135deg, rgba(1, 93, 196, 0.07) 0%, rgba(1, 93, 196, 0.02) 100%);
  border-color: rgba(1, 93, 196, 0.19);
}

.service-card-orange {
  background: linear-gradient(135deg, rgba(252, 144, 10, 0.07) 0%, rgba(252, 144, 10, 0.02) 100%);
  border-color: rgba(252, 144, 10, 0.19);
}

.service-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.service-card:hover .service-card-icon {
  transform: scale(1.1);
}

.service-card-icon-blue {
  background: rgba(1, 93, 196, 0.13);
  color: #015dc4;
}

.service-card-icon-orange {
  background: rgba(252, 144, 10, 0.13);
  color: #fc900a;
}

.service-card-title {
  font-weight: 600;
  font-size: 1.125rem;
}

.service-card-title-blue { color: #015dc4; }
.service-card-title-orange { color: #fc900a; }

/* Floating accent dots */
.hero-dot {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-dot-orange {
  top: 5rem;
  right: -2rem;
  width: 1rem;
  height: 1rem;
  background: hsl(30, 90%, 60%);
  animation: dotFloat1 4s ease-in-out infinite;
}

.hero-dot-blue {
  bottom: 8rem;
  left: -1.5rem;
  width: 0.75rem;
  height: 0.75rem;
  background: hsl(217, 82%, 63%);
  animation: dotFloat2 5s ease-in-out infinite 0.5s;
}

@keyframes dotFloat1 {
  0%, 100% { transform: translateY(0); opacity: 0.3; }
  50% { transform: translateY(-20px); opacity: 0.6; }
}

@keyframes dotFloat2 {
  0%, 100% { transform: translateY(0); opacity: 0.2; }
  50% { transform: translateY(20px); opacity: 0.5; }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator p {
  font-size: 0.875rem;
  color: hsl(215, 16%, 47%);
  font-weight: 500;
}

.scroll-indicator svg {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(215, 16%, 55%);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(12px); }
}

/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(to bottom right, var(--primary), var(--primary), hsl(217, 84%, 38%));
  padding: 5rem 0;
  text-align: center;
}

.page-banner-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

.page-banner-blob-1 {
  top: -50%;
  right: -25%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, hsla(34, 100%, 50%, 0.15), transparent);
  animation: bannerPulse1 3s ease-in-out infinite alternate;
}

.page-banner-blob-2 {
  bottom: -25%;
  left: -25%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, hsla(34, 100%, 50%, 0.08), transparent);
  animation: bannerPulse2 4s ease-in-out infinite alternate;
}

@keyframes bannerPulse1 {
  from { opacity: 0.1; }
  to { opacity: 0.2; }
}

@keyframes bannerPulse2 {
  from { opacity: 0.1; }
  to { opacity: 0.15; }
}

.page-banner-content {
  position: relative;
  z-index: 10;
}

.page-banner h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.page-banner p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 42rem;
  margin: 0 auto;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
}

.card-shadow-sm { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08); }
.card-shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.card-shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.card-shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }

.card-hover:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.card-bg-subtle {
  background: hsla(210, 30%, 97%, 0.5);
}

.card-body {
  padding: 2rem;
}

.card-body-lg {
  padding: 2rem 3rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 6rem 0;
}

.section-white { background: white; }
.section-light { background: hsl(210, 33%, 97%); }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
}

/* ============================================
   SERVICES OVERVIEW (Home page)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-overview-card {
  height: 100%;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  background: hsla(210, 30%, 97%, 0.5);
  border-radius: var(--radius);
  transition: box-shadow 0.3s;
  overflow: hidden;
}

.service-overview-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-overview-body {
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-icon-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: hsla(217, 94%, 38%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.service-icon-circle svg {
  width: 2.5rem;
  height: 2.5rem;
}

.service-overview-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.service-overview-body p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-learn-more {
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: text-decoration 0.2s;
}

.service-learn-more:hover {
  text-decoration: underline;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.testimonial-card {
  height: 100%;
  background: white;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  transition: box-shadow 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.testimonial-body {
  padding: 2rem;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: var(--secondary);
  color: var(--secondary);
}

.testimonial-review {
  color: var(--foreground);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-name {
  font-weight: 600;
  color: var(--foreground);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.portfolio-card {
  height: 100%;
  border: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}

.portfolio-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.portfolio-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 12rem;
}

.portfolio-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.portfolio-card:hover .portfolio-image-wrapper img {
  transform: scale(1.1);
}

.portfolio-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(217, 94%, 38%, 0.8), transparent, transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.portfolio-card:hover .portfolio-image-overlay {
  opacity: 1;
}

.portfolio-image-overlay svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.portfolio-body {
  padding: 1.5rem;
}

.portfolio-category {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: hsla(34, 100%, 50%, 0.1);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}

.portfolio-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.portfolio-body p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* ============================================
   WHY BUSINESSES CHOOSE US (Home)
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.why-card {
  background: white;
  border: 1px solid hsl(210, 33%, 96%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}

.why-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.why-card-body {
  padding: 2rem;
}

.why-card-icon {
  color: var(--primary);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(217, 94%, 38%, 0.05);
  border-radius: 1rem;
  margin: 0 auto 1rem;
}

.why-card h4 {
  font-weight: 700;
  font-size: 1.125rem;
}

/* ============================================
   CTA SECTION (Home)
   ============================================ */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom right, var(--primary), var(--primary), hsl(217, 84%, 38%));
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.1;
}

.cta-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.cta-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-page-intro {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto 4rem;
  line-height: 1.7;
  text-align: center;
}

.service-category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-category-icon {
  background: hsla(217, 94%, 38%, 0.1);
  padding: 1rem;
  border-radius: 1rem;
  color: var(--primary);
}

.service-category-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
}

.service-category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.service-category-grid:last-child {
  margin-bottom: 0;
}

.service-item-card {
  height: 100%;
  background: hsla(210, 30%, 97%, 0.5);
  border: 1px solid transparent;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  transition: all 0.3s;
  cursor: default;
}

.service-item-card:hover {
  border-color: hsla(217, 94%, 38%, 0.3);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-item-card-header {
  padding: 1.5rem 1.5rem 0;
}

.service-item-card-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}

.service-item-card-body {
  padding: 0.75rem 1.5rem 1.5rem;
}

.service-item-card-body p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-card {
  background: hsla(210, 30%, 97%, 0.5);
  border: none;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  margin-bottom: 4rem;
}

.about-card-body {
  padding: 2rem;
}

.about-card-body p {
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-card-body p:first-child {
  font-size: 1.25rem;
  font-weight: 500;
}

.about-mission {
  background: linear-gradient(to bottom right, hsla(217, 94%, 38%, 0.05), hsla(34, 100%, 50%, 0.05));
  border-left: 4px solid var(--primary);
  padding: 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 2.5rem;
}

.about-mission h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.about-mission p {
  font-size: 1.125rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 4rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 12rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 18px 38px -26px rgba(15, 23, 42, 0.28);
  border-radius: 1.25rem;
  text-align: left;
  padding: 2rem 1.85rem;
}

.stat-card-1 {
  background: linear-gradient(135deg, rgba(1, 93, 196, 0.07) 0%, rgba(255, 255, 255, 0.95) 58%, rgba(252, 144, 10, 0.08) 100%);
}

.stat-card-2 {
  background: linear-gradient(135deg, rgba(252, 144, 10, 0.08) 0%, rgba(255, 255, 255, 0.96) 52%, rgba(1, 93, 196, 0.08) 100%);
}

.stat-card h4 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.stat-card-primary h4 { color: var(--primary); }
.stat-card-secondary h4 { color: var(--secondary); }

.stat-card p {
  margin: 0;
  max-width: 16rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}

.combined-experience-note {
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(1, 93, 196, 0.06);
  border: 1px solid rgba(1, 93, 196, 0.12);
  color: hsl(215, 25%, 24%);
  font-weight: 600;
}

/* ============================================
   WHY CHOOSE US PAGE
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
}

.feature-icon {
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: var(--primary);
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.feature-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--muted-foreground);
  line-height: 1.7;
}

.unique-box {
  background: linear-gradient(to bottom right, var(--primary), var(--primary), hsl(217, 84%, 38%));
  border-radius: 1.5rem;
  padding: 2.5rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.unique-box-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, hsla(34, 100%, 50%, 0.2), transparent);
  filter: blur(48px);
  border-radius: 50%;
  transform: translateY(50%) scale(1.5);
}

.unique-box-content {
  position: relative;
  z-index: 10;
}

.unique-box h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.unique-box p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 48rem;
  margin: 0 auto;
  font-weight: 500;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.contact-info-card {
  background: linear-gradient(to bottom right, var(--primary), hsl(217, 84%, 38%));
  color: white;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.contact-info-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  gap: 2rem;
}

.contact-info-body h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.contact-info-body > div:first-child p {
  color: rgba(255, 255, 255, 0.8);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-info-icon {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-info-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.contact-info-value {
  font-weight: 600;
}

/* Contact Form */
.contact-form-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.contact-form-body {
  padding: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  height: 3rem;
  padding: 0 0.75rem;
  background: hsl(210, 33%, 97%);
  border: 1px solid hsl(214, 20%, 88%);
  border-radius: var(--radius);
  color: var(--foreground);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(217, 94%, 38%, 0.1);
}

.form-group textarea {
  height: auto;
  min-height: 150px;
  padding: 0.75rem;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

/* ============================================
   LEGAL PAGES (Privacy, Terms, Cancellation)
   ============================================ */
.legal-card {
  background: white;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
}

.legal-body {
  padding: 2rem;
}

.legal-body .last-updated {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.legal-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-body p {
  color: var(--foreground);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.legal-body ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: var(--foreground);
}

.legal-body strong {
  font-weight: 600;
}

.legal-contact {
  margin-top: 1rem;
}

/* ============================================
   404 PAGE
   ============================================ */
.not-found-page {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsl(210, 20%, 96%);
}

.not-found-card {
  width: 100%;
  max-width: 28rem;
  margin: 0 1rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
}

.not-found-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.not-found-header svg {
  width: 2rem;
  height: 2rem;
  color: hsl(0, 84%, 60%);
}

.not-found-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(215, 25%, 15%);
}

.not-found-card p {
  font-size: 0.875rem;
  color: hsl(215, 15%, 42%);
  margin-top: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: white;
  border-top: 1px solid var(--border);
  padding-top: 4rem;
  padding-bottom: 2rem;
}

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

.footer-brand h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  max-width: 24rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  padding-top: 0.5rem;
}

.footer-social a {
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--primary);
}

.footer-links h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
  cursor: pointer;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-bottom-email {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  gap: 0.5rem;
}

.footer-bottom-email svg {
  width: 1rem;
  height: 1rem;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate-scale {
  transform: scale(0.95);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* Hero entrance animations */
.hero-animate {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s ease-out forwards;
}

.hero-animate-delay-1 { animation-delay: 0.1s; }
.hero-animate-delay-2 { animation-delay: 0.25s; }
.hero-animate-delay-3 { animation-delay: 0.4s; }
.hero-animate-delay-4 { animation-delay: 0.55s; }
.hero-animate-delay-5 { animation-delay: 0.7s; }

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-right-animate {
  opacity: 0;
  transform: translateX(40px);
  animation: heroSlideIn 0.8s ease-out 0.2s forwards;
}

@keyframes heroSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.service-card-animate {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.6s ease-out forwards;
}

.service-card-animate:nth-child(1) { animation-delay: 0.4s; }
.service-card-animate:nth-child(2) { animation-delay: 0.5s; }
.service-card-animate:nth-child(3) { animation-delay: 0.6s; }

/* PageBanner animation */
.banner-animate {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.6s ease-out forwards;
}

/* ============================================
   MAX-WIDTH UTILITIES
   ============================================ */
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 480px) {
  .navbar-brand img {
    height: 3.75rem;
    width: 3.75rem;
  }
}

@media (min-width: 640px) {
  .navbar-brand-text {
    display: inline;
  }

  .navbar-brand img {
    height: 4rem;
    width: 4rem;
  }

  .hero-cta {
    flex-direction: row;
  }

  .hero-cta .btn-hero-primary,
  .hero-cta .btn-hero-outline {
    width: auto;
  }

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

@media (min-width: 768px) {
  .navbar-desktop {
    display: flex;
  }

  .navbar-toggle {
    display: none;
  }

  .navbar .container {
    height: 5.5rem;
  }

  .navbar-brand img {
    height: 4.75rem;
    width: 4.75rem;
  }

  .navbar-brand-text {
    font-size: 1.3rem;
  }

  .hero {
    padding: 8rem 0;
  }

  .hero-headline h1,
  .hero-headline h2 {
    font-size: 3.75rem;
  }

  .hero-subheading {
    font-size: 1.5rem;
  }

  .page-banner {
    padding: 7rem 0;
  }

  .page-banner h1 {
    font-size: 3rem;
  }

  .page-banner p {
    font-size: 1.25rem;
  }

  .section-header h2 {
    font-size: 2.25rem;
  }

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

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

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

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3rem;
  }

  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
  }

  .about-card-body {
    padding: 3rem;
  }

  .unique-box {
    padding: 4rem;
  }

  .contact-form-body {
    padding: 2.5rem;
  }

  .legal-body {
    padding: 3rem;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .scroll-indicator {
    display: flex;
  }

  .cta-content h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .hero-headline h1,
  .hero-headline h2 {
    font-size: 4.5rem;
  }

  .hero-right {
    gap: 2rem;
  }

  .page-banner h1 {
    font-size: 3.75rem;
  }

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

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

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

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

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* ============================================
   COMPLIANCE & PRICING ADDITIONS
   ============================================ */

/* How It Works Section */




/* ═══════════════════════════════════════════════
   COMPLIANCE & TRUST STYLES — v3 (clean rewrite)
   ═══════════════════════════════════════════════ */

/* ── Section header note (subtitle below p) ────── */
.section-header-note {
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  max-width: 38rem;
  margin: 0.75rem auto 0;
  line-height: 1.6;
}

/* ── Payment trust bar ────────────────────────── */
.payment-trust-bar {
  background: hsl(210, 33%, 97%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.125rem 0;
}
.payment-trust-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  row-gap: 0.5rem;
}
.pt-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  white-space: nowrap;
}
.pt-badge-visa,
.pt-badge-mc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.3rem;
  padding: 0.25rem 0.6rem;
  height: 1.875rem;
  flex-shrink: 0;
}
.pt-currency {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--foreground);
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.3rem;
  padding: 0.25rem 0.6rem;
  height: 1.875rem;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.pt-ssl {
  font-size: 0.7rem;
  font-weight: 600;
  color: hsl(142, 60%, 35%);
  background: hsl(142, 60%, 96%);
  border: 1px solid hsl(142, 60%, 82%);
  border-radius: 0.3rem;
  padding: 0.25rem 0.6rem;
  height: 1.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}
.pt-note {
  font-size: 0.675rem;
  color: var(--muted-foreground);
  flex-basis: 100%;
  text-align: center;
  line-height: 1.5;
}

/* ── Payments & Policies section ─────────────── */
.payments-policies-section {
  background: white;
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}
.pp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pp-card {
  background: hsl(210, 33%, 97%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.pp-card-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.pp-card-body {
  font-size: 0.875rem;
  color: var(--foreground);
  line-height: 1.7;
}
.pp-card-body p { margin-bottom: 0; }
.pp-card-body p + p { margin-top: 0.6rem; }
.pp-card-body a { color: var(--primary); font-weight: 500; }
.pp-card-body a:hover { text-decoration: underline; }

.pp-card-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.875rem;
}
.pp-card-badge-visa,
.pp-card-badge-mc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.3rem;
  padding: 0.25rem 0.6rem;
  height: 2rem;
  flex-shrink: 0;
}
.pp-currency-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--foreground);
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.3rem;
  padding: 0.25rem 0.625rem;
  height: 2rem;
  white-space: nowrap;
}
.pp-ssl-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: hsl(142, 60%, 35%);
  background: hsl(142, 60%, 96%);
  border: 1px solid hsl(142, 60%, 82%);
  border-radius: 0.3rem;
  padding: 0.25rem 0.625rem;
  height: 2rem;
  white-space: nowrap;
}
.pp-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.875rem;
}
.pp-policy-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--primary);
  background: white;
  border: 1px solid hsla(217, 94%, 38%, 0.25);
  border-radius: 0.3rem;
  padding: 0.275rem 0.65rem;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.pp-policy-link:hover {
  background: hsla(217, 94%, 38%, 0.06);
  border-color: var(--primary);
}
.export-notice {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  background: hsl(38, 100%, 97%);
  border: 1px solid hsl(38, 100%, 85%);
  border-radius: 0.375rem;
  padding: 0.625rem 0.875rem;
  margin-top: 0.75rem;
  line-height: 1.55;
}
.export-notice a { color: var(--primary); }

/* ── Policy acknowledgement checkbox ─────────── */
.policy-ack-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.125rem;
  background: hsl(210, 33%, 97%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 1.25rem;
}
.policy-ack-row input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--primary);
  cursor: pointer;
}
.policy-ack-label {
  font-size: 0.8125rem;
  color: var(--foreground);
  line-height: 1.6;
  cursor: pointer;
}
.policy-ack-label a { color: var(--primary); font-weight: 500; }
.policy-ack-label a:hover { text-decoration: underline; }
.btn-form:disabled,
.btn-form[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── How it works (process) ───────────────────── */
.process-section {
  padding: 5rem 0;
  background: white;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
.process-step {
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
  padding: 1.375rem;
  background: hsl(210, 33%, 97%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.process-step-num {
  flex-shrink: 0;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
}
.process-step-text h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.process-step-text p {
  font-size: 0.8375rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* ── Pricing tables ───────────────────────────── */
.pricing-section {
  padding: 5rem 0;
  background: hsl(210, 33%, 97%);
}
.pricing-category-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  font-family: var(--font-display);
}
.pricing-category-sub {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.375rem;
  margin-bottom: 3.5rem;
}
.pricing-grid:last-of-type { margin-bottom: 0; }
.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.pricing-card.featured {
  border: 2px solid var(--primary);
  position: relative;
}
.pricing-featured-badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 0.675rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.175rem 0.75rem;
  border-radius: 99px;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.4rem;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--foreground);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.pricing-price span {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--muted-foreground);
}
.pricing-starts {
  font-size: 0.725rem;
  color: var(--muted-foreground);
  margin-bottom: 1.125rem;
  line-height: 1.5;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 1.125rem 0;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.375rem;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--foreground);
  margin-bottom: 0.575rem;
  line-height: 1.5;
}
.pricing-features li::before {
  content: '';
  flex-shrink: 0;
  width: 0.9rem;
  height: 0.9rem;
  margin-top: 0.15rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d4ed8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
.pricing-disclaimer {
  font-size: 0.725rem;
  color: var(--muted-foreground);
  margin-top: 0.375rem;
  line-height: 1.5;
  font-style: italic;
}
.pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.7rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
  margin-top: auto;
}
.pricing-cta:hover,
.pricing-card.featured .pricing-cta {
  background: var(--primary);
  color: white;
}

/* ── Fulfilment info block ────────────────────── */
.fulfillment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
  margin-top: 2.25rem;
}
.fulfillment-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.125rem 1.375rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.fulfillment-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: hsla(217, 94%, 38%, 0.07);
  color: var(--primary);
  border-radius: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fulfillment-text h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.fulfillment-text p {
  font-size: 0.8375rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin: 0;
}

/* ── Footer upgrades ──────────────────────────── */
.footer-contact-details {
  margin-top: 0.875rem;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
  line-height: 1.85;
}
.footer-contact-details a {
  color: var(--muted-foreground);
  text-decoration: none;
}
.footer-contact-details a:hover { color: var(--primary); }

.footer-payment-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.875rem;
}
.footer-card-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1px solid var(--border);
  border-radius: 0.275rem;
  padding: 0.2rem 0.5rem;
  height: 1.875rem;
  min-width: 2.625rem;
}
.footer-secure-chip,
.footer-currency-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.275rem;
  font-size: 0.675rem;
  font-weight: 600;
  color: var(--muted-foreground);
  background: hsl(210, 33%, 97%);
  border: 1px solid var(--border);
  border-radius: 0.275rem;
  padding: 0.2rem 0.5rem;
  height: 1.875rem;
  white-space: nowrap;
}

.footer-trust-note {
  font-size: 0.7rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  margin-top: 0.75rem;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
}
.footer-trust-note a { color: var(--muted-foreground); }
.footer-trust-note a:hover { color: var(--primary); }

.footer-compliance-bar {
  border-top: 1px solid var(--border);
  padding-top: 1.375rem;
  margin-top: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-compliance-left p,
.footer-compliance-right {
  font-size: 0.775rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}
.footer-compliance-right a { color: var(--muted-foreground); }
.footer-compliance-right a:hover { color: var(--primary); }

/* ═══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS — compliance sections
   Mobile-first, progressive enhancement
   ═══════════════════════════════════════════════ */

/* xs < 480px — everything single column */
@media (max-width: 479px) {
  .payments-policies-section { padding: 3rem 0; }
  .pp-card { padding: 1.25rem; }
  .pp-card-title { font-size: 0.7rem; }
  .pp-card-body { font-size: 0.8375rem; }
  .pp-policy-link { font-size: 0.75rem; padding: 0.25rem 0.575rem; }

  .pricing-section { padding: 3rem 0; }
  .pricing-card { padding: 1.375rem; }
  .pricing-price { font-size: 1.75rem; }
  .pricing-features li { font-size: 0.8125rem; }
  .pricing-category-title { font-size: 1.25rem; }

  .process-section { padding: 3rem 0; }
  .process-step { padding: 1.125rem; }

  .payment-trust-bar { padding: 0.875rem 0; }
  .payment-trust-inner { gap: 0.4rem; row-gap: 0.375rem; }
  .pt-label { font-size: 0.65rem; }
  .pt-badge-visa, .pt-badge-mc { height: 1.675rem; }
  .pt-currency, .pt-ssl { height: 1.675rem; font-size: 0.65rem; padding: 0.2rem 0.5rem; }
  .pt-note { font-size: 0.625rem; }

  .fulfillment-item { padding: 1rem; }
  .section-header-note { font-size: 0.75rem; }
}

/* sm: 480px — 2-col for process & fulfillment */
@media (min-width: 480px) {
  .process-grid     { grid-template-columns: repeat(2, 1fr); }
  .fulfillment-grid { grid-template-columns: repeat(2, 1fr); }
}

/* md: 640px — 2-col pp-grid; compliance bar goes horizontal */
@media (min-width: 640px) {
  .pp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-compliance-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* md+: 768px — payment trust bar unwraps; pricing stays 2-col */
@media (min-width: 768px) {
  .pricing-grid       { grid-template-columns: repeat(2, 1fr); }
  .fulfillment-grid   { grid-template-columns: repeat(2, 1fr); }
  .payment-trust-inner {
    flex-wrap: nowrap;
    gap: 0.875rem;
  }
  .pt-note { flex-basis: auto; }
}

/* lg: 1024px — pricing 3-col, process 4-col, pp-grid 3-col */
@media (min-width: 1024px) {
  .pp-grid            { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid       { grid-template-columns: repeat(3, 1fr); }
  .process-grid       { grid-template-columns: repeat(4, 1fr); }
  .fulfillment-grid   { grid-template-columns: repeat(4, 1fr); }
}
