:root {
  --bg: #030712;
  --bg-soft: #080c1a;
  --surface: rgba(15, 23, 42, 0.65);
  --surface-hover: rgba(30, 41, 59, 0.8);
  --text: #f8fafc;
  --muted: #94a3b8;
  --border: rgba(148, 163, 184, 0.15);
  --border-bright: rgba(148, 163, 184, 0.3);
  --primary: #38bdf8;
  --primary-glow: rgba(56, 189, 248, 0.25);
  --secondary: #818cf8;
  --accent: #c084fc;
  --success: #22c55e;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text);
  background-color: var(--bg);
  background-image: 
    radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 100% 0%, rgba(129, 140, 248, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(192, 132, 252, 0.08) 0%, transparent 50%);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  filter: brightness(1.2);
}

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

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 12px;
  z-index: 100;
  margin-top: 12px;
}

.site-header .container {
  background: rgba(8, 12, 26, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 999px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.logo {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--text);
  background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.main-nav a:hover {
  color: var(--text);
}

.nav-highlight {
  background: var(--primary);
  color: #000 !important;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.nav-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--primary-glow);
  filter: brightness(1.1);
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.2);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease-out;
}

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 auto 24px;
  max-width: 900px;
  background: linear-gradient(to bottom right, #fff 30%, #94a3b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: #fff;
  color: #030712;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--primary-glow);
  background: var(--primary);
  color: #fff;
}

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

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

/* Projects Grid */
.projects-section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 48px;
  text-align: left;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0 0 12px;
}

.section-header p {
  color: var(--muted);
  font-size: 1.1rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent, rgba(56,189,248,0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56, 189, 248, 0.4);
  background: var(--surface-hover);
  box-shadow: var(--shadow-lg);
}

.project-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
  margin: 0;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.project-status {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-disponivel { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.status-indisponivel { background: rgba(239, 68, 68, 0.2); color: #f87171; }

.project-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.project-card h3 a {
  color: #fff;
}

.project-card-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.project-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tag {
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.tag-tech {
  color: var(--primary);
  border-color: rgba(56, 189, 248, 0.2);
}

.project-card-price {
  margin-top: auto;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: radial-gradient(circle at center, rgba(56, 189, 248, 0.05), transparent);
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 32px;
}

/* Footer */
.site-footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  background: rgba(3, 7, 18, 0.5);
}

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

.footer-info h3 {
  font-size: 1.25rem;
  margin: 0 0 12px;
}

.footer-info p {
  color: var(--muted);
  max-width: 400px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-links a {
  color: var(--muted);
  font-weight: 500;
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .site-header .container {
    border-radius: 20px;
  }
  
  .main-nav {
    display: none; /* Add JS toggle logic */
  }
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .mobile-menu-btn {
    display: block;
  }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 20px;
    margin-top: 10px;
    box-shadow: var(--shadow-lg);
  }
  
  .main-nav.is-open {
    display: block;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 16px;
  }
}

/* Project Details Page */
.project-detail {
  padding-top: 60px;
  padding-bottom: 100px;
}

.project-header {
  margin-bottom: 48px;
}

.project-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.project-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.1;
}

.project-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 800px;
}

.project-featured-image {
  margin: 0 0 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.project-featured-image img {
  width: 100%;
}

.project-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 48px;
  font-size: 1.1rem;
  line-height: 1.8;
}

.project-content h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: #fff;
}

.project-content p {
  margin-bottom: 20px;
  color: var(--muted);
}

.project-content ul, .project-content ol {
  margin-bottom: 24px;
  padding-left: 20px;
  color: var(--muted);
}

.project-pricing h2 {
  font-size: 2rem;
  margin-bottom: 32px;
  text-align: center;
}

.pricing-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--primary);
  background: var(--surface-hover);
  transform: translateY(-4px);
}

.pricing-card h3 {
  font-size: 1.25rem;
  margin: 0 0 16px;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}

.features li {
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 800;
}

.project-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 60px;
}

.footer-card {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(129, 140, 248, 0.1));
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
}

.footer-card p {
  font-size: 1.1rem;
  margin: 0;
  color: var(--text);
}

@media (max-width: 640px) {
  .project-content {
    padding: 24px;
  }
  
  .project-title {
    font-size: 2rem;
  }
  
  .project-links {
    flex-direction: column;
  }
}

/* General Page Styles */
.main-content {
  padding-bottom: 80px;
}

.page-section {
  padding-top: 60px;
}

.page-section h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 32px;
}

.page-section h2 {
  font-size: 1.8rem;
  margin-top: 48px;
  margin-bottom: 24px;
}

.page-section p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 1.1rem;
}

.page-section ul, .page-section ol {
  margin-bottom: 32px;
  padding-left: 24px;
  color: var(--muted);
}

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

/* About Page (Quem Sou) */
.about-container {
padding-bottom: 60px;
animation: fadeInUp 0.8s ease-out;
}

