/* PORT24 Technologies - Static Site Styles */
:root {
  --primary: #0066CC;
  --primary-dark: #003D7A;
  --primary-light: #3399FF;
  --secondary: #1E40AF;
  --secondary-light: #3B82F6;
  --foreground-rgb: 0, 0, 0;
  --background-start-rgb: 214, 219, 220;
  --background-end-rgb: 255, 255, 255;
}

@media (prefers-color-scheme: dark) {
  :root {
    --foreground-rgb: 255, 255, 255;
    --background-start-rgb: 0, 0, 0;
    --background-end-rgb: 0, 0, 0;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  color: rgb(var(--foreground-rgb));
  background: linear-gradient(to bottom, transparent, rgb(var(--background-end-rgb))) rgb(var(--background-start-rgb));
}

/* ========== Animations ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15px, -15px) scale(1.02); }
  66% { transform: translate(-10px, 10px) scale(0.98); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.3; filter: blur(80px); }
  50% { opacity: 0.5; filter: blur(90px); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Utilities */
.container { max-width: 1280px; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }
@media (min-width: 640px) { .container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-left: 2rem; padding-right: 2rem; } }

.text-center { text-align: center; }
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 768px) { .navbar-inner { height: 5rem; } }
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  color: white;
  transition: color 0.2s;
}
.navbar.scrolled .navbar-brand { color: var(--primary); }
.nav-desktop {
  display: none;
}
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
.nav-desktop a {
  font-weight: 500;
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  transition: color 0.25s ease, transform 0.25s ease;
  position: relative;
}
.navbar.scrolled .nav-desktop a { color: #374151; }
.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-desktop a:hover { color: var(--primary-light); transform: translateY(-1px); }
.nav-desktop a:hover::after { width: 100%; }
.navbar.scrolled .nav-desktop a:hover { color: var(--primary); }
.navbar.scrolled .nav-desktop a::after { background: var(--primary); }
.nav-toggle {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
}
.navbar.scrolled .nav-toggle { color: #374151; }
@media (min-width: 768px) { .nav-toggle { display: none; } }
.nav-mobile {
  display: none;
  background: white;
  border-top: 1px solid #e5e7eb;
  padding: 1rem;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: block;
  padding: 0.5rem 0;
  color: #374151;
  font-weight: 500;
  text-decoration: none;
}
.nav-mobile a:hover { color: var(--primary); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--primary) 100%);
  background-size: 200% 200%;
  animation: gradientShift 12s ease infinite;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 12s ease-in-out infinite;
}
.hero-blob-1 {
  top: 5rem;
  left: 2.5rem;
  width: 18rem;
  height: 18rem;
  background: var(--primary-light);
  animation-delay: 0s;
  animation-name: float, pulse-glow;
  animation-duration: 12s, 6s;
  animation-iteration-count: infinite, infinite;
}
.hero-blob-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: var(--secondary-light);
  animation-delay: -4s;
  animation-name: float, pulse-glow;
  animation-duration: 14s, 7s;
  animation-iteration-count: infinite, infinite;
}
.hero-content {
  position: relative;
  z-index: 10;
  padding: 8rem 0 4rem;
  text-align: center;
}
.hero-content .hero-title {
  animation: fadeInUp 0.9s ease-out forwards;
  opacity: 0;
}
.hero-content .hero-lead {
  animation: fadeInUp 0.9s ease-out 0.2s forwards;
  opacity: 0;
}
.hero-content .hero-buttons {
  animation: fadeInUp 0.9s ease-out 0.4s forwards;
  opacity: 0;
}
.hero-content .hero-stat-card {
  animation: scaleIn 0.5s ease-out backwards;
}
.hero-content .hero-stat-card:nth-child(1) { animation-delay: 0.8s; }
.hero-content .hero-stat-card:nth-child(2) { animation-delay: 0.95s; }
.hero-content .hero-stat-card:nth-child(3) { animation-delay: 1.1s; }
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) { .hero h1 { font-size: 4.5rem; } }
.hero h1 .highlight {
  display: block;
  margin-top: 0.5rem;
  background: linear-gradient(90deg, #fff 0%, #66b3ff 25%, #fff 50%, #66b3ff 75%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}
.hero .lead {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  max-width: 48rem;
  margin: 0 auto 2rem;
}
@media (min-width: 768px) { .hero .lead { font-size: 1.5rem; } }
.hero .lead .sub { display: block; margin-top: 0.5rem; font-weight: 600; color: var(--primary-light); }
.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 4rem;
}
@media (min-width: 640px) { .hero-buttons { flex-direction: row; justify-content: center; } }
.hero-buttons a, .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
}
.btn-primary:hover {
  background: #f3f4f6;
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.15);
}
.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.05);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.2);
}
.btn-light { background: var(--primary-light); color: white; }
.btn-light:hover {
  background: rgba(51,153,255,0.95);
  transform: scale(1.05);
  box-shadow: 0 0 24px rgba(51,153,255,0.5);
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .hero-stats { grid-template-columns: repeat(3, 1fr); } }
.hero-stat-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background 0.35s ease, box-shadow 0.35s ease;
}
.hero-stat-card:hover {
  transform: translateY(-6px) scale(1.05);
  background: rgba(255,255,255,0.18);
  box-shadow: 0 16px 32px -12px rgba(0,0,0,0.2);
}
.hero-stat-card .value { font-size: 2.25rem; font-weight: 700; color: white; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .hero-stat-card .value { font-size: 3rem; } }
.hero-stat-card .label { color: rgba(255,255,255,0.8); font-size: 0.875rem; }
@media (min-width: 768px) { .hero-stat-card .label { font-size: 1rem; } }

