/* ==========================================================================
   Jumotas Technologies — Main Stylesheet
   Design system: solid brand colours, no gradients, mobile-first,
   award-winning UX with accessible interactions.
   ========================================================================== */

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

:root {
  /* Brand palette */
  --primary: #082c6f;
  --secondary: #1e7fea;
  --accent: #29a7ff;
  --highlight: #4b9ee3;
  --black: #000000;
  --white: #ffffff;

  /* Derived neutrals */
  --navy-900: #061f4f;
  --navy-800: #082c6f;
  --navy-700: #0a3889;
  --gray-50: #f7f9fc;
  --gray-100: #eef2f8;
  --gray-200: #dde4ee;
  --gray-300: #c5d0e0;
  --gray-400: #8b9bb5;
  --gray-500: #6b7a94;
  --gray-600: #4a5670;
  --gray-700: #2e3850;
  --off-white: #f5f7fb;

  /* Typography */
  --font-heading: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Layout */
  --container: 1200px;
  --header-h: 76px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(8, 44, 111, 0.06);
  --shadow-sm: 0 2px 8px rgba(8, 44, 111, 0.08);
  --shadow-md: 0 6px 20px rgba(8, 44, 111, 0.1);
  --shadow-lg: 0 12px 40px rgba(8, 44, 111, 0.14);
  --shadow-xl: 0 24px 60px rgba(8, 44, 111, 0.18);

  /* Transitions */
  --t-fast: 0.15s ease;
  --t-base: 0.3s ease;
  --t-slow: 0.5s ease;
}

/* --------------------------------------------------------------------------
   2. Base Typography
   -------------------------------------------------------------------------- */
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color var(--t-fast);
}

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

img, svg { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

strong { font-weight: 600; color: var(--primary); }

::selection {
  background: var(--secondary);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   3. Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: var(--space-2xl) 0;
}

.section--tight { padding: var(--space-xl) 0; }

.section--dark {
  background: var(--primary);
  color: var(--gray-200);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }

.section--black {
  background: var(--black);
  color: var(--gray-300);
}

.section--black h2,
.section--black h3 { color: var(--white); }

.section--light {
  background: var(--off-white);
}

.section--gray {
  background: var(--gray-50);
}

/* --------------------------------------------------------------------------
   4. Section Headers
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-xl);
}

.section-header--left {
  text-align: left;
  margin-left: 0;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--secondary);
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.9rem;
  background: rgba(30, 127, 234, 0.08);
  border-radius: var(--radius-pill);
}

.section--dark .eyebrow,
.section--black .eyebrow {
  color: var(--accent);
  background: rgba(41, 167, 255, 0.12);
}

.section-header h2 { margin-bottom: 1rem; }

.section-header p {
  font-size: 1.0625rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

.section--dark .section-header p,
.section--black .section-header p {
  color: var(--gray-300);
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-base);
  text-align: center;
  white-space: nowrap;
  line-height: 1.4;
}

.btn--primary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn--primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--accent {
  background: var(--highlight);
  color: var(--white);
  border-color: var(--highlight);
}

.btn--accent:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--gray-300);
}

.btn--outline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-2px);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

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

.btn--white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--gray-100);
  border-color: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--lg {
  padding: 1.05rem 2.25rem;
  font-size: 1rem;
}

.btn--block {
  display: flex;
  width: 100%;
}

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
}

.btn--whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* --------------------------------------------------------------------------
   6. Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: var(--white);
  z-index: 1000;
  transition: box-shadow var(--t-base), background var(--t-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
  padding: 0.25rem 0;
}

.nav-logo img {
  height: 100%;
  max-height: calc(var(--header-h) - 0.5rem);
  width: auto;
  max-width: 280px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
  position: relative;
}

.nav-links a:hover {
  color: var(--secondary);
  background: rgba(30, 127, 234, 0.06);
}

.nav-links a.active {
  color: var(--secondary);
  font-weight: 600;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0.9rem;
  right: 0.9rem;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.nav-cta {
  margin-left: 0.75rem;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--t-base);
  margin: 0 auto;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav panel */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  z-index: 1001;
  transition: right var(--t-base);
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 1rem) 1.5rem 2rem;
  overflow-y: auto;
}

.mobile-nav.open { right: 0; }

.mobile-nav a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--gray-700);
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--t-fast);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--secondary);
}

.mobile-nav .btn {
  margin-top: 1.5rem;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base), visibility var(--t-base);
}

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

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + var(--space-xl)) 0 var(--space-2xl);
  overflow: hidden;
}

