/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap");

/* CSS Variables */
:root {
  --primary: #685AFF;
  --primary-dark: #5046e5;
  --primary-light: #8B7FFF;
  --secondary: #0F172A;
  --dark: #1E293B;
  --text: #334155;
  --text-light: #64748B;
  --text-lighter: #94A3B8;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --light-bg: #F1F5F9;
  --border: #E2E8F0;
  --success: #10B981;
  --warning: #F59E0B;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul { list-style: none; }

img {
  max-width: 100%;
  height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.3;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

/* ========== NAVBAR ========== */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  padding: 0.75rem 0;
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--secondary) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand i {
  color: var(--primary);
  font-size: 1.5rem;
}

.nav-link {
  color: var(--text) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

.nav-link:hover {
  color: var(--primary) !important;
}

/* Buttons */
.btn {
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px 0 rgba(104, 90, 255, 0.39);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px 0 rgba(104, 90, 255, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(104, 90, 255, 0.05);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ========== HERO SECTION ========== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--secondary);
  overflow: hidden;
  padding-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: var(--primary);
  opacity: 0.08;
  border-radius: 50%;
  filter: blur(100px);
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: var(--primary-light);
  opacity: 0.05;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(104, 90, 255, 0.15);
  color: var(--primary-light);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(104, 90, 255, 0.2);
}

.hero-badge i {
  font-size: 0.75rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

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

.hero-text {
  font-size: 1.125rem;
  color: var(--text-lighter);
  margin-bottom: 2rem;
  max-width: 500px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  display: block;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--text-lighter);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.hero-card-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
}

.hero-card-logo i {
  color: var(--primary-light);
}

.hero-card-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--success);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-card-status::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-balance {
  text-align: center;
  margin-bottom: 2rem;
}

.hero-balance-label {
  color: var(--text-lighter);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.hero-balance-amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
}

.hero-quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.quick-action {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.quick-action:hover {
  background: rgba(104, 90, 255, 0.2);
  border-color: rgba(104, 90, 255, 0.3);
  transform: translateY(-4px);
}

.quick-action i {
  font-size: 1.5rem;
  color: var(--primary-light);
  margin-bottom: 0.5rem;
  display: block;
}

.quick-action span {
  font-size: 0.75rem;
  color: var(--text-lighter);
  font-weight: 500;
}

/* Floating elements */
.floating-element {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
}

.floating-element.top-right {
  top: -20px;
  right: -30px;
  animation: floatUp 4s ease-in-out infinite;
}

.floating-element.bottom-left {
  bottom: 40px;
  left: -40px;
  animation: floatUp 5s ease-in-out infinite reverse;
}

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

.floating-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.floating-icon.success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.floating-icon.primary {
  background: rgba(104, 90, 255, 0.1);
  color: var(--primary);
}

.floating-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--secondary);
}

.floating-text span {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ========== FEATURES SECTION ========== */
.features-section {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.feature-item:hover {
  background: var(--off-white);
  border-color: var(--border);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.feature-item:nth-child(1) .feature-icon {
  background: rgba(104, 90, 255, 0.1);
  color: var(--primary);
}

.feature-item:nth-child(2) .feature-icon {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.feature-item:nth-child(3) .feature-icon {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
}

.feature-item:nth-child(4) .feature-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
}

.feature-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== SERVICES SECTION ========== */
.services-section {
  padding: 6rem 0;
  background: var(--off-white);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  background: rgba(104, 90, 255, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  border: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary);
  transition: height 0.3s ease;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.service-card:nth-child(1) .service-icon {
  background: rgba(104, 90, 255, 0.1);
  color: var(--primary);
}

.service-card:nth-child(2) .service-icon {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success);
}

.service-card:nth-child(3) .service-icon {
  background: rgba(245, 158, 11, 0.1);
  color: var(--warning);
}

.service-card:nth-child(4) .service-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}

.service-card:hover .service-icon {
  transform: rotate(-10deg) scale(1.1);
}

.service-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(4px);
}

/* ========== PRICING SECTION ========== */
.pricing-section {
  padding: 6rem 0;
  background: var(--white);
}

.network-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.network-tab {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text);
}

.network-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.network-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

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

.pricing-card.featured {
  border-color: var(--primary);
  background: var(--secondary);
}

.pricing-card.featured * {
  color: var(--white);
}

.pricing-card.featured .pricing-features li {
  color: var(--text-lighter);
}

.pricing-card.featured .btn-primary {
  background: var(--white);
  color: var(--primary);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.plan-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.plan-validity {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.pricing-features {
  margin-bottom: 1.5rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
}

.pricing-features li i {
  color: var(--success);
  font-size: 0.8rem;
}

/* ========== APP DOWNLOAD SECTION ========== */
.app-section {
  padding: 6rem 0;
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

.app-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 150%;
  background: var(--primary);
  opacity: 0.08;
  border-radius: 50%;
  filter: blur(100px);
}

.app-content {
  position: relative;
  z-index: 2;
}

.app-content h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}

.app-content p {
  font-size: 1.1rem;
  color: var(--text-lighter);
  margin-bottom: 2rem;
  max-width: 500px;
}

.app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  color: var(--secondary);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.app-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  color: var(--secondary);
}

.app-btn i {
  font-size: 2rem;
}

.app-btn-text small {
  display: block;
  font-size: 0.7rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.app-btn-text span {
  font-weight: 700;
  font-size: 1.1rem;
}

.app-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2.5rem;
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-lighter);
  font-size: 0.9rem;
}

.app-feature i {
  color: var(--success);
}

.app-visual {
  position: relative;
  z-index: 2;
}

.app-mockup {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* ========== REVIEWS SECTION ========== */
.reviews-section {
  padding: 6rem 0;
  background: var(--off-white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--primary);
  opacity: 0.1;
  line-height: 1;
}

.review-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.review-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.review-rating i {
  color: #FBBF24;
  font-size: 0.9rem;
}

.review-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer-info h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.125rem;
}

.reviewer-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ========== FOOTER ========== */
footer {
  background: var(--secondary);
  padding: 5rem 0 2rem;
  color: var(--text-lighter);
}

.footer-brand h4 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand h4 i {
  color: var(--primary-light);
}

.footer-desc {
  color: var(--text-lighter);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-lighter);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}

footer ul li {
  margin-bottom: 0.75rem;
}

footer ul li a {
  color: var(--text-lighter);
  font-size: 0.95rem;
}

footer ul li a:hover {
  color: var(--primary-light);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-contact i {
  color: var(--primary-light);
  width: 16px;
}

.footer-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: var(--text-lighter);
  font-size: 0.9rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1199px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-top: 1rem;
    border: 1px solid var(--border);
  }
  
  .hero-section {
    text-align: center;
    padding: 120px 0 60px;
  }
  
  .hero-text {
    margin: 0 auto 2rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-visual {
    margin-top: 4rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .app-content {
    text-align: center;
  }
  
  .app-content p {
    margin: 0 auto 2rem;
  }
  
  .app-buttons {
    justify-content: center;
  }
  
  .app-features {
    justify-content: center;
  }
  
  .app-visual {
    margin-top: 3rem;
  }
}

@media (max-width: 767px) {
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  
  .hero-quick-actions {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .floating-element {
    display: none;
  }
  
  .network-tabs {
    gap: 0.5rem;
  }
  
  .network-tab {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 575px) {
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .app-buttons {
    flex-direction: column;
  }
  
  .app-btn {
    justify-content: center;
  }
}
