/* index.css - Smooth Broadband Landing Page Style */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --bg-dark: #050b1a;
  --bg-card: rgba(16, 28, 59, 0.65);
  --bg-card-hover: rgba(22, 40, 84, 0.85);

  --primary: #0077b6;
  --primary-glow: rgba(0, 119, 182, 0.4);
  --accent-cyan: #00b4d8;
  --accent-cyan-glow: rgba(0, 180, 216, 0.3);
  --accent-blue: #90e0ef;

  --accent-orange: #ff7849;
  --accent-orange-glow: rgba(255, 120, 73, 0.4);
  --accent-orange-dark: #e8590c;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #0f172a;

  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(0, 180, 216, 0.4);

  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, #1b49b4 0%, #102663 45%, #0b1532 90%, #050b1a 100%);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background Gradients & Grid Pattern */
body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(0, 180, 216, 0.25) 0%, transparent 45%),
    radial-gradient(circle at 80% 50%, rgba(0, 119, 182, 0.2) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(255, 120, 73, 0.1) 0%, transparent 40%);
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.015) 1px, transparent 0);
  background-size: 32px 32px;
  z-index: -1;
  pointer-events: none;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* Container */
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 4%;
}

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

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

.gradient-blue-cyan {
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 50%, #90e0ef 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
  border: none;
  gap: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
  color: white;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary::after,
.btn-orange::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.15) 50%, transparent 55%);
  transform: rotate(45deg);
  transition: none;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}

.btn-primary:hover::after,
.btn-orange:hover::after {
  animation: shine 0.8s ease-in-out;
  opacity: 1;
}

@keyframes shine {
  0% {
    left: -60%;
    top: -60%;
  }
  100% {
    left: 80%;
    top: 80%;
  }
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.5);
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--primary) 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(5px);
}

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

.btn-orange {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
  color: white;
  box-shadow: 0 4px 15px var(--accent-orange-glow);
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 120, 73, 0.6);
}

/* Header & Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition-normal);
}

header.scrolled {
  background: rgba(11, 21, 48, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

header.scrolled .nav-container {
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  height: 42px;
  width: auto;
  transition: var(--transition-normal);
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-cyan);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-cyan);
  transition: var(--transition-fast);
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--text-main);
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

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

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
}

.hero-text {
  z-index: 2;
}

.hero-badge-container {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-badge {
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.2) 0%, rgba(0, 180, 216, 0.2) 100%);
  border: 1px solid rgba(0, 180, 216, 0.4);
  color: var(--accent-cyan);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-title);
  box-shadow: 0 0 15px rgba(0, 180, 216, 0.1);
}

.badge-instalasi {
  background: linear-gradient(135deg, rgba(255, 120, 73, 0.2) 0%, rgba(232, 89, 12, 0.2) 100%);
  border: 1px solid rgba(255, 120, 73, 0.5);
  color: var(--accent-orange);
  animation: pulse-orange 2s infinite alternate;
}

@keyframes pulse-orange {
  0% {
    box-shadow: 0 0 5px rgba(255, 120, 73, 0.2);
  }

  100% {
    box-shadow: 0 0 15px rgba(255, 120, 73, 0.5);
  }
}

.hero h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 span.highlight {
  display: block;
  font-size: 72px;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #00b4d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  margin-top: 48px;
  gap: 40px;
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
}

.stat-item h3 {
  font-size: 32px;
  color: var(--accent-cyan);
}

.stat-item p {
  font-size: 14px;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* Hero Illustration */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hero-circle-bg {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}

.hero-cards-container {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 400px;
}

.floating-card {
  position: absolute;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: var(--transition-normal);
  z-index: 2;
}

.floating-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-cyan);
}

.card-main {
  width: 100%;
  top: 40px;
  left: 0;
}

.card-sub1 {
  width: 80%;
  bottom: 0px;
  right: -20px;
  background: rgba(10, 25, 47, 0.85);
  border-color: rgba(255, 120, 73, 0.2);
  z-index: 3;
  animation: float 4s ease-in-out infinite alternate;
}

.card-sub2 {
  width: 60%;
  top: -20px;
  right: -10px;
  background: rgba(10, 25, 47, 0.85);
  z-index: 1;
  animation: float 5s ease-in-out infinite alternate-reverse;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-15px);
  }
}

.speed-meter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.meter-track {
  flex-grow: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin: 0 16px;
  overflow: hidden;
  position: relative;
}

.meter-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 80%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent-cyan) 100%);
  border-radius: 10px;
}

/* Sections General */
section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 64px auto;
}

.section-header .subtitle {
  color: var(--accent-cyan);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 40px 30px;
  border-radius: 24px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent-cyan) 100%);
  opacity: 0;
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: 0 20px 40px rgba(0, 180, 216, 0.08);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(0, 119, 182, 0.15) 0%, rgba(0, 180, 216, 0.05) 100%);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--accent-cyan);
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
  color: white;
  border-color: transparent;
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 180, 216, 0.3);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
  flex-grow: 1;
}

/* Pricing/Packages Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.price-card {
  background: #ffffff;
  border: 3px solid #00b4d8;
  border-radius: 28px;
  transition: var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: #0f172a; /* dark text inside card */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 180, 216, 0.35);
  border-color: #90e0ef;
}

.price-card.popular {
  border-color: #f37021;
  box-shadow: 0 15px 35px rgba(243, 112, 33, 0.25);
  background: #ffffff;
}

.price-card.popular::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 100% 0%, rgba(243, 112, 33, 0.08) 0%, transparent 40%);
  pointer-events: none;
}