.hero--dark {
  background: var(--primary);
  color: var(--gray-200);
}

.hero--black {
  background: var(--black);
  color: var(--gray-300);
}

.hero-inner {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  position: relative;
  z-index: 2;
}

.hero-content {
  flex: 1 1 55%;
}

.hero-visual {
  flex: 1 1 40%;
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero--dark h1,
.hero--black h1 { color: var(--white); }

.hero .hero-tagline {
  font-size: 1.1875rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero--dark .hero-tagline,
.hero--black .hero-tagline {
  color: var(--gray-300);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-badge::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Hero visual card */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.hero--dark .hero-card,
.hero--black .hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-card h3 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-card-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-item:last-child { border-bottom: none; }

.hero-card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.hero-card-item h4 {
  color: var(--white);
  font-size: 0.9375rem;
  margin-bottom: 0.15rem;
}

.hero-card-item p {
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin: 0;
}

/* Decorative shapes */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  z-index: 1;
}

.hero-shape--1 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -100px;
  right: -100px;
}

.hero-shape--2 {
  width: 300px;
  height: 300px;
  background: var(--highlight);
  bottom: -80px;
  left: -60px;
}

/* --------------------------------------------------------------------------
   8. Cards & Grids
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 1.5rem;
}

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

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
  border: 1px solid var(--gray-100);
}

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

.section--dark .card,
.section--black .card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.section--dark .card h3,
.section--black .card h3 {
  color: var(--white);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(30, 127, 234, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--secondary);
  transition: background var(--t-base), color var(--t-base);
}

.card:hover .card-icon {
  background: var(--secondary);
  color: var(--white);
}

.section--dark .card-icon,
.section--black .card-icon {
  background: rgba(41, 167, 255, 0.12);
  color: var(--accent);
}

.card h3 {
  margin-bottom: 0.625rem;
  font-size: 1.1875rem;
}

.card p {
  color: var(--gray-500);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.section--dark .card p,
.section--black .card p {
  color: var(--gray-400);
}

/* Service link card */
.service-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.service-card .card-link {
  margin-top: 1.25rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--t-fast);
}

.service-card:hover .card-link {
  gap: 0.7rem;
  color: var(--accent);
}

.service-card:hover h3 { color: var(--secondary); }

/* --------------------------------------------------------------------------
   9. Pricing Cards
   -------------------------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: 2px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
}

.pricing-card--popular {
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.pricing-card--popular:hover {
  border-color: var(--secondary);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.pricing-speed {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  line-height: 1;
}

.pricing-speed span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-500);
}

.pricing-price {
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.pricing-price strong {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.pricing-features {
  flex: 1;
  margin-bottom: 1.5rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-50);
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: "\2713";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(30, 127, 234, 0.1);
  color: var(--secondary);
  font-size: 0.6875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.pricing-card .btn { margin-top: auto; }

/* --------------------------------------------------------------------------
   10. Stats
   -------------------------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   11. Feature List
   -------------------------------------------------------------------------- */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.feature-item:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.section--dark .feature-item,
.section--black .feature-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.feature-item h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.section--dark .feature-item h4,
.section--black .feature-item h4 {
  color: var(--white);
}

.feature-item p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
}

.section--dark .feature-item p,
.section--black .feature-item p {
  color: var(--gray-400);
}

/* --------------------------------------------------------------------------
   12. Process Steps
   -------------------------------------------------------------------------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 1.5rem;
}

.process-step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  counter-increment: step;
  position: relative;
  z-index: 2;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--gray-200);
  z-index: 1;
}

.process-step:last-child::before { display: none; }

.process-step h4 {
  margin-bottom: 0.5rem;
  font-size: 1.0625rem;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin: 0;
}

/* --------------------------------------------------------------------------
   13. Values (About page)
   -------------------------------------------------------------------------- */
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(30, 127, 234, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
  transition: background var(--t-base), color var(--t-base);
}

.value-card:hover .value-icon {
  background: var(--secondary);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   14. Vision / Mission
   -------------------------------------------------------------------------- */
.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.vm-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--secondary);
}

