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

:root {
  --bg: #070a10;
  --bg-deep: #0b0f19;
  --bg-surface: #0e1322;
  --logo-bg: transparent;
  --surface: rgba(15, 23, 42, 0.45);
  --surface-strong: rgba(15, 23, 42, 0.75);
  --surface-glass: rgba(255, 255, 255, 0.03);
  --border-glass: rgba(255, 255, 255, 0.07);
  --border-glass-hover: rgba(255, 255, 255, 0.15);
  
  --text: #f8fafc;
  --muted: #94a3b8;
  --line: rgba(255, 255, 255, 0.06);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  
  --orange: #ff6b00; /* Neon Orange */
  --orange-glow: rgba(255, 107, 0, 0.35);
  --orange-soft: rgba(255, 107, 0, 0.1);
  
  --indigo: #6366f1; /* Electric Indigo */
  --indigo-glow: rgba(99, 102, 241, 0.35);
  --indigo-soft: rgba(99, 102, 241, 0.1);

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --content-width: 1440px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(99, 102, 241, 0.15), transparent 35%),
    radial-gradient(circle at 85% 75%, rgba(255, 107, 0, 0.1), transparent 40%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 50%, #030508 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Cyber Tech Grid Overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 90%);
  opacity: 0.9;
  z-index: 1;
}

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

button,
summary {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.page-shell {
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 20px clamp(20px, 3vw, 48px) 80px;
  position: relative;
  z-index: 2;
}

/* Header & Navigation */
.topbar {
  position: sticky;
  top: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 24px;
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  background: rgba(11, 15, 25, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  flex: 0 0 auto;
  transition: transform 0.3s ease;
  margin-left: 0;
}

.brand:hover {
  transform: scale(1.02);
}

.brand-svg {
  width: 200px;
  height: 44px;
  display: block;
  flex-shrink: 0;
  transition: filter 0.3s ease;
}

.brand:hover .brand-svg {
  filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.4));
}

.topbar-art {
  position: relative;
  flex: 1 1 auto;
  height: 40px;
  margin: 0 20px;
  overflow: hidden;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Custom SVG network stream styling */
.topbar-art svg {
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu a {
  padding: 10px 18px;
  border-radius: 30px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.menu-cta {
  background: linear-gradient(135deg, var(--indigo), #4f46e5) !important;
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3) !important;
}

.menu-cta:hover,
.menu-cta:focus-visible {
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45) !important;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

main {
  padding: 40px 0;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse-orange {
  0% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(255, 107, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

.hero-copy,
.hero-panel,
.section-heading,
.service-card,
.insight-card,
.process-item,
.faq-list,
.cta-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Eyebrow / Tag */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: 100px;
  background: var(--indigo-soft);
  border: 1px solid rgba(99, 102, 241, 0.25);
  color: #a5b4fc;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.05);
}

/* Carousel Section */
.carousel-section {
  padding: 0 0 40px;
}

.carousel-shell {
  position: relative;
  border-radius: var(--radius-xl);
  background: rgba(14, 19, 34, 0.6);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow);
  padding: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.carousel-actions-floating {
  position: absolute;
  top: 36px;
  right: 36px;
  z-index: 10;
  display: flex;
  gap: 12px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11, 15, 25, 0.8);
  border: 1px solid var(--border-glass);
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  background: var(--indigo);
  border-color: var(--indigo);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(99, 102, 241, 0.4);
}

.carousel-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.carousel-slide {
  position: relative;
  min-width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.carousel-slide.is-active img {
  transform: scale(1.04);
}

.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg, 
    rgba(7, 10, 16, 0.85) 0%, 
    rgba(7, 10, 16, 0.6) 50%, 
    rgba(7, 10, 16, 0.15) 100%
  );
  z-index: 1;
}

.carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 48px;
  max-width: 700px;
  text-align: left;
}

.carousel-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 30px;
  background: var(--indigo-soft);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #c7d2fe;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.carousel-overlay h3 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 16px;
}

.carousel-overlay p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.carousel-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.carousel-pills span {
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 0 8px;
}

.carousel-footer span[data-carousel-status] {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-dot.is-active {
  width: 24px;
  border-radius: 10px;
  background: var(--orange);
  box-shadow: 0 0 10px var(--orange-glow);
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0 100px;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #fff;
}

.hero-line-accent {
  background: linear-gradient(135deg, var(--orange), #ffa650);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 28px 0 36px;
  max-width: 600px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.button-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #ff8a00 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.button-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.button-primary:hover::after {
  transform: translateX(100%);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.5);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: #fff;
}

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

/* Hero Panel Grid */
.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.panel-card {
  position: relative;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.panel-card-main {
  background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.12), transparent 45%), var(--surface-strong);
}

.panel-card-main h2 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 16px 0 10px;
  color: #fff;
}

.panel-tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 30px;
  background: var(--orange-soft);
  border: 1px solid rgba(255, 107, 0, 0.25);
  color: #ffd0b0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.chip-row span {
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  color: #e2e8f0;
  font-size: 0.85rem;
  font-weight: 600;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.panel-grid .panel-card {
  padding: 24px;
}

