/* ==========================================================================
   STRUKTTO Marketing Site - Production Design System
   Brand Tokens: Navy (#1B2B3A), Mint (#5DB89A), Violet AI (#7B61FF), Slate (#8BA2B5)
   ========================================================================== */

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

:root {
  --color-navy-base: #0E1721;
  --color-navy-surface: #1B2B3A;
  --color-navy-card: #121826;
  --color-navy-border: rgba(255, 255, 255, 0.12);
  
  --color-mint-primary: #5DB89A;
  --color-mint-hover: #4ea589;
  --color-mint-light: rgba(93, 184, 154, 0.15);
  
  --color-violet-ai: #7B61FF;
  --color-violet-light: rgba(123, 97, 255, 0.15);
  --color-violet-border: rgba(123, 97, 255, 0.4);
  
  --color-slate-text: #8BA2B5;
  --color-slate-muted: #64748B;
  --color-white: #FFFFFF;
  
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-navy-base);
  color: var(--color-white);
  font-family: var(--font-body);
}

body {
  line-height: 1.6;
  overflow-x: hidden;
  background: radial-gradient(circle at 60% 20%, #1c2d3d 0%, #0E1721 70%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(14, 23, 33, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-navy-border);
  padding: 0.9rem 0;
}

.container {
  width: 90%;
  max-width: 1240px;
  margin: 0 auto;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-icon-only {
  height: 38px;
  width: 38px;
  object-fit: contain;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(93, 184, 154, 0.25);
}

.wordmark {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  color: var(--color-white);
  text-transform: uppercase;
}

.wordmark .mint-text {
  color: var(--color-mint-primary);
}

.wordmark .mint-dot {
  color: var(--color-mint-primary);
}

.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  color: var(--color-slate-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--color-white);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lang-switch {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-navy-border);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.85rem;
}

.nav-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-slate-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-icon-link:hover {
  color: var(--color-mint-primary);
}

/* ==========================================================================
   BUTTONS & BADGES
   ========================================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-mint-primary);
  color: var(--color-navy-base);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.65rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(93, 184, 154, 0.25);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--color-mint-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(93, 184, 154, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border: 1px solid var(--color-navy-border);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s ease;
}

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

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(93, 184, 154, 0.12);
  color: var(--color-mint-primary);
  border: 1px solid rgba(93, 184, 154, 0.3);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.badge-pro {
  display: inline-block;
  background-color: var(--color-violet-light);
  color: var(--color-violet-ai);
  border: 1px solid var(--color-violet-border);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.8rem;
  border-radius: 50px;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

/* ==========================================================================
   2-COLUMN HERO SECTION (EXACT MATCH TO USER SCREENSHOT)
   ========================================================================== */
.hero-section-app {
  padding: 4.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #CBD5E1;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  padding: 0.45rem 1.15rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.badge-dot {
  color: var(--color-mint-primary);
  font-size: 0.95rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 3.75rem;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--color-white);
  margin-bottom: 1.75rem;
}

.hero-title .mint-text {
  color: var(--color-mint-primary);
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.65;
  color: #94A3B8;
  max-width: 540px;
  margin-bottom: 2.75rem;
  font-weight: 400;
}

.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

/* WHITE CAPSULE BUTTON (EMPEZAR GRATIS →) */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: var(--color-white);
  color: #030C1A;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 10px 35px rgba(255, 255, 255, 0.2);
}

.btn-hero-primary:hover {
  background-color: #F8FAFC;
  transform: translateY(-2px);
  box-shadow: 0 15px 45px rgba(255, 255, 255, 0.35);
}

/* GHOST DEMO BUTTON (⊵ VER DEMO) */
.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #111B27;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  padding: 1rem 1.85rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-hero-ghost:hover {
  background-color: #1A2737;
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

.btn-hero-ghost .play-icon {
  font-size: 1.1rem;
  color: var(--color-white);
}

.hero-image-column {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-column img {
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: contain;
  filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.75));
}

/* ==========================================================================
   PROBLEM SECTION
   ========================================================================== */
.problem-section {
  padding: 5rem 0;
  background-color: rgba(18, 24, 38, 0.75);
  border-top: 1px solid var(--color-navy-border);
  border-bottom: 1px solid var(--color-navy-border);
}

