@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* Color System & Tokens */
:root {
  --bg-dark: #0B0F19;           /* Premium deep dark background */
  --bg-card: rgba(22, 28, 45, 0.4); /* Glassmorphic card base */
  --bg-card-hover: rgba(22, 28, 45, 0.6);
  --white: #ffffff;
  --text-primary: #F3F4F6;      /* Off-white */
  --text-muted: #9CA3AF;        /* Soft gray */
  --accent-blue: #2563EB;       /* Electric blue primary */
  --accent-cyan: #06B6D4;       /* Neon cyan secondary */
  --accent-glow: rgba(37, 99, 235, 0.15);
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(6, 182, 212, 0.3);
  
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --max-width: 1200px;
  --transition-speed: 0.3s;
  --border-radius: 12px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Premium Scrollbars */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* Typography & Headers */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

/* Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5.5rem 0;
}

.text-center {
  text-align: center;
}

.gradient-text {
  background: linear-gradient(135deg, var(--white) 30%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-blue {
  background: linear-gradient(135deg, var(--white) 30%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-blue);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #1d4ed8;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 15, 25, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-speed);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-title);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
}

.logo-text {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  color: var(--white);
}

.logo-text span {
  color: var(--accent-cyan);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-speed);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
  transition: width var(--transition-speed);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

.nav-toggle-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  position: relative;
  transition: background var(--transition-speed);
}

.nav-toggle-icon::before, .nav-toggle-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--white);
  left: 0;
  transition: all var(--transition-speed);
}

.nav-toggle-icon::before { top: -6px; }
.nav-toggle-icon::after { top: 6px; }

.nav-toggle.open .nav-toggle-icon {
  background: transparent;
}
.nav-toggle.open .nav-toggle-icon::before {
  transform: rotate(45deg);
  top: 0;
}
.nav-toggle.open .nav-toggle-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 3rem;
  overflow: hidden;
}

/* Cosmic background glow effects */
.hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  top: -10%;
  right: -10%;
  z-index: -1;
  filter: blur(80px);
}

.hero::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1), transparent 60%);
  bottom: -20%;
  left: -20%;
  z-index: -1;
  filter: blur(100px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  color: var(--accent-cyan);
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  margin-bottom: 2rem;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-cyan);
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(2.0rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: clamp(1.0rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
}

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

/* Hero Tech Visualization (Next.js / Vercel Vibe) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.browser-mockup {
  width: 100%;
  max-width: 440px;
  background: #111827;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.mockup-header {
  background: #1f2937;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.mockup-dot--red { background-color: #ef4444; }
.mockup-dot--yellow { background-color: #f59e0b; }
.mockup-dot--green { background-color: #10b981; }

.mockup-address {
  margin-left: 1rem;
  font-family: var(--font-title);
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.2);
  padding: 0.2rem 1.5rem;
  border-radius: 4px;
  flex-grow: 0.5;
  text-align: center;
  letter-spacing: 0.02em;
}

.mockup-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mockup-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mockup-logo-block {
  width: 40px;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

.mockup-nav-links {
  display: flex;
  gap: 0.5rem;
}

.mockup-nav-links span {
  width: 20px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.mockup-hero-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  padding: 1rem 0;
}

.mockup-line {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.mockup-line--title {
  width: 60%;
  background: rgba(255, 255, 255, 0.25);
  height: 10px;
}

.mockup-line--subtitle {
  width: 80%;
  background: rgba(255, 255, 255, 0.15);
}

.mockup-button {
  width: 60px;
  height: 18px;
  background: var(--accent-blue);
  border-radius: 9px;
  margin-top: 0.5rem;
}

.mockup-cards-row {
  display: flex;
  gap: 0.75rem;
}

.mockup-small-card {
  flex: 1;
  height: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
}

/* Pricing Table Section */
.pricing {
  position: relative;
  background: radial-gradient(circle at 50% 0, rgba(22, 28, 45, 0.3), transparent 70%);
}

.section-subtitle {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}

.section-desc {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 5rem auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .pricing-grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .pricing-grid--4col {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .pricing-grid--4col .pricing-card {
    padding: 2.5rem 1.5rem;
  }
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-speed) ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.08);
  background: var(--bg-card-hover);
}

.pricing-card.popular {
  border-color: var(--accent-blue);
  background: rgba(37, 99, 235, 0.05);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.1);
}

.pricing-card.popular:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 12px 30px rgba(6, 182, 212, 0.15);
  background: rgba(37, 99, 235, 0.08);
}

.popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  color: var(--white);
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
}

.package-focus {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-cyan);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.package-name {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.package-price-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.25rem;
}

.standard-price {
  font-size: 1.1rem;
  text-decoration: line-through;
  opacity: 0.4;
  font-weight: 500;
  color: var(--text-primary);
}

.standard-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.package-price-box {
  display: flex;
  align-items: baseline;
  margin-bottom: 1.25rem;
}

.package-price {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.package-price-suffix {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-left: 0.5rem;
}

.discount-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.04);
  border: 1px solid rgba(6, 182, 212, 0.15);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.discount-badge--none {
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.05);
}

