/* ==========================================================================
   VI Web Hosting — "Caribbean Precision" Design System
   ========================================================================== */

/* --- Custom Properties --- */
:root {
  --deep-ocean: #0B1D3A;
  --navy: #112240;
  --teal: #146C94;
  --caribbean: #19A7CE;
  --caribbean-light: #64CDD5;
  --coral: #FF6B35;
  --coral-hover: #E85A28;
  --sand: #FAF8F5;
  --seafoam: #E8F6EF;
  --warm-white: #FDFCFB;
  --white: #FFFFFF;
  --gray-100: #F3F4F6;
  --gray-300: #D1D5DB;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --gray-900: #111827;

  --font-display: 'Bricolage Grotesque', Georgia, serif;
  --font-body: 'Figtree', -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(11, 29, 58, 0.08);
  --shadow-md: 0 4px 16px rgba(11, 29, 58, 0.1);
  --shadow-lg: 0 12px 40px rgba(11, 29, 58, 0.12);
  --shadow-xl: 0 20px 60px rgba(11, 29, 58, 0.16);
  --shadow-glow: 0 0 40px rgba(25, 167, 206, 0.15);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--warm-white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.25s ease; }

/* Override Kadence defaults */
body.viwebhosting-page .site-header,
body.viwebhosting-page .site-footer,
body.viwebhosting-page #wrapper { display: none !important; }
body.viwebhosting-page .site { padding: 0 !important; margin: 0 !important; max-width: none !important; }
body.viwebhosting-page { padding: 0 !important; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--gray-900);
}

.vi-h1 { font-size: clamp(2.8rem, 6vw, 4.5rem); font-weight: 800; letter-spacing: -0.03em; }
.vi-h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.02em; }
.vi-h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); font-weight: 600; }
.vi-body-lg { font-size: 1.2rem; line-height: 1.75; }
.vi-body { font-size: 1.05rem; line-height: 1.7; }
.vi-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* --- Layout --- */
.vi-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.vi-container--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.vi-section {
  padding: 100px 0;
  position: relative;
}

.vi-grid {
  display: grid;
  gap: 32px;
}

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

/* --- Buttons --- */
.vi-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.vi-btn--primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35);
}

.vi-btn--primary:hover {
  background: var(--coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 107, 53, 0.45);
}

.vi-btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.vi-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

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

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

.vi-btn--sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.vi-btn--lg {
  padding: 20px 44px;
  font-size: 1.1rem;
}

/* --- Navigation --- */
.vi-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.vi-nav--scrolled {
  background: rgba(11, 29, 58, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.vi-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.vi-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.vi-nav__logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--caribbean), var(--teal));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  box-shadow: 0 2px 12px rgba(25, 167, 206, 0.4);
}

.vi-nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.vi-nav__links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.25s ease;
  position: relative;
}

.vi-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--caribbean);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.vi-nav__links a:hover { color: var(--white); }
.vi-nav__links a:hover::after { width: 100%; }
.vi-nav__links a.active { color: var(--white); }
.vi-nav__links a.active::after { width: 100%; }

.vi-nav__cta .vi-btn {
  padding: 10px 26px;
  font-size: 0.9rem;
}

/* Mobile menu toggle */
.vi-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.vi-nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.vi-nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.vi-nav__toggle.active span:nth-child(2) { opacity: 0; }
.vi-nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* --- Hero Section --- */
.vi-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, var(--deep-ocean) 0%, #0E2954 40%, var(--teal) 100%);
  overflow: hidden;
  padding-top: 80px;
}

.vi-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 800px 600px at 20% 50%, rgba(25, 167, 206, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 80% 30%, rgba(20, 108, 148, 0.2) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 60% 80%, rgba(100, 205, 213, 0.1) 0%, transparent 70%);
  z-index: 1;
}

/* Animated floating particles */
.vi-hero__particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.vi-hero__particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(25, 167, 206, 0.15);
  animation: float-up linear infinite;
}