.problem-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.problem-section h2 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.problem-section p {
  color: var(--color-slate-text);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ==========================================================================
   SHOWCASED FIELD APP SECTION (ONBOARDING WELCOME)
   ========================================================================== */
.showcase-split-section {
  padding: 6rem 0;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}

.showcase-text h2 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  color: var(--color-white);
}

.showcase-text p {
  color: var(--color-slate-text);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.showcase-text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2.25rem 0;
}

.showcase-text li {
  position: relative;
  padding-left: 1.85rem;
  margin-bottom: 0.85rem;
  color: var(--color-white);
  font-weight: 500;
  font-size: 1.05rem;
}

.showcase-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-mint-primary);
  font-weight: 900;
}

.showcase-frame {
  background: var(--color-navy-card);
  border: 1px solid var(--color-navy-border);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.showcase-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: contain;
  max-height: 520px;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features-section {
  padding: 5.5rem 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.feature-card {
  background-color: var(--color-navy-card);
  border: 1px solid var(--color-navy-border);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(93, 184, 154, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-card.feature-pro {
  border-color: var(--color-violet-border);
  background: linear-gradient(135deg, rgba(18, 24, 38, 0.95) 0%, rgba(35, 53, 71, 0.5) 100%);
}

.feature-card.feature-pro:hover {
  border-color: var(--color-violet-ai);
  box-shadow: 0 10px 35px rgba(123, 97, 255, 0.2);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--color-white);
}

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

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */
.how-it-works-section {
  padding: 5.5rem 0;
  background-color: rgba(27, 43, 58, 0.4);
  border-top: 1px solid var(--color-navy-border);
  border-bottom: 1px solid var(--color-navy-border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step-item {
  background-color: var(--color-navy-card);
  border: 1px solid var(--color-navy-border);
  border-radius: 20px;
  padding: 2.5rem 1.85rem;
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--color-mint-light);
  color: var(--color-mint-primary);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  border-radius: 16px;
  margin-bottom: 1.25rem;
}

.step-item h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-item p {
  color: var(--color-slate-text);
  font-size: 0.95rem;
}

/* ==========================================================================
   SOCIAL PROOF & METRICS SECTION
   ========================================================================== */
.social-proof-section {
  padding: 5.5rem 0;
  text-align: center;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
}

.metric-box {
  background-color: var(--color-navy-card);
  border: 1px solid var(--color-navy-border);
  border-radius: 20px;
  padding: 2.25rem 1.5rem;
}

.metric-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.85rem;
  color: var(--color-mint-primary);
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.92rem;
  color: var(--color-slate-text);
}

.testimonials-placeholder {
  max-width: 760px;
  margin: 2rem auto 0;
  padding: 1.85rem 2rem;
  background-color: rgba(93, 184, 154, 0.06);
  border: 1px solid rgba(93, 184, 154, 0.25);
  border-radius: 18px;
}

.placeholder-text {
  font-style: italic;
  color: var(--color-white);
  font-size: 1.08rem;
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */
.final-cta-section {
  padding: 6rem 0;
  text-align: center;
  background: linear-gradient(180deg, rgba(27, 43, 58, 0) 0%, rgba(27, 43, 58, 0.8) 100%);
  border-top: 1px solid var(--color-navy-border);
}

.final-cta-section h2 {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.final-cta-section p {
  color: var(--color-slate-text);
  font-size: 1.15rem;
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.final-buttons-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.tagline-brand {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.28em;
  color: var(--color-mint-primary);
  text-transform: uppercase;
}

/* ==========================================================================
   CARD TEXT OVERFLOW PROTECTION & RESPONSIVE SCALING
   ========================================================================== */
.pricing-card, .bento-card, .feature-card, .metric-box, .step-item, .legal-section {
  overflow: hidden;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  hyphens: auto;
}

.price-display {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-display .price-amount {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
}

/* ==========================================================================
   PROCORE-STYLE MULTI-COLUMN FOOTER
   ========================================================================== */
.site-footer {
  margin-top: auto;
  background-color: #080D14;
  border-top: 1px solid var(--color-navy-border);
  padding: 4.5rem 0 2rem;
  color: var(--color-slate-text);
  font-size: 0.92rem;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand-desc {
  color: var(--color-slate-text);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 360px;
}

.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-navy-border);
  border-radius: 10px;
  color: var(--color-white);
  text-decoration: none;
  font-size: 1.15rem;
  transition: all 0.25s ease;
}

.social-icon-btn:hover {
  background: var(--color-mint-light);
  border-color: var(--color-mint-primary);
  color: var(--color-mint-primary);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-menu a {
  color: var(--color-slate-text);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

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

.footer-app-badges {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.app-badge-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-navy-border);
  padding: 0.65rem 1rem;
  border-radius: 12px;
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.app-badge-link:hover {
  border-color: var(--color-mint-primary);
  background: rgba(93, 184, 154, 0.1);
  transform: translateY(-2px);
}

.footer-bottom-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  gap: 1.25rem;
  color: var(--color-slate-muted);
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-legal-links a {
  color: var(--color-slate-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.legal-page {
  padding: 4rem 0 6rem;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.legal-page p {
  color: var(--color-slate-text);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.legal-section {
  background-color: var(--color-navy-card);
  border: 1px solid var(--color-navy-border);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
}

.legal-section h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-mint-primary);
  margin-bottom: 1rem;
}

.legal-section p {
  margin-bottom: 0.85rem;
}

.legal-section ul {
  margin: 0.75rem 0 1rem 1.5rem;
  color: var(--color-slate-text);
}

.legal-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.legal-footer-box {
  background-color: rgba(93, 184, 154, 0.1);
  border: 1px solid rgba(93, 184, 154, 0.3);
  border-radius: 14px;
  padding: 1.25rem;
  text-align: center;
  margin-top: 2rem;
}

.legal-footer-box p {
  color: var(--color-mint-primary);
  font-weight: 700;
  margin: 0;
}

/* ==========================================================================
   DYNAMIC SCROLLING TICKER (INFINITE MARQUEE - LETREROS DESLIZANTES)
   ========================================================================== */
.marquee-section {
  background: linear-gradient(90deg, #0A1119 0%, #112030 50%, #0A1119 100%);
  border-top: 1px solid rgba(93, 184, 154, 0.25);
  border-bottom: 1px solid rgba(93, 184, 154, 0.25);
  padding: 1.15rem 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 35s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-slate-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 1.75rem;
  white-space: nowrap;
}

.marquee-item .mint-highlight {
  color: var(--color-mint-primary);
  text-shadow: 0 0 12px rgba(93, 184, 154, 0.4);
}

.marquee-item .violet-highlight {
  color: var(--color-violet-ai);
  text-shadow: 0 0 12px rgba(123, 97, 255, 0.4);
}

.marquee-star {
  color: var(--color-mint-primary);
  font-size: 0.85rem;
}

/* ==========================================================================
   MODERN PRICING / PLANES DE SUSCRIPCIÓN ("PRECIOS")
   ========================================================================== */
.pricing-section {
  padding: 6.5rem 0;
  background: radial-gradient(circle at 50% 10%, rgba(93, 184, 154, 0.05) 0%, transparent 60%);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 3.5rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--color-navy-card);
  border: 1px solid var(--color-navy-border);
  border-radius: 24px;
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(93, 184, 154, 0.4);
  box-shadow: 0 30px 60px rgba(93, 184, 154, 0.15);
}

.pricing-card.featured-card {
  background: linear-gradient(160deg, #162638 0%, #101D2C 100%);
  border: 2px solid var(--color-mint-primary);
  box-shadow: 0 25px 60px rgba(93, 184, 154, 0.25);
}

.pricing-card.featured-card:hover {
  box-shadow: 0 35px 80px rgba(93, 184, 154, 0.35);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-mint-primary);
  color: var(--color-navy-bg);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  box-shadow: 0 6px 16px rgba(93, 184, 154, 0.4);
}

.pricing-plan-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.pricing-plan-desc {
  color: var(--color-slate-text);
  font-size: 0.92rem;
  min-height: 44px;
  margin-bottom: 1.75rem;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-display .price-amount {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
}

.price-display .price-period {
  color: var(--color-slate-muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  flex-grow: 1;
}

.pricing-features li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  color: var(--color-slate-text);
  font-size: 0.95rem;
  line-height: 1.45;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-mint-primary);
  font-weight: 900;
  font-size: 1.1rem;
}

.pricing-cta {
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-content {
    align-items: center;
    text-align: center;
  }
  .hero-title {
    font-size: 3rem;
  }
  .showcase-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links-desktop {
    display: none;
  }
  .hero-title {
    font-size: 2.45rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .hero-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-hero-primary, .btn-hero-ghost {
    width: 100%;
    justify-content: center;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