.package-features {
  list-style: none;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.package-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.package-feature-item svg {
  color: var(--accent-cyan);
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-card .btn {
  width: 100%;
}

/* Service Policy Card Styles */
.policy-section {
  margin-top: 6rem;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 4rem;
  backdrop-filter: blur(10px);
}

.policy-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.policy-title svg {
  color: var(--accent-cyan);
}

.policy-grid-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.policy-bullet-col {
  background: rgba(11, 15, 25, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 2.5rem;
  transition: border-color var(--transition-speed);
}

.policy-bullet-col:hover {
  border-color: var(--accent-cyan);
}

.policy-bullet-col:first-child {
  border-color: var(--accent-blue);
}

.policy-bullet-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.policy-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.policy-bullet-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 1.5rem;
}

.policy-bullet-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: bold;
}

.policy-bullet-col:first-child .policy-bullet-list li::before {
  color: var(--accent-blue);
}

/* Why Us Section */
.why-us {
  position: relative;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.feature-icon-box {
  width: 54px;
  height: 54px;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
}

.feature-item:hover .feature-icon-box {
  background: var(--accent-cyan);
  color: var(--bg-dark);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
  transition: all var(--transition-speed);
}

.feature-text-title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.feature-text-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Performance metrics visuals */
.metrics-visual {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.metrics-title {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  text-align: center;
}

.metrics-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.metric-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.metric-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
}

.metric-label {
  font-weight: 600;
}

.metric-value {
  color: var(--accent-cyan);
  font-weight: 700;
}

.metric-bar-bg {
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.metric-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.5s ease-out;
}

.metric-bar-fill--akora {
  width: 98%;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.metric-bar-fill--wp {
  width: 38%;
  background: #E11D48; /* Red */
}

/* Contact Section */
.contact {
  position: relative;
  background: radial-gradient(circle at 50% 100%, rgba(6, 182, 212, 0.1), transparent 60%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 5rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 3.5rem;
  backdrop-filter: blur(10px);
}

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

.form-label {
  display: block;
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-speed);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
}

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

.contact-card .btn {
  width: 100%;
  border: none;
}

/* Footer bottom */
footer {
  background-color: #05070D;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 3rem 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-brand-column {
  max-width: 360px;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 5rem;
  flex-wrap: wrap;
}

.footer-link-group-title {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link-item a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color var(--transition-speed);
}

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

.footer-divider {
  border: 0;
  height: 1px;
  background: var(--border-color);
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-credits a {
  color: var(--text-primary);
  font-weight: 500;
  text-decoration: underline;
  transition: color var(--transition-speed);
}

.footer-credits a:hover {
  color: var(--accent-cyan);
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 20px rgba(37, 99, 235, 0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 35px rgba(37, 99, 235, 0.6); }
  100% { transform: scale(1); box-shadow: 0 0 20px rgba(37, 99, 235, 0.4); }
}

@keyframes spin-slow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Reveal Scroll Class */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .section-padding {
    padding: 4.5rem 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .policy-grid-bullets {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-dark);
    flex-direction: column;
    align-items: center;
    padding: 3rem 0;
    transition: left var(--transition-speed);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  }
  
  .nav-menu.open {
    left: 0;
  }

  .pricing-grid--4col {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 1.5rem !important;
    padding: 1.5rem 1.25rem 2.5rem 1.25rem !important;
    margin: 0 -1.25rem !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .pricing-grid--4col::-webkit-scrollbar {
    display: none !important;
  }

  .pricing-grid--4col .pricing-card {
    flex: 0 0 85% !important;
    scroll-snap-align: center !important;
    margin-bottom: 0 !important;
    transform: scale(0.96);
    opacity: 0.7;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  .pricing-grid--4col .pricing-card.reveal.active {
    opacity: 0.85;
  }

  .policy-grid-bullets {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 1.5rem !important;
    padding: 1rem 1.25rem 2rem 1.25rem !important;
    margin: 0 -1.25rem !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .policy-grid-bullets::-webkit-scrollbar {
    display: none !important;
  }

  .policy-grid-bullets .policy-bullet-col {
    flex: 0 0 85% !important;
    scroll-snap-align: center !important;
    transform: scale(0.96);
    opacity: 0.8;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 3rem;
  }
  
  .footer-links {
    gap: 3rem;
    width: 100%;
    justify-content: space-between;
  }
}

@supports (animation-timeline: view()) {
  @media (max-width: 768px) {
    .pricing-grid--4col .pricing-card {
      view-timeline-name: --card-scroll;
      view-timeline-axis: inline;
      animation-name: active-card-fade;
      animation-fill-mode: both;
      animation-timeline: --card-scroll;
      animation-range: entry 0% cover 50%, exit 50% cover 100%;
    }

    .policy-grid-bullets .policy-bullet-col {
      view-timeline-name: --policy-scroll;
      view-timeline-axis: inline;
      animation-name: active-policy-fade;
      animation-fill-mode: both;
      animation-timeline: --policy-scroll;
      animation-range: entry 0% cover 50%, exit 50% cover 100%;
    }
  }
}

@keyframes active-policy-fade {
  0% {
    opacity: 0.7;
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1);
    border-color: var(--accent-cyan);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.1);
  }
  100% {
    opacity: 0.7;
    transform: scale(0.95);
  }
}

@keyframes active-card-fade {
  0% {
    opacity: 0.6;
    transform: scale(0.94);
  }
  50% {
    opacity: 1;
    transform: scale(1);
    border-color: var(--accent-cyan);
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.15);
  }
  100% {
    opacity: 0.6;
    transform: scale(0.94);
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .policy-section {
    padding: 2.5rem 1.5rem;
  }
  
  .contact-card {
    padding: 2rem 1.5rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 2.5rem;
  }
}
