:root {
  --primary-color: #1976D2;
  --primary-light: #42A5F5;
  --primary-dark: #0D47A1;
  --secondary-color: #00BCD4;
  --accent-color: #FF6F00;
  --success-color: #4CAF50;
  --accent-green: #00C853;
  --accent-purple: #7B1FA2;
  --accent-orange: #FF6F00;
  --accent-teal: #00897B;
  --accent-pink: #C2185B;
  --accent-indigo: #3949AB;
  --text-color: #212121;
  --text-secondary: #757575;
  --text-light: #9E9E9E;
  --bg-color: #FFFFFF;
  --bg-light: #FAFAFA;
  --bg-dark: #0D47A1;
  --border-color: #E0E0E0;
  --elevation-1: 0 2px 4px rgba(0, 0, 0, 0.1);
  --elevation-2: 0 3px 6px rgba(0, 0, 0, 0.12);
  --elevation-3: 0 4px 8px rgba(0, 0, 0, 0.14);
  --elevation-4: 0 6px 12px rgba(0, 0, 0, 0.16);
  --elevation-8: 0 8px 16px rgba(0, 0, 0, 0.18);
  --elevation-16: 0 16px 32px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 12px;
  --border-radius-small: 8px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica', 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

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

.navbar {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--elevation-2);
  z-index: 1000;
  transition: var(--transition);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  text-decoration: none;
}

.logo {
  width: 32px;
  height: 32px;
  /* iOS Safari SVG rendering optimizations */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  shape-rendering: geometricPrecision;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: var(--transition);
  padding: 8px 16px;
  border-radius: var(--border-radius-small);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.nav-links a:hover:not(.btn-primary) {
  color: var(--primary-color);
  background-color: rgba(25, 118, 210, 0.08);
}

.nav-links .btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 10px 24px;
  box-shadow: var(--elevation-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
}

.nav-links .btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0a2f6b 100%);
  box-shadow: var(--elevation-8);
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-color);
  transition: var(--transition);
}

.hero {
  padding: 120px 24px 100px;
  background: linear-gradient(135deg, #1976D2 0%, #0D47A1 50%, #01579B 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(66, 165, 245, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: translate(0, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-20px, -50%) scale(1.1); opacity: 0.5; }
}

/* Data burst background animations */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.data-stream {
  position: absolute;
  font-family: 'Courier New', monospace;
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(66, 165, 245, 0.15);
  white-space: nowrap;
  letter-spacing: 0.5rem;
}

.data-stream-1 {
  top: 15%;
  left: -20%;
  animation: float-right 25s linear infinite;
}

.data-stream-2 {
  top: 65%;
  right: -20%;
  animation: float-left 30s linear infinite;
}

.data-stream-3 {
  top: 85%;
  left: -20%;
  animation: float-right 35s linear infinite;
  font-size: 1.2rem;
}

.wave-pattern {
  position: absolute;
  width: 400px;
  color: rgba(66, 165, 245, 0.15);
  opacity: 0.5;
}

.wave-1 {
  top: 20%;
  left: -100%;
  height: 60px;
  animation: scroll-wave-fast 20s linear infinite;
}

.wave-2 {
  top: 45%;
  left: -100%;
  height: 80px;
  animation: scroll-wave-medium 25s linear infinite;
  animation-delay: -5s;
}

.wave-3 {
  top: 70%;
  left: -100%;
  height: 100px;
  animation: scroll-wave-slow 35s linear infinite;
  animation-delay: -10s;
}

.wave-4 {
  top: 30%;
  left: -100%;
  height: 60px;
  animation: scroll-wave-fast 22s linear infinite;
  animation-delay: -8s;
}

.wave-5 {
  top: 55%;
  left: -100%;
  height: 80px;
  animation: scroll-wave-medium 28s linear infinite;
  animation-delay: -15s;
}

.wave-6 {
  top: 38%;
  left: -100%;
  height: 60px;
  animation: scroll-wave-fast 18s linear infinite;
  animation-delay: -3s;
}

.wave-7 {
  top: 65%;
  left: -100%;
  height: 60px;
  animation: scroll-wave-medium 24s linear infinite;
  animation-delay: -12s;
}

.wave-8 {
  top: 15%;
  left: -100%;
  height: 50px;
  animation: scroll-wave-fast 15s linear infinite;
  animation-delay: -7s;
}

.wave-9 {
  top: 48%;
  left: -100%;
  height: 70px;
  animation: scroll-wave-medium 26s linear infinite;
  animation-delay: -18s;
}

.wave-10 {
  top: 78%;
  left: -100%;
  height: 60px;
  animation: scroll-wave-slow 30s linear infinite;
  animation-delay: -5s;
}

.wave-11 {
  top: 25%;
  left: -100%;
  height: 80px;
  animation: scroll-wave-slow 32s linear infinite;
  animation-delay: -20s;
}

.wave-12 {
  top: 60%;
  left: -100%;
  height: 50px;
  animation: scroll-wave-fast 16s linear infinite;
  animation-delay: -9s;
}

@keyframes float-right {
  0% { transform: translateX(0); }
  100% { transform: translateX(120vw); }
}

@keyframes float-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-120vw); }
}