.about-header {
display: flex;
align-items: center;
gap: 48px;
margin-bottom: 64px;
background: var(--surface);
padding: 48px;
border-radius: var(--radius-lg);
border: 1px solid var(--border);
position: relative;
overflow: hidden;
}

.about-header::after {
content: '';
position: absolute;
top: 0;
right: 0;
width: 300px;
height: 300px;
background: radial-gradient(circle, rgba(56, 189, 248, 0.1), transparent 70%);
pointer-events: none;
}

.photo-placeholder {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transform: rotate(-3deg);
}

.profile-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  transform: rotate(-3deg);
  border: 4px solid var(--border);
  transition: transform 0.3s ease;
}

.profile-photo:hover {
  transform: rotate(0deg) scale(1.05);
}

.about-intro h1 {
margin: 0 0 12px;
font-size: clamp(2.5rem, 5vw, 3.5rem);
font-weight: 800;
background: linear-gradient(to right, #fff, var(--muted));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.lead-text {
font-size: 1.25rem;
color: var(--primary);
font-weight: 600;
margin-bottom: 24px;
}

.about-badges {
display: flex;
flex-wrap: wrap;
gap: 12px;
}

.about-grid {
display: grid;
grid-template-columns: 1.8fr 1fr;
gap: 60px;
}

.about-main h2 {
font-size: 2rem;
margin-bottom: 24px;
border-left: 4px solid var(--primary);
padding-left: 16px;
}

.specialties-list {
list-style: none !important;
padding: 0 !important;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
margin: 32px 0;
}

.specialties-list li {
background: rgba(255,255,255,0.03);
padding: 20px;
border-radius: var(--radius-md);
border: 1px solid var(--border);
transition: all 0.3s ease;
}

.specialties-list li:hover {
border-color: var(--primary);
background: rgba(255,255,255,0.05);
}

.specialties-list li strong {
display: block;
color: #fff;
margin-bottom: 4px;
}

.sidebar-card {
background: var(--surface);
border: 1px solid var(--border);
padding: 32px;
border-radius: var(--radius-lg);
margin-bottom: 32px;
position: sticky;
top: 100px;
}

.contact-links {
list-style: none !important;
padding: 0 !important;
}

.contact-links li {
margin-bottom: 16px;
font-size: 1.1rem;
}

/* Timeline */
.timeline {
  position: relative;
  margin: 40px 0 60px;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-dot {
  position: absolute;
  left: -35px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  border: 3px solid var(--bg);
}

.timeline-date {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.timeline-content h3 {
  font-size: 1.25rem;
  margin: 0 0 8px;
  color: #fff;
}

.timeline-content p {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Achievements */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 32px 0 64px;
}

.achievement-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: all 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.achievement-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.achievement-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.4;
}

@media (max-width: 900px) {
.about-header {
  flex-direction: column;
  text-align: center;
  padding: 40px 24px;
}
.about-grid {
  grid-template-columns: 1fr;
}
.specialties-list {
  grid-template-columns: 1fr;
}
}

/* Refatoração Premium - Novas Classes */

.text-gradient {
  background: linear-gradient(to right, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  min-height: 80vh;
}

.hero-content {
  flex: 1.2;
}

.hero-visual {
  flex: 0.8;
  display: flex;
  justify-content: center;
}

.badge-new {
  display: inline-block;
  padding: 8px 16px;
  background: var(--primary-glow);
  border: 1px solid var(--primary);
  border-radius: 100px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
}

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

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.floating-code {
  background: var(--surface);
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-bright);
  box-shadow: var(--shadow-lg);
  font-family: 'Fira Code', monospace;
  position: relative;
  animation: float 6s ease-in-out infinite;
}

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

.home-section {
  padding: 100px 0;
}

.section-dark {
  background: rgba(15, 23, 42, 0.4);
}

.section-tag {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  font-size: 0.75rem;
  margin-bottom: 12px;
  display: block;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 60px;
}

.section-header-centered h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.expertise-card {
  background: var(--surface);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.1);
}

.expertise-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
  display: block;
}

.project-card-new {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.project-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(3, 7, 18, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card-new:hover .project-overlay {
  opacity: 1;
}

.project-card-new:hover img {
  transform: scale(1.1);
}

.project-info {
  padding: 24px;
}

.project-tags {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.tag-small {
  font-size: 0.7rem;
  background: rgba(255,255,255,0.05);
  padding: 4px 10px;
  border-radius: 4px;
  color: var(--muted);
}

.project-link-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 2;
}

.services-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.service-modern-card {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.service-icon-bg {
  width: 64px;
  height: 64px;
  background: var(--primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border-radius: 16px;
  margin-bottom: 24px;
}

.service-plans {
  margin: 24px 0;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

.plan-mini {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

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

.mega-cta {
  background: linear-gradient(to right, var(--bg), var(--bg-soft));
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 24px;
}

.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.1rem;
}

@media (max-width: 992px) {
  .hero-flex {
    flex-direction: column;
    text-align: center;
    padding-top: 60px;
  }
  .hero-stats {
    justify-content: center;
  }
  .cta-btns {
    flex-direction: column;
  }
}


