:root {
  /* Color Palette Extracted from Design System Image */
  --bg-page: #f8f8f5;
  --bg-white: #ffffff;
  --yellow-main: #ffbd14;
  --yellow-hover: #e6a800;
  --yellow-pale: #fff7d6;
  --yellow-border: #fee896;
  --dark-bg: #121316;
  --dark-card: #1c1d22;
  --dark-border: #2c2d35;
  
  --text-dark: #121316;
  --text-muted: #52525b;
  --text-light: #ffffff;
  --text-light-muted: #a1a1aa;

  --font-heading: "Barlow Semi Condensed", "Inter", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;

  --radius-pill: 9999px;
  --radius-card: 18px;
  --radius-banner: 24px;
  --shadow-main: 0 20px 40px rgba(18, 19, 22, 0.08);
  --shadow-dark: 0 24px 60px rgba(0, 0, 0, 0.25);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-page);
  color: var(--text-dark);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, p, span, a, strong {
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

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

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 64px);
  background: rgba(248, 248, 245, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(18, 19, 22, 0.06);
  width: 100%;
  box-sizing: border-box;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-shrink: 1;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 10px;
  background: var(--dark-bg);
  color: var(--yellow-main);
  transition: var(--transition);
  flex-shrink: 0;
}

.brand-mark svg {
  width: 20px;
  height: 20px;
}

.brand:hover .brand-mark {
  transform: scale(1.05) rotate(-3deg);
  background: #000;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-author {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 3.5vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav a:not(.nav-cta) {
  padding: 8px 14px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.site-nav a:not(.nav-cta):hover {
  color: var(--text-dark);
  background: rgba(18, 19, 22, 0.05);
}

/* Nav CTA - Styled after VAMOS CONVERSAR -> button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 8px 18px;
  background: var(--dark-bg);
  color: var(--text-light);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-cta .cta-arrow {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow-main);
  color: var(--dark-bg);
  transition: var(--transition);
  flex-shrink: 0;
}

.nav-cta .cta-arrow svg {
  width: 15px;
  height: 15px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: #000000;
  box-shadow: 0 8px 20px rgba(18, 19, 22, 0.2);
}

.nav-cta:hover .cta-arrow {
  transform: translateX(3px);
  background: #ffffff;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(18, 19, 22, 0.12);
  border-radius: 10px;
  background: var(--bg-white);
  cursor: pointer;
  flex-shrink: 0;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--dark-bg);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(24px, 4vw, 56px) clamp(16px, 4vw, 64px) clamp(40px, 5vw, 72px);
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #c98800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 6.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0.01em;
  color: var(--text-dark);
  text-transform: uppercase;
  margin-bottom: 18px;
  hyphens: auto;
}

.highlight-text {
  color: var(--yellow-main);
  display: block;
}

.hero-text {
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 28px;
  line-height: 1.6;
}

/* Feature Badges Grid */
.feature-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 32px;
  max-width: 580px;
  width: 100%;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--bg-white);
  border: 1px solid rgba(18, 19, 22, 0.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
  min-width: 0;
}

.badge-item:hover {
  transform: translateY(-2px);
  border-color: var(--yellow-border);
  box-shadow: 0 8px 20px rgba(255, 189, 20, 0.12);
}

.badge-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow-pale);
  color: var(--dark-bg);
  border: 1px solid var(--yellow-border);
  flex-shrink: 0;
}

.badge-icon svg {
  width: 18px;
  height: 18px;
}

.badge-text {
  min-width: 0;
}

.badge-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.badge-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Buttons System */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: var(--transition);
  text-transform: uppercase;
  max-width: 100%;
  box-sizing: border-box;
}

/* Primary Yellow Pill Button */
.button.primary-yellow-pill {
  gap: 10px;
  padding: 8px 8px 8px 20px;
  background: var(--yellow-main);
  color: var(--dark-bg);
  font-size: clamp(0.85rem, 3vw, 0.96rem);
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 25px rgba(255, 189, 20, 0.35);
  border: none;
  text-align: center;
}

.button.primary-yellow-pill .btn-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--dark-bg);
  color: var(--yellow-main);
  transition: var(--transition);
  flex-shrink: 0;
}

.button.primary-yellow-pill .btn-arrow svg {
  width: 16px;
  height: 16px;
}