@keyframes scroll-wave-fast {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(100vw + 400px)); }
}

@keyframes scroll-wave-medium {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(100vw + 400px)); }
}

@keyframes scroll-wave-slow {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(100vw + 400px)); }
}

/* Hex byte streams (horizontal) */
.hex-stream {
  position: absolute;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(66, 165, 245, 0.12);
  white-space: nowrap;
  letter-spacing: 0.3rem;
}

.hex-stream-1 {
  top: 25%;
  left: -20%;
  animation: float-right 40s linear infinite;
}

.hex-stream-2 {
  top: 50%;
  right: -20%;
  animation: float-left 35s linear infinite;
  animation-delay: -15s;
}

.hex-stream-3 {
  top: 75%;
  left: -20%;
  animation: float-right 45s linear infinite;
  animation-delay: -25s;
}

/* ASCII data streams (horizontal) */
.ascii-stream {
  position: absolute;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(66, 165, 245, 0.1);
  white-space: nowrap;
  letter-spacing: 0.2rem;
}

.ascii-stream-1 {
  top: 35%;
  left: -20%;
  animation: float-right 50s linear infinite;
  animation-delay: -10s;
}

.ascii-stream-2 {
  top: 60%;
  right: -20%;
  animation: float-left 42s linear infinite;
  animation-delay: -20s;
}

.ascii-stream-3 {
  top: 90%;
  left: -20%;
  animation: float-right 48s linear infinite;
  animation-delay: -30s;
}

/* Hex dump format (vertical) */
.hex-dump {
  position: absolute;
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(66, 165, 245, 0.12);
  line-height: 1.8;
  white-space: nowrap;
}

.hex-dump div {
  margin-bottom: 0.4rem;
}

.hex-dump-1 {
  top: -100%;
  right: 8%;
  animation: scroll-down-dump 55s linear infinite;
  animation-delay: -5s;
}

.hex-dump-2 {
  display: none;
}

@keyframes scroll-down {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(calc(100vh + 400px));
  }
}

@keyframes scroll-down-dump {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(calc(100vh + 300px));
  }
}

@keyframes scroll-up-dump {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(calc(-100vh - 300px));
  }
}

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

.hero-content {
  max-width: 600px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  letter-spacing: -1px;
  min-height: 140px;
}

.tagline-container {
  display: block;
  position: relative;
  min-height: 140px;
}

.tagline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.tagline.active {
  opacity: 1;
}

.highlight {
  background: linear-gradient(135deg, #42A5F5 0%, #00BCD4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-platforms {
  font-size: 0.95rem;
  opacity: 0.85;
  font-weight: 400;
}

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

.hero-screenshot {
  width: 100%;
  max-width: 750px;
  border-radius: 0;
  transition: var(--transition);
}

.hero-screenshot:hover {
  transform: scale(1.02);
}

.btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  position: relative;
  overflow: hidden;
}

.btn-large::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-large:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #42A5F5 0%, #1976D2 100%);
  color: white;
  box-shadow: var(--elevation-4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1976D2 0%, #0D47A1 100%);
  transform: translateY(-3px);
  box-shadow: var(--elevation-8);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
}