@keyframes float-up {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.vi-hero__particle:nth-child(1) { width: 8px; height: 8px; left: 10%; animation-duration: 18s; animation-delay: 0s; }
.vi-hero__particle:nth-child(2) { width: 12px; height: 12px; left: 25%; animation-duration: 22s; animation-delay: 3s; }
.vi-hero__particle:nth-child(3) { width: 6px; height: 6px; left: 40%; animation-duration: 16s; animation-delay: 6s; }
.vi-hero__particle:nth-child(4) { width: 10px; height: 10px; left: 55%; animation-duration: 20s; animation-delay: 2s; }
.vi-hero__particle:nth-child(5) { width: 14px; height: 14px; left: 70%; animation-duration: 24s; animation-delay: 5s; }
.vi-hero__particle:nth-child(6) { width: 7px; height: 7px; left: 85%; animation-duration: 17s; animation-delay: 8s; }
.vi-hero__particle:nth-child(7) { width: 9px; height: 9px; left: 15%; animation-duration: 21s; animation-delay: 4s; }
.vi-hero__particle:nth-child(8) { width: 11px; height: 11px; left: 60%; animation-duration: 19s; animation-delay: 7s; }

/* Subtle grain texture */
.vi-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  z-index: 2;
  pointer-events: none;
}

.vi-hero__content {
  position: relative;
  z-index: 3;
  max-width: 720px;
}

.vi-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(25, 167, 206, 0.15);
  border: 1px solid rgba(25, 167, 206, 0.3);
  border-radius: 100px;
  color: var(--caribbean-light);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.vi-hero__badge svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.vi-hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.vi-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--caribbean-light), var(--caribbean));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vi-hero__sub {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 560px;
}

.vi-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.vi-hero__graphic {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  z-index: 2;
  opacity: 0.08;
}

/* Wave divider */
.vi-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  line-height: 0;
  pointer-events: none;
}

.vi-wave svg {
  width: 100%;
  height: auto;
}

/* --- Features Section --- */
.vi-features {
  background: var(--sand);
  position: relative;
}

.vi-features__header {
  text-align: center;
  margin-bottom: 64px;
}

.vi-features__header .vi-label {
  color: var(--caribbean);
  margin-bottom: 16px;
  display: block;
}

.vi-features__header .vi-h2 {
  margin-bottom: 16px;
}

.vi-features__header p {
  color: var(--gray-500);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.vi-feature-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.vi-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--caribbean), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

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

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

.vi-feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(25, 167, 206, 0.1), rgba(20, 108, 148, 0.08));
}

.vi-feature-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vi-feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-900);
}

.vi-feature-card p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* --- Pricing Section --- */
.vi-pricing {
  background: var(--white);
  position: relative;
}

.vi-pricing__header {
  text-align: center;
  margin-bottom: 64px;
}

.vi-pricing__header .vi-label {
  color: var(--coral);
  margin-bottom: 16px;
  display: block;
}

.vi-pricing__header .vi-h2 { margin-bottom: 16px; }

.vi-pricing__header p {
  color: var(--gray-500);
  max-width: 540px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.vi-pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.vi-pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all 0.35s ease;
}

.vi-pricing-card:hover {
  box-shadow: var(--shadow-lg);
}

.vi-pricing-card--popular {
  border: 2px solid var(--caribbean);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: scale(1.04);
  z-index: 2;
}

.vi-pricing-card--popular:hover {
  transform: scale(1.06);
}

.vi-pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--caribbean), var(--teal));
  color: var(--white);
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.vi-pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.vi-pricing-card__desc {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.vi-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.vi-pricing-card__price .currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
}

.vi-pricing-card__price .amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
  letter-spacing: -0.03em;
}

.vi-pricing-card__price .period {
  color: var(--gray-500);
  font-size: 0.95rem;
}

.vi-pricing-card__billing {
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-100);
}

.vi-pricing-card__features {
  list-style: none;
  margin-bottom: 32px;
}

.vi-pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.vi-pricing-card__features li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.vi-pricing-card__features li .check {
  stroke: var(--caribbean);
  fill: none;
  stroke-width: 2.5;
}

.vi-pricing-card .vi-btn {
  width: 100%;
  justify-content: center;
}

