
:root {
  --background: #f8fafc;
  --foreground: #111827;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #dbeafe;
  --secondary: #f1f5f9;
  --secondary-foreground: #111827;
  --muted: #f1f5f9;
  --muted-foreground: #64748b;
  --accent: #3b82f6;
  --accent-foreground: #f8fafc;
  --destructive: #f43f5e;
  --destructive-foreground: #f8fafc;
  --border: #e2e8f0;
  --input: #e2e8f0;
  --ring: #2563eb;
  --radius: 0.75rem;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
}

p {
  margin-bottom: 1rem;
}

/* Buttons */
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary);
  color: white;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.3s;
  text-align: center;
}

.button-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: white;
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.3s;
}

.button-secondary:hover {
  background-color: var(--primary-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1rem 1.5rem;
  transition: all 0.3s;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  gap: 0.5rem;
  color: var(--primary);
}

.desktop-menu {
  display: none;
}

.nav-item {
  padding: 0.5rem 1rem;
  color: rgba(17, 24, 39, 0.8);
}

.nav-item:hover {
  color: var(--primary);
}

.mobile-menu-button {
  display: block;
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  animation: fadeIn 0.2s ease-out;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu .nav-item {
  display: block;
}

.mobile-menu .button-primary {
  display: block;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .mobile-menu-button {
    display: none;
  }
  
  .desktop-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
  background-color: #f8fafc;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
  filter: blur(40px);
  opacity: 0.4;
  animation: float 6s infinite ease-in-out;
}

.blob-1 {
  top: 20%;
  left: 10%;
  width: 16rem;
  height: 16rem;
  background-color: #dbeafe;
}

.blob-2 {
  top: 40%;
  right: 15%;
  width: 20rem;
  height: 20rem;
  background-color: #bfdbfe;
  animation-delay: 1s;
}

.blob-3 {
  bottom: 10%;
  left: 25%;
  width: 18rem;
  height: 18rem;
  background-color: #93c5fd;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 1s ease-out;
}

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

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 1.125rem;
  color: rgba(17, 24, 39, 0.8);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5rem;
  background: linear-gradient(to top, var(--background), transparent);
  display: flex;
  justify-content: center;
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--primary);
  animation: bounce 2s infinite;
}

.scroll-down span {
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.arrow-down {
  transform: rotate(90deg);
  width: 1rem;
  height: 1rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeIn 0.5s ease-out;
}

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

.section-header p {
  color: rgba(17, 24, 39, 0.7);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
}

/* Plans Section */
.plans {
  padding: 5rem 1.5rem;
  scroll-margin-top: 5rem;
}

.plan-card {
  max-width: 28rem;
  margin: 0 auto;
  border-radius: 1rem;
  overflow: hidden;
  background: linear-gradient(to bottom right, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
  transition: all 0.3s;
  animation: fadeIn 0.5s ease-out;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.35);
}

.plan-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
}

.plan-speed {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
}

.plan-speed svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.25rem;
}

.plan-icon {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  padding: 0.75rem;
}

.plan-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.plan-price {
  padding: 0 2rem;
  margin-bottom: 1.5rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
}

.period {
  font-size: 0.875rem;
  opacity: 0.8;
}

.plan-features {
  padding: 0 2rem;
  margin-bottom: 2rem;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.plan-features svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.plan-cta {
  display: block;
  text-align: center;
  background-color: white;
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  margin: 2rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 0.3s;
}

.plan-cta:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

/* Features Section */
.features {
  padding: 5rem 1.5rem;
  background-color: var(--primary-light);
  scroll-margin-top: 5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: white;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  animation: fadeIn 0.5s ease-out;
}

.feature-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.feature-card h3 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: rgba(17, 24, 39, 0.7);
}

/* Contact Section */
.contact {
  padding: 5rem 1.5rem;
  scroll-margin-top: 5rem;
}

.contact-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-wrapper {
    flex-direction: row;
  }
  
  .contact-info, .contact-form-container {
    width: 50%;
  }
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info p {
  color: rgba(17, 24, 39, 0.7);
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
}

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

.contact-method {
  display: flex;
  align-items: flex-start;
}

.method-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: white;
  flex-shrink: 0;
}

.method-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-method h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.contact-method p {
  color: rgba(17, 24, 39, 0.7);
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

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

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

.contact-form-container {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  animation: fadeIn 0.5s ease-out;
}

.contact-form-container h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

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

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(17, 24, 39, 0.8);
  margin-bottom: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.form-submit {
  background: linear-gradient(to right, var(--primary), var(--accent));
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.form-submit:hover {
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

/* Footer */
.footer {
  background-color: #0f172a;
  color: #f8fafc;
  padding: 4rem 1.5rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.wifi-icon {
  color: #93c5fd;
}

.footer-info p {
  color: rgba(248, 250, 252, 0.8);
  max-width: 20rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(248, 250, 252, 0.05);
  border-radius: 9999px;
  color: #93c5fd;
  transition: all 0.3s;
}

.social-link:hover {
  background-color: rgba(248, 250, 252, 0.1);
  color: white;
}

.social-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

.footer-column h3 {
  font-size: 1.125rem;
  color: white;
  margin-bottom: 1.25rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  color: rgba(248, 250, 252, 0.8);
  transition: color 0.3s;
}

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

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

.email-link svg {
  width: 1rem;
  height: 1rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(248, 250, 252, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 1rem;
}

.footer-legal a {
  color: rgba(248, 250, 252, 0.7);
  font-size: 0.875rem;
}

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

.footer-bottom p {
  color: rgba(248, 250, 252, 0.7);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