/* Hero Screenshots Carousel */
.screenshots-carousel {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-track.hero-screenshots {
  display: flex;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  max-width: 750px;
  width: 100%;
  position: relative;
}

.carousel-track.hero-screenshots::-webkit-scrollbar {
  display: none;
}

.hero-screenshot {
  flex: 0 0 100%;
  max-width: 100%;
  max-height: 500px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  scroll-snap-align: start;
  transition: var(--transition);
  cursor: pointer;
}

.hero-screenshot:hover {
  transform: scale(1.02);
}

/* Navigation dots for hero carousel */
.carousel-dots {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  justify-content: center;
  z-index: 5;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.carousel-dot.active {
  background-color: white;
  transform: scale(1.2);
}

.carousel-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

/* Lightbox Modal */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-image {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--elevation-16);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 48px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 10001;
}

.lightbox-close:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

section {
  padding: 100px 24px;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-color);
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.trusted-by {
  padding: 80px 24px;
  background: linear-gradient(135deg, #1a237e 0%, #0D47A1 50%, #01579B 100%);
  overflow: hidden;
  position: relative;
}

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

.section-title-small {
  font-size: 1.75rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.95rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 1;
}

.carousel-track {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.logo-card {
  flex: 0 0 auto;
  width: 220px;
  height: 140px;
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  scroll-snap-align: center;
  transition: var(--transition);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--elevation-3);
  text-decoration: none;
}

.logo-card:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--elevation-8);
  border-color: rgba(66, 165, 245, 0.5);
  background-color: rgba(255, 255, 255, 0.12);
}

.logo-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

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

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
  box-shadow: var(--elevation-4);
}

.carousel-btn:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
  border-color: transparent;
  box-shadow: var(--elevation-8);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
  left: -60px;
}

.carousel-btn-next {
  right: -60px;
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.features {
  background-color: var(--bg-light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.feature-card {
  background-color: white;
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--elevation-2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--elevation-8);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  box-shadow: var(--elevation-3);
}

.feature-card:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, var(--accent-teal), #00695C);
}

.feature-card:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, var(--accent-purple), #6A1B9A);
}

.feature-card:nth-child(4) .feature-icon {
  background: linear-gradient(135deg, var(--accent-orange), #E65100);
}

.feature-card:nth-child(5) .feature-icon {
  background: linear-gradient(135deg, var(--accent-pink), #AD1457);
}

.feature-card:nth-child(6) .feature-icon {
  background: linear-gradient(135deg, var(--accent-indigo), #303F9F);
}

.feature-card:nth-child(7) .feature-icon {
  background: linear-gradient(135deg, var(--accent-green), #00A843);
}

.feature-card:nth-child(8) .feature-icon {
  background: linear-gradient(135deg, var(--secondary-color), #0097A7);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 600;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 400;
}

.download {
  background-color: white;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 4rem;
}

.download-card {
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  box-shadow: var(--elevation-2);
}

.download-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-8px);
  box-shadow: var(--elevation-8);
  background-color: white;
}

.download-icon {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.download-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: 600;
}

.download-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.btn-download {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  margin-bottom: 1rem;
  box-shadow: var(--elevation-3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.btn-download:hover {
  background: linear-gradient(135deg, var(--primary-dark), #0a2f6b);
  transform: translateY(-2px);
  box-shadow: var(--elevation-8);
}

.download-note {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 400;
}

.download-note a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.download-note a:hover {
  text-decoration: underline;
}

.quick-start {
  background-color: white;
  padding: 48px;
  border-radius: var(--border-radius);
  margin-top: 4rem;
  box-shadow: var(--elevation-2);
}

.quick-start h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-color);
  font-weight: 600;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--elevation-4);
}

.step:nth-child(1) .step-number {
  background: linear-gradient(135deg, var(--accent-green), #00A843);
}

.step:nth-child(2) .step-number {
  background: linear-gradient(135deg, var(--accent-purple), #6A1B9A);
}

.step:nth-child(3) .step-number {
  background: linear-gradient(135deg, var(--accent-orange), #E65100);
}

.step-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: 600;
}

.step-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 400;
}

.pricing {
  background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--elevation-3);
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--elevation-16);
  border-color: var(--primary-light);
}

.pricing-card.featured {
  border: 3px solid var(--primary-color);
  transform: scale(1.05);
  background: linear-gradient(180deg, rgba(25, 118, 210, 0.02) 0%, white 100%);
  box-shadow: var(--elevation-8);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: var(--elevation-16);
}

/* Badge removed - users felt it was too pushy */
/*
.badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: var(--elevation-4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
*/

.pricing-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
  text-align: center;
  font-weight: 600;
}

.price {
  text-align: center;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.period {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.price-description {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  font-weight: 400;
}

.features-list {
  list-style: none;
  margin-bottom: 2rem;
}

.features-list li {
  padding: 12px 0;
  color: var(--text-color);
  position: relative;
  padding-left: 36px;
  font-weight: 400;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700;
  font-size: 1.25rem;
  width: 24px;
  height: 24px;
  background-color: rgba(76, 175, 80, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-list li.disabled {
  color: var(--text-light);
  text-decoration: line-through;
  opacity: 0.6;
}

.features-list li.disabled::before {
  content: '✗';
  color: var(--text-light);
  background-color: rgba(158, 158, 158, 0.1);
}

.btn-pricing {
  display: block;
  width: 100%;
  padding: 16px 32px;
  background-color: white;
  color: var(--primary-color);
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 700;
  text-align: center;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-pricing:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--elevation-8);
}

.btn-pricing.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  border-color: transparent;
  box-shadow: var(--elevation-4);
}

.btn-pricing.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), #0a2f6b);
  box-shadow: var(--elevation-8);
}

.trial-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.examples {
  background-color: white;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-bottom: 4rem;
}

.example-card {
  background-color: var(--bg-light);
  padding: 32px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--elevation-2);
  border-left: 5px solid var(--primary-color);
}