.button.primary-yellow-pill:hover {
  transform: translateY(-2px);
  background: var(--yellow-hover);
  box-shadow: 0 14px 30px rgba(255, 189, 20, 0.45);
}

.button.primary-yellow-pill:hover .btn-arrow {
  transform: translateX(3px);
}

.button.secondary-pill {
  padding: 14px 22px;
  background: var(--bg-white);
  color: var(--text-dark);
  font-size: clamp(0.85rem, 3vw, 0.92rem);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(18, 19, 22, 0.12);
}

.button.secondary-pill:hover {
  background: var(--dark-bg);
  color: var(--text-light);
  border-color: var(--dark-bg);
}

/* Hero Right Visual Side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 100%;
  box-sizing: border-box;
}

.yellow-bg-shape {
  position: absolute;
  top: 5%;
  right: -5%;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle at 70% 30%, #ffd043 0%, #ffbd14 60%, #e6a800 100%);
  border-radius: 60% 40% 50% 50% / 50% 50% 60% 40%;
  z-index: 1;
  opacity: 0.88;
  max-width: 100%;
}

.visual-card-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 440px;
}

.floating-expert-badge {
  position: absolute;
  top: -18px;
  right: -10px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--bg-white);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-dark);
  border: 2px solid var(--yellow-main);
  animation: float 4s ease-in-out infinite;
  max-width: 100%;
  box-sizing: border-box;
}

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

.badge-circle-icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow-main);
  color: var(--dark-bg);
  flex-shrink: 0;
}

.badge-circle-icon svg {
  width: 18px;
  height: 18px;
}

.badge-info .tag {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #b37700;
}

.badge-info strong {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--text-dark);
}

/* Browser & Dashboard Mockup Frame */
.browser-mockup {
  border-radius: var(--radius-card);
  background: var(--dark-bg);
  border: 1px solid var(--dark-border);
  box-shadow: var(--shadow-dark);
  overflow: hidden;
  color: var(--text-light);
  width: 100%;
}

.browser-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #18191e;
  border-bottom: 1px solid var(--dark-border);
}

.dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.browser-address-bar {
  font-size: 0.7rem;
  color: var(--text-light-muted);
  background: rgba(255, 255, 255, 0.06);
  padding: 3px 10px;
  border-radius: 6px;
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-preview {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.preview-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 10px;
}

.status-pill {
  font-size: 0.7rem;
  font-weight: 800;
  color: #4ade80;
  letter-spacing: 0.05em;
}

.preview-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin-top: 4px;
}

.code-box {
  background: #0d0e11;
  padding: 14px;
  border-radius: 10px;
  font-family: Consolas, Monaco, monospace;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow-x: auto;
}

.code-box .kwd { color: #f472b6; }
.code-box .var { color: #60a5fa; }
.code-box .str { color: var(--yellow-main); }
.code-box .prop { color: #34d399; }

.mini-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mini-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-card .val {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--yellow-main);
}

.mini-card .lbl {
  font-size: 0.7rem;
  color: var(--text-light-muted);
}

/* ==========================================================================
   Common Section Styles & Layout
   ========================================================================== */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.section-band {
  padding: clamp(48px, 6vw, 96px) clamp(16px, 4vw, 64px);
  background: var(--bg-white);
  width: 100%;
  box-sizing: border-box;
}

.projects, .process {
  padding: clamp(48px, 6vw, 96px) clamp(16px, 4vw, 64px);
  width: 100%;
  box-sizing: border-box;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
  width: 100%;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #c98800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.eyebrow-tag.yellow {
  color: var(--yellow-main);
}

.section-heading h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 4.8vw, 3.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-dark);
  text-transform: uppercase;
}

/* ==========================================================================
   Services Grid
   ========================================================================== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
}

.service-card {
  padding: 30px 24px;
  background: var(--bg-page);
  border: 1px solid rgba(18, 19, 22, 0.08);
  border-radius: var(--radius-card);
  transition: var(--transition);
  width: 100%;
  box-sizing: border-box;
}

.service-card:hover {
  transform: translateY(-4px);
  background: var(--bg-white);
  border-color: var(--yellow-main);
  box-shadow: var(--shadow-main);
}

.service-icon-wrapper {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow-pale);
  color: var(--dark-bg);
  border: 1px solid var(--yellow-border);
  margin-bottom: 20px;
}

.service-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

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

/* ==========================================================================
   Projects Section (Banner Layout)
   ========================================================================== */