.vm-card h3 {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.vm-card p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

/* --------------------------------------------------------------------------
   15. Contact
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(30, 127, 234, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-info-item h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  margin: 0;
}

.contact-info-item a:hover { color: var(--secondary); }

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}

.form-group label .required {
  color: #e53e3e;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--gray-700);
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: border-color var(--t-fast), background var(--t-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary);
  background: var(--white);
}

.form-control.error {
  border-color: #e53e3e;
  background: #fff5f5;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%234a5670' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-status {
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  margin-top: 1rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(37, 211, 102, 0.1);
  color: #1a7f43;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.form-status.error {
  display: block;
  background: rgba(229, 62, 62, 0.08);
  color: #c53030;
  border: 1px solid rgba(229, 62, 62, 0.2);
}

/* Map */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  margin-top: 2.5rem;
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
}

/* --------------------------------------------------------------------------
   16. CTA Section
   -------------------------------------------------------------------------- */
.cta-section {
  text-align: center;
  padding: var(--space-xl) 0;
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.0625rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   17. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--black);
  color: var(--gray-400);
  padding: var(--space-xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem;
  padding-bottom: var(--space-xl);
}

.footer-brand img {
  height: 56px;
  width: auto;
  max-width: 100%;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  padding: 0.25rem 0.5rem;
  background: var(--white);
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  max-width: 300px;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
  font-style: italic;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.625rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--gray-400);
  transition: color var(--t-fast);
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

.footer-contact-item span:first-child {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-item a {
  color: var(--gray-400);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8125rem;
  margin: 0;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gray-400);
  transition: background var(--t-fast), color var(--t-fast);
}

.footer-social a:hover {
  background: var(--secondary);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   18. Page Hero (sub-pages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + var(--space-xl)) 0 var(--space-xl);
  overflow: hidden;
}

.page-hero--navy { background: var(--primary); color: var(--gray-200); }
.page-hero--black { background: var(--black); color: var(--gray-300); }

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.125rem;
  max-width: 620px;
  margin: 0;
  color: var(--gray-300);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  margin-bottom: 1.25rem;
  color: var(--gray-400);
}

.breadcrumb a {
  color: var(--accent);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span:last-child {
  color: var(--gray-400);
}

/* --------------------------------------------------------------------------
   19. Split Content
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.split-content h2 { margin-bottom: 1.25rem; }

.split-content p {
  font-size: 1rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.split-content .btn { margin-top: 0.5rem; }

.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* --------------------------------------------------------------------------
   20. Animations
   -------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* --------------------------------------------------------------------------
   21. Utilities
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-lg { margin-bottom: var(--space-lg); }

/* --------------------------------------------------------------------------
   21b. Card Images, Gallery & Showcase
   -------------------------------------------------------------------------- */
.card-image {
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}

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

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

.section--dark .card-image,
.section--black .card-image {
  border-radius: var(--radius-md);
}

/* Hero showcase image (replaces hero card on home page) */
.hero-showcase {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.hero-showcase img {
  width: 100%;
  height: auto;
  display: block;
}

/* Page hero with background image */
.page-hero--with-bg {
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-hero--with-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 44, 111, 0.88);
  z-index: 1;
}

.page-hero--with-bg > .hero-shape { z-index: 1; }
.page-hero--with-bg > .container { position: relative; z-index: 2; }

/* Work showcase (home page) */
.work-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.work-showcase-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base), box-shadow var(--t-base);
  position: relative;
}

.work-showcase-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.work-showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.work-showcase-item:hover img {
  transform: scale(1.06);
}

.work-showcase-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity var(--t-base);
}

.work-showcase-item:hover .work-showcase-caption {
  opacity: 1;
}

/* Gallery (printing page) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base), transform var(--t-base);
  position: relative;
}

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1rem 0.875rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity var(--t-base);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* Split image photo (about page) */
.split-image-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-lg);
  display: block;
}

/* Responsive for new elements */
@media (max-width: 900px) {
  .gallery-grid,
  .work-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid,
  .work-showcase {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .card-image {
    aspect-ratio: 16 / 10;
  }

  .work-showcase-caption,
  .gallery-caption {
    opacity: 1;
    padding: 1rem 0.875rem 0.75rem;
  }
}

/* --------------------------------------------------------------------------
   21c. Floating WhatsApp Button
   -------------------------------------------------------------------------- */
.float-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform var(--t-base), box-shadow var(--t-base);
  animation: whatsapp-pulse 2.5s ease-in-out infinite;
}

.float-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: var(--white);
}

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