.example-beginner {
  border-left-color: var(--accent-green);
}

.example-intermediate {
  border-left-color: var(--accent-teal);
}

.example-advanced {
  border-left-color: var(--accent-purple);
}

.example-pro {
  border-left-color: var(--accent-orange);
}

.example-iot {
  border-left-color: var(--accent-pink);
}

.example-science {
  border-left-color: var(--accent-indigo);
}

.example-beginner .example-tag {
  background: linear-gradient(135deg, var(--accent-green), #00A843);
}

.example-intermediate .example-tag {
  background: linear-gradient(135deg, var(--accent-teal), #00695C);
}

.example-advanced .example-tag {
  background: linear-gradient(135deg, var(--accent-purple), #6A1B9A);
}

.example-pro .example-tag {
  background: linear-gradient(135deg, var(--accent-orange), #E65100);
}

.example-iot .example-tag {
  background: linear-gradient(135deg, var(--accent-pink), #AD1457);
}

.example-science .example-tag {
  background: linear-gradient(135deg, var(--accent-indigo), #303F9F);
}

.example-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--elevation-8);
  background-color: white;
}

.example-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--elevation-2);
}

.example-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 600;
}

.example-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-weight: 400;
}

.example-card a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.example-card a:hover {
  gap: 12px;
  color: var(--primary-dark);
}

.cta-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 50%, #01579B 100%);
  color: white;
  padding: 60px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--elevation-8);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-box h3 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.cta-box p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

.cta-box .btn-large {
  position: relative;
  z-index: 1;
}

.faq {
  background-color: var(--bg-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-bottom: 4rem;
}

.faq-item {
  background-color: white;
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--elevation-2);
  transition: var(--transition);
  border-left: 5px solid var(--secondary-color);
}

.faq-item:nth-child(1) {
  border-left-color: var(--primary-color);
}

.faq-item:nth-child(2) {
  border-left-color: var(--accent-green);
}

.faq-item:nth-child(3) {
  border-left-color: var(--accent-teal);
}

.faq-item:nth-child(4) {
  border-left-color: var(--accent-purple);
}

.faq-item:nth-child(5) {
  border-left-color: var(--accent-orange);
}

.faq-item:nth-child(6) {
  border-left-color: var(--accent-pink);
}

.faq-item:nth-child(7) {
  border-left-color: var(--accent-indigo);
}

.faq-item:nth-child(8) {
  border-left-color: var(--secondary-color);
}

.faq-item:hover {
  box-shadow: var(--elevation-8);
  transform: translateY(-4px);
}

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-color);
  font-weight: 600;
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-weight: 400;
}

.faq-item a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.faq-item a:hover {
  text-decoration: underline;
  color: var(--primary-dark);
}

.footer {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #0a2f6b 100%);
  color: rgba(255, 255, 255, 0.87);
  padding: 60px 24px 24px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  /* iOS Safari SVG rendering optimizations */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  shape-rendering: geometricPrecision;
}

.footer-section p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
  opacity: 0.87;
  font-weight: 400;
}

.footer-section h4 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.87);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 400;
}

.footer-section a:hover {
  color: white;
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 1.5rem;
}

.social-links a {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-color));
  transform: translateY(-4px) scale(1.1);
  box-shadow: var(--elevation-8);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 400;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.87);
  text-decoration: none;
  font-weight: 500;
}

.footer-bottom a:hover {
  color: white;
}

@media (max-width: 968px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.25rem;
    min-height: 115px;
    margin-bottom: 2rem;
  }

  .tagline-container {
    min-height: 115px;
  }

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

  .hero-image {
    order: -1;
  }

  .screenshots-carousel {
    gap: 12px;
  }

  .carousel-track.hero-screenshots {
    max-width: 100%;
  }

  .hero-screenshot {
    max-width: 100%;
    border-radius: 8px;
  }

  .carousel-dot {
    width: 6px;
    height: 6px;
  }

  .screenshots-carousel .carousel-btn {
    display: flex;
  }

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

  .carousel-btn {
    display: none;
  }

  .logo-card {
    width: 160px;
    height: 100px;
  }
}