.project-grid.single-project {
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}

.project-card.featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--dark-bg);
  color: var(--text-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  border: 1px solid var(--dark-border);
  width: 100%;
  box-sizing: border-box;
}

.project-media {
  width: 100%;
  overflow: hidden;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--dark-border);
}

.project-media img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.project-card.featured:hover .project-media img {
  transform: scale(1.02);
}

.project-card-content {
  padding: clamp(24px, 4vw, 48px) clamp(16px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  width: 100%;
  box-sizing: border-box;
}

.project-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--yellow-main);
  margin-bottom: 10px;
}

.project-card-content h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.1;
}

.project-card-content p {
  color: var(--text-light-muted);
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ==========================================================================
   Process Section
   ========================================================================== */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  width: 100%;
}

.timeline-card {
  position: relative;
  padding: 28px 20px;
  background: var(--bg-page);
  border-radius: var(--radius-card);
  border-top: 4px solid var(--yellow-main);
  border-left: 1px solid rgba(18, 19, 22, 0.06);
  border-right: 1px solid rgba(18, 19, 22, 0.06);
  border-bottom: 1px solid rgba(18, 19, 22, 0.06);
  transition: var(--transition);
  width: 100%;
  box-sizing: border-box;
}

.timeline-card:hover {
  transform: translateY(-4px);
  background: var(--bg-white);
  box-shadow: var(--shadow-main);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow-main);
  line-height: 1;
  margin-bottom: 12px;
}

.timeline-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.timeline-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   FAQ Section (Dark Styling)
   ========================================================================== */
.faq.dark-section {
  padding: clamp(48px, 6vw, 96px) clamp(16px, 4vw, 64px);
  background: var(--dark-bg);
  color: var(--text-light);
  width: 100%;
  box-sizing: border-box;
}

.faq .section-heading h2 {
  color: var(--text-light);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 900px;
  width: 100%;
}

.faq-list details {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  width: 100%;
  box-sizing: border-box;
}

.faq-list details[open] {
  border-color: var(--yellow-main);
}

.faq-list summary {
  padding: 18px 20px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 3vw, 1.15rem);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  color: var(--text-light);
}

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

.accordion-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--yellow-main);
  font-size: 1.3rem;
  font-weight: 400;
  transition: var(--transition);
  flex-shrink: 0;
}

details[open] .accordion-icon {
  transform: rotate(45deg);
  background: var(--yellow-main);
  color: var(--dark-bg);
}

.faq-body {
  padding: 0 20px 20px;
  color: var(--text-light-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ==========================================================================
   Quote CTA Section
   ========================================================================== */
.quote-section {
  padding: clamp(48px, 6vw, 96px) clamp(16px, 4vw, 64px);
  background: var(--bg-white);
  width: 100%;
  box-sizing: border-box;
}

.quote-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 56px) clamp(20px, 4vw, 48px);
  background: radial-gradient(circle at 100% 0%, #2a2c35 0%, #121316 100%);
  border-radius: var(--radius-banner);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow-dark);
  width: 100%;
  box-sizing: border-box;
}

.quote-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.08;
  text-transform: uppercase;
  margin-top: 4px;
  margin-bottom: 12px;
}

.quote-text p {
  color: var(--text-light-muted);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  max-width: 600px;
}

.quote-action {
  flex-shrink: 0;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #0b0c0e;
  color: var(--text-light-muted);
  padding: 32px clamp(16px, 4vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  box-sizing: border-box;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-brand strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-light);
}

.footer-brand span {
  font-size: 0.82rem;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--yellow-main);
  color: var(--dark-bg);
  transform: translateY(-2px);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ==========================================================================
   Media Queries & Responsiveness
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .quote-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .quote-action {
    width: 100%;
  }

  .quote-action .button {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: var(--radius-card);
    background: var(--dark-bg);
    border: 1px solid var(--dark-border);
    box-shadow: var(--shadow-dark);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a:not(.nav-cta) {
    color: var(--text-light-muted);
  }

  .nav-cta {
    justify-content: center;
  }

  .feature-badges {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .feature-badges {
    grid-template-columns: 1fr;
  }

  .badge-item {
    padding: 10px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button.primary-yellow-pill, .button.secondary-pill {
    width: 100%;
    justify-content: center;
  }

  .floating-expert-badge {
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 12px;
    width: 100%;
    justify-content: center;
  }
}