.price-card.popular::before {
  content: 'BEST CHOICE';
  position: absolute;
  top: 24px;
  right: -32px;
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
  color: white;
  font-family: var(--font-title);
  font-size: 10px;
  font-weight: 700;
  padding: 6px 36px;
  transform: rotate(45deg);
  letter-spacing: 0.1em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.price-card.popular:hover {
  border-color: #ff8c42;
  box-shadow: 0 20px 45px rgba(243, 112, 33, 0.4);
}

.price-header {
  background: #ffffff;
  padding: 32px 32px 24px 32px;
  text-align: center;
  position: relative;
}

.speed-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}

.speed-value .number {
  font-family: var(--font-title);
  font-size: 58px;
  font-weight: 800;
  line-height: 1;
  color: #0077b6;
  text-shadow: none;
}

.speed-value .unit {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: #00b4d8;
}

.price-header h4 {
  font-size: 16px;
  color: #475569;
  font-weight: 600;
  margin-bottom: 0;
}

.price-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 0 32px;
}

.price-features {
  list-style: none;
  padding: 24px 32px;
  margin-bottom: 0;
  flex-grow: 1;
  background: #ffffff;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #334155;
}

.price-features li svg {
  color: #00b4d8;
  flex-shrink: 0;
}

.price-features li.highlighted-feat {
  color: #0f172a;
  font-weight: 600;
}

/* Pricing Footer Block */
.price-footer-block {
  background: linear-gradient(180deg, #0e1c3a 0%, #060c1c 100%);
  padding: 28px 32px;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.price-card.popular .price-footer-block {
  background: linear-gradient(180deg, #1f1105 0%, #0d0601 100%);
  border-top: 1px solid rgba(243, 112, 33, 0.1);
}

.price-footer-block .price-old {
  font-size: 13px;
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: -10px;
}

.price-footer-block .price-tag {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}

.price-footer-block .price-tag .rp {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.price-footer-block .price-tag .amount {
  font-size: 32px;
  font-weight: 800;
  color: white;
  font-family: var(--font-title);
}

.price-footer-block .price-tag .period {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 4px;
}

.price-footer-block .btn {
  width: 100%;
}

/* Calculator Section */
.calculator-box {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 32px;
  padding: 48px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.calculator-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

label {
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
}

.range-val {
  background: rgba(0, 180, 216, 0.15);
  color: var(--accent-cyan);
  font-family: var(--font-title);
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 180, 216, 0.25);
}

/* Styled Range Input */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  outline: none;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--primary) 100%);
  cursor: pointer;
  box-shadow: 0 0 15px rgba(0, 180, 216, 0.6);
  border: 2.5px solid #ffffff;
  transition: var(--transition-fast);
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 25px rgba(0, 180, 216, 0.9);
}

/* Select Styling */
.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '▼';
  font-size: 10px;
  color: var(--text-muted);
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

select {
  width: 100%;
  background: rgba(7, 11, 25, 0.5);
  border: 1px solid var(--border-color);
  padding: 14px 20px;
  border-radius: 14px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: var(--transition-normal);
}

select:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 180, 216, 0.15);
}

/* Calc Result */
.calc-result {
  background: rgba(7, 11, 25, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 350px;
  justify-content: center;
}

.calc-result-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255, 120, 73, 0.15);
  color: var(--accent-orange);
  border: 1px solid rgba(255, 120, 73, 0.3);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-family: var(--font-title);
}

.calc-result-speed {
  font-family: var(--font-title);
  font-size: 64px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}

.calc-result-speed span {
  font-size: 24px;
  color: var(--accent-cyan);
}

.calc-result-package {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-main);
}

.calc-result-desc {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 320px;
  margin-bottom: 28px;
  line-height: 1.5;
}

/* Contact / Inquiry Section */
.contact-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: stretch;
}

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

.contact-info-header h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.contact-info-header p {
  color: var(--text-muted);
  font-size: 16px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 40px 0;
}

.contact-method-item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact-method-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.2);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-method-text h4 {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-method-text p {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
}

.contact-socials {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition-normal);
  text-decoration: none;
}

.social-link:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-2px);
  background: rgba(0, 180, 216, 0.05);
}

.contact-form-container {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  background: rgba(7, 11, 25, 0.4);
  border: 1px solid var(--border-color);
  padding: 14px 18px;
  border-radius: 12px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: var(--transition-normal);
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 180, 216, 0.15);
}

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

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 99;
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
  animation: pulse-wa 2s infinite alternate;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #128c7e;
  box-shadow: 0 6px 25px rgba(18, 140, 126, 0.5);
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 5px rgba(37, 211, 102, 0.3);
  }

  100% {
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.7);
  }
}

/* Footer */
footer {
  background-color: #050a18;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 38px;
}

.footer-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-fast);
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .hero-badge-container {
    justify-content: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .hero-visual {
    margin-top: 20px;
  }

  .calculator-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 42px;
  }

  .hero h1 span.highlight {
    font-size: 52px;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--bg-dark);
    flex-direction: column;
    padding: 40px;
    transition: var(--transition-normal);
    z-index: 99;
  }

  header.scrolled .nav-links {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .nav-links.active {
    left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links .btn {
    width: 100%;
    margin-top: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Tab system styling */
.pricing-tabs {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 6px;
  border-radius: 50px;
  gap: 8px;
  margin-top: 24px;
}

.tab-btn {
  background: transparent;
  color: var(--text-muted);
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition-normal);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
  color: white;
  box-shadow: 0 4px 12px var(--accent-cyan-glow);
}

.tab-btn:hover:not(.active) {
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.pricing-grid {
  display: none;
}

.pricing-grid.active-grid {
  display: grid;
}