/* --- Why Local Section --- */
.vi-local {
  background: linear-gradient(165deg, var(--deep-ocean) 0%, #0E2954 60%, var(--teal) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.vi-local::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
}

.vi-local__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.vi-local .vi-label {
  color: var(--caribbean-light);
  margin-bottom: 16px;
  display: block;
}

.vi-local .vi-h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.vi-local__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.vi-local__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.vi-stat {
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.vi-stat:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.vi-stat__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--caribbean-light);
  line-height: 1;
  margin-bottom: 6px;
}

.vi-stat__label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.vi-local__points {
  list-style: none;
}

.vi-local__points li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vi-local__points li:last-child { border-bottom: none; }

.vi-local__points li .icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(25, 167, 206, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vi-local__points li .icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--caribbean-light);
  fill: none;
  stroke-width: 2;
}

.vi-local__points li h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.vi-local__points li p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --- CTA Section --- */
.vi-cta {
  background: linear-gradient(135deg, var(--coral), #E85A28, #D14A1C);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vi-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.vi-cta::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.vi-cta__inner {
  position: relative;
  z-index: 1;
}

.vi-cta .vi-h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.vi-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.vi-cta .vi-btn--secondary {
  background: var(--white);
  color: var(--coral);
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.vi-cta .vi-btn--secondary:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* --- Footer --- */
.vi-footer {
  background: var(--deep-ocean);
  color: rgba(255, 255, 255, 0.6);
  padding: 72px 0 32px;
}

.vi-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vi-footer__brand {
  max-width: 300px;
}

.vi-footer__brand .vi-nav__logo {
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.vi-footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.vi-footer h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.vi-footer__links {
  list-style: none;
}

.vi-footer__links li { margin-bottom: 12px; }

.vi-footer__links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.25s ease;
}

.vi-footer__links a:hover { color: var(--caribbean-light); }

.vi-footer__contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.vi-footer__contact svg {
  width: 18px;
  height: 18px;
  stroke: var(--caribbean);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.vi-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

.vi-footer__bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.25s ease;
}

.vi-footer__bottom a:hover { color: var(--caribbean-light); }

/* --- Personal / Terry Section --- */
.vi-personal {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.vi-headshot {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(25, 167, 206, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.vi-headshot--lg {
  width: 120px;
  height: 120px;
  border-width: 4px;
}

.vi-headshot--hero {
  width: 280px;
  height: 280px;
  border-width: 4px;
  border-color: rgba(25, 167, 206, 0.3);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25), 0 0 60px rgba(25, 167, 206, 0.1);
}

.vi-personal__info {
  display: flex;
  flex-direction: column;
}

.vi-personal__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.vi-personal__title {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.vi-personal--dark .vi-personal__name { color: var(--gray-900); }
.vi-personal--dark .vi-personal__title { color: var(--gray-500); }

.vi-meet-terry {
  display: flex;
  align-items: center;
  gap: 40px;
}

.vi-meet-terry__photo {
  flex-shrink: 0;
}

.vi-meet-terry__content {
  flex: 1;
}

@media (max-width: 768px) {
  .vi-meet-terry { flex-direction: column; text-align: center; }
  .vi-headshot--hero { width: 200px; height: 200px; }
}

/* --- About Page --- */
.vi-about-hero {
  background: linear-gradient(165deg, var(--deep-ocean) 0%, #0E2954 100%);
  padding: 160px 0 100px;
  text-align: center;
  color: var(--white);
  position: relative;
}

.vi-about-hero .vi-h1 { color: var(--white); margin-bottom: 20px; }
.vi-about-hero p { color: rgba(255, 255, 255, 0.7); font-size: 1.2rem; max-width: 600px; margin: 0 auto; }

.vi-about-story {
  background: var(--sand);
}

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

.vi-about-story__text h2 { margin-bottom: 20px; }
.vi-about-story__text p { color: var(--gray-500); margin-bottom: 16px; font-size: 1.05rem; line-height: 1.8; }
.vi-about-story__text p:last-child { margin-bottom: 0; }

.vi-about-values {
  background: var(--white);
}

.vi-value-card {
  text-align: center;
  padding: 40px 28px;
}

.vi-value-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(25, 167, 206, 0.12), rgba(20, 108, 148, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.vi-value-card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
}

.vi-value-card h3 { margin-bottom: 10px; }
.vi-value-card p { color: var(--gray-500); font-size: 0.95rem; }

/* --- Contact Page --- */
.vi-contact-hero {
  background: linear-gradient(165deg, var(--deep-ocean) 0%, #0E2954 100%);
  padding: 160px 0 100px;
  text-align: center;
  color: var(--white);
}

.vi-contact-hero .vi-h1 { color: var(--white); margin-bottom: 20px; }
.vi-contact-hero p { color: rgba(255, 255, 255, 0.7); font-size: 1.2rem; max-width: 540px; margin: 0 auto; }

.vi-contact {
  background: var(--sand);
}

.vi-contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.vi-contact__info h3 { margin-bottom: 24px; }

.vi-contact__methods {
  list-style: none;
  margin-bottom: 36px;
}

.vi-contact__methods li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.vi-contact__methods li:last-child { border-bottom: none; }

.vi-contact__methods .icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(25, 167, 206, 0.12), rgba(20, 108, 148, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vi-contact__methods .icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
}

.vi-contact__methods h4 {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 2px;
}

.vi-contact__methods a,
.vi-contact__methods p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-900);
}

.vi-contact__methods a:hover { color: var(--teal); }

.vi-contact__form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.vi-contact__form h3 { margin-bottom: 28px; }

.vi-form-group {
  margin-bottom: 20px;
}

.vi-form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.vi-form-group input,
.vi-form-group select,
.vi-form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-900);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.vi-form-group input:focus,
.vi-form-group select:focus,
.vi-form-group textarea:focus {
  border-color: var(--caribbean);
  box-shadow: 0 0 0 3px rgba(25, 167, 206, 0.15);
}

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

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

/* --- Scroll Reveal --- */
.vi-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.vi-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.vi-reveal--delay-1 { transition-delay: 0.1s; }
.vi-reveal--delay-2 { transition-delay: 0.2s; }
.vi-reveal--delay-3 { transition-delay: 0.3s; }
.vi-reveal--delay-4 { transition-delay: 0.4s; }
.vi-reveal--delay-5 { transition-delay: 0.5s; }
.vi-reveal--delay-6 { transition-delay: 0.6s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .vi-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .vi-pricing__cards { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .vi-pricing-card--popular { transform: none; }
  .vi-pricing-card--popular:hover { transform: translateY(-4px); }
  .vi-local__inner { grid-template-columns: 1fr; gap: 48px; }
  .vi-footer__grid { grid-template-columns: 1fr 1fr; }
  .vi-about-story__inner { grid-template-columns: 1fr; gap: 40px; }
  .vi-contact__inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .vi-section { padding: 72px 0; }
  .vi-grid--2, .vi-grid--3 { grid-template-columns: 1fr; }

  .vi-nav__links { display: none; }
  .vi-nav__cta { display: none; }
  .vi-nav__toggle { display: block; }

  /* Mobile menu */
  .vi-nav__links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 29, 58, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 4px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  }

  .vi-nav__links.active a {
    display: block;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
  }

  .vi-nav__links.active a:hover { background: rgba(255, 255, 255, 0.06); }

  .vi-hero { min-height: auto; padding: 140px 0 100px; }
  .vi-hero__actions { flex-direction: column; }
  .vi-hero__actions .vi-btn { text-align: center; }

  .vi-local__stats { grid-template-columns: 1fr 1fr; }
  .vi-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .vi-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .vi-form-row { grid-template-columns: 1fr; }
  .vi-contact__form { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .vi-local__stats { grid-template-columns: 1fr; }
  .vi-pricing-card { padding: 32px 24px; }
}

/* === QA FIXES 2026-04-06 === */

/* Fix: contact info overflow on mobile */
@media (max-width: 480px) {
  .vi-contact__info { max-width: 100%; overflow: hidden; box-sizing: border-box; }
  .vi-contact__methods li { padding: 16px 12px; }
  .vi-contact__methods .icon { width: 36px; height: 36px; min-width: 36px; }
}

/* Fix: skip navigation link (WCAG 2.4.1) */
.vi-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  background: var(--navy, #0b1d3a);
  color: #fff;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 6px 0;
}
.vi-skip-link:focus {
  left: 0;
}