/* Sections */
.section { padding: 5rem 0; }
.section-white { background: white; }
.section-gray { background: #f9fafb; }
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .section-title { font-size: 3rem; } }
.section-divider {
  width: 6rem;
  height: 4px;
  background: var(--primary);
  margin: 0 auto 1.5rem;
  transition: transform 0.5s ease, width 0.5s ease;
}
.reveal .section-divider { transform: scaleX(0); transform-origin: center; }
.reveal.visible .section-divider { transform: scaleX(1); }
.section-subtitle { color: #4b5563; font-size: 1.125rem; max-width: 42rem; margin: 0 auto 1.5rem; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }
.reveal-delay-9 { transition-delay: 0.9s; }
.reveal-delay-10 { transition-delay: 1s; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}
@media (min-width: 768px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-text h2 { font-size: 1.5rem; font-weight: 600; color: #111827; margin-bottom: 1rem; }
.about-text p { color: #4b5563; margin-bottom: 1rem; line-height: 1.6; }
.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.about-card {
  border-radius: 0.75rem;
  padding: 1.5rem;
  color: white;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.about-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 30px -10px rgba(0,0,0,0.25);
}
.about-card-1 { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.about-card-2 { background: linear-gradient(135deg, var(--secondary), var(--secondary-light)); }
.about-card-3 { background: linear-gradient(135deg, var(--primary-light), var(--primary)); }
.about-card-4 { background: linear-gradient(135deg, var(--secondary-light), var(--secondary)); }
.about-card .value { font-size: 2.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.about-card .label { font-size: 0.875rem; opacity: 0.9; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  border: 1px solid #e5e7eb;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.3s;
  position: relative;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px -12px rgba(0,102,204,0.2);
  border-color: rgba(0,102,204,0.2);
}
.service-card:hover .icon { animation: iconBounce 0.5s ease; }
.service-card .icon {
  display: inline-block;
  transition: transform 0.3s ease;
}
.service-card.featured {
  border: 2px solid var(--primary);
  background: linear-gradient(to bottom right, rgba(0,102,204,0.05), rgba(51,153,255,0.05));
}
@media (min-width: 768px) { .service-card.featured { grid-column: span 2; } }
@media (min-width: 1024px) { .service-card.featured { grid-column: span 1; } }
.service-card .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}
.service-card .icon { display: flex; align-items: center; margin-bottom: 1rem; }
.service-card .icon .icon-svg { color: var(--primary); }
.service-card h3 { font-size: 1.25rem; font-weight: 600; color: #111827; margin-bottom: 0.5rem; }
.service-card p { color: #4b5563; font-size: 0.875rem; line-height: 1.5; margin-bottom: 1rem; }
.service-card a {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
}
.service-card a:hover { color: var(--primary-dark); }
.services-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--primary); font-weight: 600; text-decoration: none; margin-top: 1rem; }
.services-link:hover { color: var(--primary-dark); }

/* Stats */
.stats-section {
  background: linear-gradient(to bottom right, var(--primary), var(--primary-dark), var(--primary));
  color: white;
  position: relative;
  overflow: hidden;
}
.stats-section::before, .stats-section::after {
  content: '';
  position: absolute;
  width: 24rem;
  height: 24rem;
  background: white;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.1;
}
.stats-section::before { top: 0; left: 0; }
.stats-section::after { bottom: 0; right: 0; }
.stats-section .section-divider { background: white; }
.stats-section .section-title { color: white; }
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, background 0.3s;
}
.stat-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.2);
  background: rgba(255,255,255,0.15);
}
.stat-card .value { font-size: 2.25rem; font-weight: 700; margin-bottom: 0.5rem; color: white; }
@media (min-width: 768px) { .stat-card .value { font-size: 3rem; } }
.stat-card .label { color: rgba(255,255,255,0.8); font-size: 0.875rem; }
@media (min-width: 768px) { .stat-card .label { font-size: 1rem; } }

/* Testimonials */
.testimonials-grid {
  display: none;
}
@media (min-width: 768px) {
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
  }
}
.testimonial-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -12px rgba(0, 102, 204, 0.15), 0 12px 24px -8px rgba(0, 102, 204, 0.1);
  border-color: rgba(0, 102, 204, 0.2);
}
.testimonial-quote {
  opacity: 0.15;
  margin-bottom: 0.75rem;
}
.testimonial-quote svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--primary);
}
.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}
.testimonial-stars svg {
  width: 1.125rem;
  height: 1.125rem;
  color: #fbbf24;
}
.testimonial-text {
  color: #374151;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 1.5rem;
  font-style: normal;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
}
.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author-info { min-width: 0; }
.testimonial-name { font-weight: 600; color: #111827; font-size: 1rem; }
.testimonial-meta { font-size: 0.8125rem; color: #6b7280; margin-top: 0.125rem; }
.testimonials-carousel {
  display: block;
  position: relative;
  margin-top: 2rem;
  width: 100%;
  overflow: hidden;
  min-height: 280px;
}
@media (min-width: 768px) { .testimonials-carousel { display: none; } }
.testimonials-track {
  display: flex;
  flex-wrap: nowrap;
  width: 600%;
  min-width: 600%;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.testimonial-slide {
  flex: 0 0 16.666667%;
  width: 16.666667%;
  min-width: 16.666667%;
  padding: 0 1rem;
  box-sizing: border-box;
}
.testimonial-slide .testimonial-card { padding: 2rem 1.5rem; }
.carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}
.carousel-dots { display: flex; gap: 0.5rem; }
.carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #d1d5db;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.carousel-dot:hover { background: #9ca3af; }
.carousel-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}
.carousel-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: white;
  color: var(--primary);
  border: 2px solid #e5e7eb;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.carousel-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* FAQ */
.faq-list { max-width: 56rem; margin: 0 auto; }
.faq-item {
  background: white;
  border-radius: 0.5rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  margin-bottom: 1rem;
}
.faq-question {
  width: 100%;
  padding: 1rem 1.5rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  color: #111827;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.faq-question:hover { background: #f9fafb; }
.faq-question svg { flex-shrink: 0; color: var(--primary); transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-item {
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item:hover { border-color: rgba(0,102,204,0.3); }
.faq-item.open { box-shadow: 0 8px 20px -8px rgba(0,102,204,0.2); border-color: rgba(0,102,204,0.3); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 1rem 1.5rem; color: #4b5563; line-height: 1.6; border-top: 1px solid #e5e7eb; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info h3 { font-size: 1.5rem; font-weight: 600; color: #111827; margin-bottom: 1.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: rgba(0,102,204,0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}
.contact-icon .icon-svg { color: var(--primary); }
.contact-item h4 { font-weight: 600; color: #111827; margin-bottom: 0.25rem; }
.contact-item p, .contact-item a { color: #4b5563; text-decoration: none; font-size: 0.875rem; }
.contact-item a:hover { color: var(--primary-dark); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: #374151; margin-bottom: 0.5rem; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(0,102,204,0.2);
}
.form-group textarea { resize: none; min-height: 150px; }
.form-error { font-size: 0.875rem; color: #dc2626; margin-top: 0.25rem; }
.form-message {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.form-message.success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.form-message.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.btn-submit {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}
.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(0,102,204,0.4);
}
.btn-submit:active { transform: translateY(0); }
.btn-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* Footer */
.footer {
  background: #111827;
  color: #d1d5db;
  padding: 3rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.footer-brand img { height: 2.5rem; width: auto; }
.footer-brand span { font-size: 1.25rem; font-weight: 700; color: white; }
.footer p { font-size: 0.875rem; margin-bottom: 1rem; }
.footer h3 { color: white; font-weight: 600; margin-bottom: 1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 0.5rem; display: flex; align-items: flex-start; gap: 0.5rem; }
.footer ul li .footer-icon { margin-top: 0.2em; flex-shrink: 0; }
.footer a { color: #9ca3af; text-decoration: none; font-size: 0.875rem; }
.footer a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid #1f2937;
  margin-top: 2rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer-bottom-links { display: flex; gap: 1.5rem; font-size: 0.875rem; }

/* Page padding for fixed navbar */
.page-content { padding-top: 5rem; }
.min-h-screen { min-height: 100vh; }

/* Inner pages - hero */
.page-hero {
  background: linear-gradient(to bottom right, var(--primary), var(--primary-dark), var(--primary));
  padding: 5rem 0;
  text-align: center;
  color: white;
}
.page-hero .icon { font-size: 4rem; margin-bottom: 1.5rem; }
.page-hero h1 { font-size: 2.25rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .page-hero h1 { font-size: 3.75rem; } }
.page-hero p { font-size: 1.25rem; opacity: 0.9; max-width: 48rem; margin: 0 auto 2rem; }
@media (min-width: 768px) { .page-hero p { font-size: 1.5rem; } }

/* Content sections */
.content-section { padding: 5rem 0; }
.content-section h2 { font-size: 1.875rem; font-weight: 700; color: #111827; margin-bottom: 3rem; text-align: center; }
@media (min-width: 768px) { .content-section h2 { font-size: 2.25rem; } }
.content-grid-2 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .content-grid-2 { grid-template-columns: repeat(2, 1fr); } }
.content-grid-3 { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .content-grid-3 { grid-template-columns: repeat(3, 1fr); } }
.content-grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .content-grid-4 { grid-template-columns: repeat(4, 1fr); } }
.content-card {
  background: #f9fafb;
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.content-card.white { background: white; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.content-card .icon-4xl { display: flex; margin-bottom: 1rem; }
.content-card h3 { font-size: 1.25rem; font-weight: 600; color: #111827; margin-bottom: 0.75rem; }
.content-card p { color: #4b5563; margin-bottom: 1rem; }
.content-card ul { margin: 0; padding-left: 1.25rem; color: #4b5563; }
.content-card li { margin-bottom: 0.5rem; }
.cta-section {
  background: var(--primary);
  color: white;
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 { color: white; margin-bottom: 1.5rem; }
.cta-section p { opacity: 0.9; font-size: 1.25rem; margin-bottom: 2rem; }

/* Prose (privacy) */
.prose { max-width: 56rem; margin: 0 auto; }
.prose h1 { font-size: 2.25rem; font-weight: 700; color: #111827; margin-bottom: 1.5rem; }
.prose h2 { font-size: 1.5rem; font-weight: 600; color: #111827; margin: 2rem 0 1rem; }
.prose h3 { font-size: 1.25rem; font-weight: 600; color: #1f2937; margin: 1.5rem 0 0.75rem; }
.prose p, .prose li { color: #374151; margin-bottom: 1rem; line-height: 1.6; }
.prose ul { padding-left: 1.5rem; }
.prose .bg-gray-50 { background: #f9fafb; padding: 1rem; border-radius: 0.5rem; margin: 1rem 0; }

/* Icon SVG sizes */
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
.icon-xl { width: 2rem; height: 2rem; }
.icon-2xl { width: 2.5rem; height: 2.5rem; }
.icon-4xl { width: 4rem; height: 4rem; }
.icon-6xl { width: 4rem; height: 4rem; }
@media (min-width: 768px) { .icon-6xl { width: 5rem; height: 5rem; } }

/* SVG icons - inherit color for stroke */
.icon-svg {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  color: inherit;
}
.icon-svg-sm { width: 1.5rem; height: 1.5rem; }
.icon-svg-xl { width: 4rem; height: 4rem; }
.icon-4xl .icon-svg, .icon-4xl svg { width: 4rem; height: 4rem; }
.icon-6xl .icon-svg, .icon-6xl svg { width: 4rem; height: 4rem; }
@media (min-width: 768px) { .icon-6xl .icon-svg, .icon-6xl svg { width: 5rem; height: 5rem; } }
.service-card .icon .icon-svg { color: var(--primary); }
.contact-icon .icon-svg { color: var(--primary); }
.footer-icon {
  width: 1rem;
  height: 1rem;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
  color: #9ca3af;
}
.footer ul li .footer-icon { flex-shrink: 0; }