@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero {
    padding: 80px 24px 60px;
  }

  .hero-title {
    font-size: 1.75rem;
    min-height: 110px;
    margin-bottom: 1.5rem;
  }

  .tagline-container {
    min-height: 110px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  /* Hide background animations on mobile for performance */
  .hero-background {
    display: none;
  }

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

  .btn-large {
    width: 100%;
    text-align: center;
  }

  section {
    padding: 80px 24px;
  }

  .section-title {
    font-size: 2rem;
  }

  .features-grid,
  .download-grid,
  .pricing-grid,
  .examples-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }

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

  .quick-start {
    padding: 32px;
  }

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

  .cta-box {
    padding: 40px 24px;
  }

  .cta-box h3 {
    font-size: 1.75rem;
  }

  .trusted-by {
    padding: 60px 0;
  }

  .trusted-by .container {
    padding: 0;
  }

  .carousel-container {
    max-width: 100%;
    padding: 0 16px;
  }

  .logo-card {
    width: 140px;
    height: 90px;
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 20px 40px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .screenshots-carousel {
    gap: 8px;
  }

  .screenshots-carousel .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-dot {
    width: 6px;
    height: 6px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 50px;
    height: 50px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 36px;
  }

  .lightbox-counter {
    bottom: 20px;
    font-size: 14px;
  }

  section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .feature-card,
  .download-card,
  .pricing-card,
  .example-card,
  .faq-item {
    padding: 24px;
  }
}

/* Example Card Background Icons - Subtle but noticeable */
.example-card {
  position: relative;
  overflow: hidden;
}

.example-card::before {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  opacity: 0.06;
  transition: var(--transition);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.example-card:hover::before {
  opacity: 0.12;
  transform: scale(1.1) rotate(10deg);
}

.example-beginner::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231976D2' stroke-width='1.5'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5z'/%3E%3Cpath d='M2 17l10 5 10-5M2 12l10 5 10-5'/%3E%3C/svg%3E");
}

.example-intermediate::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2342A5F5' stroke-width='1.5'%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3Cpath d='M12 21.7C17.3 17 20 13 20 10a8 8 0 1 0-16 0c0 3 2.7 6.9 8 11.7z'/%3E%3C/svg%3E");
}

.example-advanced::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230D47A1' stroke-width='1.5'%3E%3Crect x='2' y='2' width='20' height='20' rx='2'/%3E%3Cpath d='M7 2v20M17 2v20M2 12h20M2 7h5M2 17h5M17 17h5M17 7h5'/%3E%3C/svg%3E");
}

.example-pro::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6F00' stroke-width='1.5'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/%3E%3Cpolyline points='3.27 6.96 12 12.01 20.73 6.96'/%3E%3Cline x1='12' y1='22.08' x2='12' y2='12'/%3E%3C/svg%3E");
}

.example-iot::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300BCD4' stroke-width='1.5'%3E%3Cpath d='M5 12.55a11 11 0 0 1 14.08 0'/%3E%3Cpath d='M1.42 9a16 16 0 0 1 21.16 0'/%3E%3Cpath d='M8.53 16.11a6 6 0 0 1 6.95 0'/%3E%3Cline x1='12' y1='20' x2='12.01' y2='20'/%3E%3C/svg%3E");
}

.example-science::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234CAF50' stroke-width='1.5'%3E%3Cpath d='M22 12h-4l-3 9L9 3l-3 9H2'/%3E%3C/svg%3E");
}

/* Contact Section */
.contact {
  padding: 100px 24px;
  background: linear-gradient(135deg, #FAFAFA 0%, #FFFFFF 50%, #F5F5F5 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-top: 3rem;
}

.contact-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--elevation-2);
  transition: var(--transition);
}

.contact-method:hover {
  box-shadow: var(--elevation-4);
  transform: translateY(-2px);
}

.contact-method svg {
  flex-shrink: 0;
  color: var(--primary-color);
  margin-top: 2px;
}

.contact-method h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text-color);
}

.contact-method a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.contact-method a:hover {
  text-decoration: underline;
}

.contact-form-container {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--elevation-3);
}

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

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

.form-group label {
  font-weight: 600;
  color: var(--text-color);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-small);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

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

.form-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-style: italic;
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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