@media (max-width: 600px) {
  .float-whatsapp {
    bottom: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   22. Responsive
   -------------------------------------------------------------------------- */

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Tablets */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta { display: none; }

  .nav-toggle { display: flex; }

  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    flex: 1 1 100%;
  }

  .hero-visual {
    flex: 1 1 100%;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-badge {
    justify-content: center;
  }

  .hero .hero-tagline {
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

  .process-step::before { display: none; }

  .split {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .split-image {
    max-width: 500px;
    margin: 0 auto;
  }

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

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

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 600px) {
  :root {
    --header-h: 64px;
    --space-2xl: 4rem;
    --space-xl: 2.5rem;
  }

  .section {
    padding: var(--space-xl) 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

  .stat-item { padding: 1rem 0.5rem; }

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

  /* Buttons: side-by-side where possible, stack on very small screens */
  .hero-actions {
    flex-direction: row;
    width: 100%;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    white-space: normal;
  }

  .cta-actions {
    flex-direction: row;
    width: 100%;
    gap: 0.75rem;
  }

  .cta-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    white-space: normal;
  }

  /* Contact page buttons side-by-side */
  .contact-actions .btn {
    flex: 1 1 0;
    min-width: 0;
    white-space: normal;
  }

  /* Cards: tighter padding on mobile */
  .contact-form {
    padding: 1.25rem;
  }

  .vm-card {
    padding: 1.25rem;
  }

  .card {
    padding: 1.25rem;
  }

  .hero-card {
    padding: 1.25rem;
  }

  /* Hero adjustments */
  .hero {
    padding: calc(var(--header-h) + 2rem) 0 2.5rem;
  }

  .hero .hero-tagline {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  /* Page hero tighter */
  .page-hero {
    padding: calc(var(--header-h) + 2rem) 0 2rem;
  }

  .page-hero p {
    font-size: 1rem;
  }

  /* Feature list: 1 column on mobile */
  .feature-list {
    grid-template-columns: 1fr;
  }

  /* Feature item: tighter spacing */
  .feature-item {
    padding: 1rem;
    gap: 0.75rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

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

  /* Nav logo smaller on mobile */
  .nav-logo img {
    max-width: 180px;
  }

  /* Pricing card tighter */
  .pricing-card {
    padding: 1.5rem 1.25rem;
  }

  .pricing-speed {
    font-size: 2.25rem;
  }

  /* Map shorter on mobile */
  .map-container iframe {
    height: 300px;
  }

  /* Contact info items tighter */
  .contact-info-item {
    padding: 1rem 0;
    gap: 0.75rem;
  }

  .contact-info-icon {
    width: 40px;
    height: 40px;
    font-size: 1.125rem;
  }

  /* Hero card items tighter */
  .hero-card-item {
    gap: 0.625rem;
    padding: 0.625rem 0;
  }

  .hero-card-icon {
    width: 36px;
    height: 36px;
    font-size: 1.125rem;
  }

  /* Card icons slightly smaller */
  .card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }

  /* Value icon smaller */
  .value-icon {
    width: 56px;
    height: 56px;
  }

  /* Process step number smaller */
  .process-step-number {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  /* Buttons: stack vertically on very small screens */
  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  /* Contact buttons stack */
  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .btn {
    width: 100%;
  }

  /* Button text smaller */
  .btn {
    font-size: 0.875rem;
    padding: 0.75rem 1.25rem;
  }

  .btn--lg {
    padding: 0.85rem 1.5rem;
    font-size: 0.9375rem;
  }

  /* Nav logo even smaller */
  .nav-logo img {
    max-width: 150px;
  }

  /* Container tighter padding */
  .container {
    padding: 0 1rem;
  }

  /* Stats: single column on very small screens */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .stat-item {
    padding: 0.75rem;
  }

  /* Section header tighter */
  .section-header p {
    font-size: 0.9375rem;
  }

  /* CTA section tighter */
  .cta-section p {
    font-size: 0.9375rem;
  }
}

/* --------------------------------------------------------------------------
   23. Font Awesome Adjustments
   -------------------------------------------------------------------------- */
.card-icon i,
.feature-icon i,
.value-icon i,
.contact-info-icon i,
.hero-card-icon i {
  font-size: inherit;
  line-height: 1;
}

.card-icon i { font-size: 1.5rem; }
.feature-icon i { font-size: 1.25rem; }
.value-icon i { font-size: 1.75rem; }
.contact-info-icon i { font-size: 1.25rem; }
.hero-card-icon i { font-size: 1.25rem; }

.vm-card h3 i {
  color: var(--secondary);
  margin-right: 0.25rem;
}

.footer-contact-item span i {
  font-size: 1rem;
}

.footer-social a i {
  font-size: 1rem;
}

.btn--whatsapp i,
.btn i {
  font-size: 1.1em;
}