.panel-grid .panel-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.panel-grid .panel-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.panel-icon {
  display: flex;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin-bottom: 16px;
  align-items: center;
  justify-content: center;
}

.panel-icon-orange {
  background: var(--orange-soft);
  border: 1px solid rgba(255, 107, 0, 0.3);
  color: var(--orange);
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.1);
}

.panel-icon-lilac {
  background: var(--indigo-soft);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #818cf8;
  box-shadow: 0 0 15px rgba(99, 102, 241, 0.1);
}

/* Section Common Layout */
.section {
  padding: 80px 0;
}

.section-soft {
  padding: 80px 48px;
  margin: 40px 0;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at bottom right, rgba(99, 102, 241, 0.08), transparent 45%), rgba(14, 19, 34, 0.4);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow);
}

.section-heading {
  margin-bottom: 50px;
  max-width: 800px;
}

.section-heading h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-top: 12px;
}

.section-heading p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 16px;
}

/* Service Grid Section */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  min-height: 250px;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  border-radius: 3px 3px 0 0;
  transition: background 0.3s ease;
}

.service-card:hover::after {
  background: linear-gradient(90deg, var(--indigo), var(--orange));
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glass-hover);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(99, 102, 241, 0.1);
  background: var(--surface-strong);
}

.service-number {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Insights Section */
.insights {
  padding: 80px 0;
}

.insight-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

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

.insight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 4px 4px 0 0;
}

.insight-card:nth-child(1)::before {
  background: var(--orange);
}

.insight-card:nth-child(2)::before {
  background: var(--indigo);
}

.insight-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--orange), var(--indigo));
}

.insight-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.3;
}

.insight-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

.insight-card:hover {
  transform: translateY(-4px);
  background: var(--surface-strong);
  border-color: var(--border-glass-hover);
}

/* Process Section */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
  list-style: none;
}

.process-item {
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  background: rgba(14, 19, 34, 0.4);
  border: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.process-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: transparent;
  transition: background 0.3s ease;
}

.process-item:hover::before {
  background: linear-gradient(180deg, var(--orange), var(--indigo));
}

.process-item:hover {
  background: rgba(14, 19, 34, 0.7);
  border-color: var(--border-glass-hover);
  transform: translateY(-4px);
}

.process-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--indigo-soft);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #818cf8;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.process-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.process-item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.faq-item {
  border-radius: var(--radius-md);
  background: rgba(14, 19, 34, 0.4);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item[open] {
  background: rgba(14, 19, 34, 0.7);
  border-color: var(--border-glass-hover);
}

.faq-item summary {
  padding: 22px 28px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  user-select: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.3s ease;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
  color: var(--orange);
}

.faq-item summary:hover {
  color: var(--orange);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 28px 24px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
}

/* CTA Section */
.cta-section {
  padding: 80px 0 20px;
}

.cta-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  padding: 60px 48px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(14, 19, 34, 0.95) 0%, rgba(7, 10, 16, 0.95) 100%);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent 70%);
  pointer-events: none;
}

.cta-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-copy .eyebrow {
  align-self: flex-start;
}

.cta-card h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 16px 0;
  letter-spacing: -0.02em;
}

.cta-card p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.cta-aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.cta-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-point {
  padding: 20px 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
}

.cta-point-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: #818cf8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cta-point strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f1f5f9;
  line-height: 1.5;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-actions .button {
  width: 100%;
}

.whatsapp-icon {
  display: inline-flex;
  width: 26px;
  height: 26px;
  margin-right: 10px;
  flex-shrink: 0;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
}

/* WhatsApp branded button */
.button-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1db954 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  position: relative;
  overflow: hidden;
}

.button-whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.button-whatsapp:hover::after {
  transform: translateX(100%);
}

.button-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

.cta-note {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
}

/* Footer Section */
.footer {
  margin-top: 40px;
  padding: 30px 40px;
  background: rgba(14, 19, 34, 0.7);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-meta {
  display: flex;
  gap: 24px;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-meta span:last-child {
  color: var(--text);
  font-weight: 600;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Responsive Breakpoints */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-lead {
    margin-inline: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 30px;
  }
  
  .carousel-slide {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .topbar {
    border-radius: 30px;
    padding: 8px 16px;
  }
  
  .topbar-art {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 16px;
    border-radius: var(--radius-lg);
    background: rgba(11, 15, 25, 0.95);
    border: 1px solid var(--border-glass);
    display: none;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  }
  
  .menu.is-open {
    display: flex;
  }
  
  .menu a {
    width: 100%;
    text-align: center;
  }
  
  .insight-layout {
    grid-template-columns: 1fr;
  }
  
  .section-soft {
    padding: 40px 24px;
  }
}

@media (max-width: 560px) {
  .service-grid,
  .process-list,
  .panel-grid {
    grid-template-columns: 1fr;
  }
  
  .carousel-slide {
    height: 340px;
  }
  
  .carousel-overlay {
    padding: 24px;
  }
  
  .carousel-actions-floating {
    display: none;
  }
  
  .button {
    width: 100%;
  }
  
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
