/* CSS Variables & Reset */
:root {
  --primary-gold: #c9a84c;
  --primary-gold-hover: #e8c97a;
  --bg-dark: #0a0a0f;
  --bg-card: #14141c;
  --text-main: #f5f0e8;
  --text-muted: #a0a0b0;
  --accent-purple: rgba(144, 19, 254, 0.15);
  --border-color: rgba(201, 168, 76, 0.15);
  --whatsapp: #25D366;
  --whatsapp-hover: #20ba58;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none; /* For custom cursor */
}

/* Typography */
h1, h2, h3, .logo {
  font-family: 'Cormorant Garamond', serif;
}

em {
  font-style: italic;
  color: var(--primary-gold);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--primary-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid var(--primary-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s;
  opacity: 0.6;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 4rem;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: padding 0.3s ease;
}

.navbar.scrolled {
  padding: 1rem 4rem;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo {
  height: 65px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
  margin: 0 auto; /* Center links in available space */
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

.nav-cta {
  background: transparent;
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--primary-gold);
  color: var(--bg-dark);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10, 10, 15, 0.95);
  border: 1px solid var(--border-color);
  min-width: 220px;
  list-style: none;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  border-radius: 4px;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.8rem 1.5rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  color: var(--primary-gold);
  background: rgba(255, 255, 255, 0.02);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--primary-gold);
  transition: all 0.3s;
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 15, 0.98);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
}

.mobile-nav-links li {
  margin: 2rem 0;
}

.mobile-nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 2px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 4rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, var(--accent-purple) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(201, 168, 76, 0.05) 0%, transparent 40%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  margin-top: 10rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-gold);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  animation: fadeUp 1s ease both;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  animation: fadeUp 1s ease 0.2s both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  animation: fadeUp 1s ease 0.3s both;
}

.hero-stars {
  color: var(--primary-gold);
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.hero-trust-text {
  color: var(--text-main);
  font-size: 0.95rem;
}

.hero-trust-text strong {
  color: var(--primary-gold);
  font-weight: 600;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3rem;
  animation: fadeUp 1s ease 0.4s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  animation: fadeUp 1s ease 0.6s both;
}

.btn-whatsapp-primary {
  display: inline-flex;
  align-items: center;
  background: var(--whatsapp);
  color: white;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp-primary:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-calendly {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--primary-gold);
  border: 1px solid var(--primary-gold);
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-calendly:hover {
  background: var(--primary-gold);
  color: var(--bg-dark);
  transform: translateY(-2px);
}

/* Sections General */
.section {
  padding: 8rem 0;
  border-top: 1px solid var(--border-color);
}

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

.section-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 2rem;
}

/* About Me */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

/* Philosophy */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.philosophy-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.philosophy-image {
  position: relative;
  height: 500px;
}

.philosophy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.experience-badge {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: var(--bg-dark);
  border: 1px solid var(--primary-gold);
  padding: 2rem;
  text-align: center;
}

.exp-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--primary-gold);
  line-height: 1;
}

.exp-text {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: transform 0.3s, border-color 0.3s;
  overflow: hidden;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-gold);
}

.service-img-wrapper {
  height: 250px;
  position: relative;
  overflow: hidden;
}

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

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

.service-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  line-height: 1;
  position: absolute;
  bottom: -0.5rem;
  right: 1.5rem;
  text-shadow: 0 4px 15px rgba(0,0,0,0.8);
  margin-bottom: 0;
}

.service-tag {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-gold);
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  margin-top: auto;
  margin-bottom: 1rem;
}

.saber-mas-link {
  display: inline-flex;
  align-items: center;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  padding-top: 1rem;
}

.saber-mas-link span {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.saber-mas-link:hover {
  color: var(--primary-gold);
}

.saber-mas-link:hover span {
  transform: translateX(5px);
}

.service-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}

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

/* Process */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 70px;
  height: 70px;
  border: 1px solid var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--primary-gold);
  background: var(--bg-dark);
}

.step-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-main);
  font-family: 'Cormorant Garamond', serif;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  height: 300px;
  overflow: hidden;
  border-radius: 4px;
}

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

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

/* Reviews */
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.google-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  border: 1px solid var(--border-color);
  padding: 1.5rem 2rem;
}

.rating-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  color: var(--primary-gold);
  line-height: 1;
}

.rating-stars {
  color: var(--primary-gold);
  letter-spacing: 2px;
  margin: 0.5rem 0;
}

.rating-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
}

.review-card .stars {
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

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

.review-author {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-gold);
}

/* CTA Section */
.cta-section {
  padding: 8rem 0;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(144, 19, 254, 0.08) 0%, var(--bg-dark) 70%);
  border-top: 1px solid var(--border-color);
}

.cta-section p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

.cta-actions-dual {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.btn-calendly-large {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--primary-gold);
  color: var(--bg-dark);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.2);
}

.btn-calendly-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(201, 168, 76, 0.4);
  background: var(--primary-gold-hover);
}

.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-whatsapp-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.btn-whatsapp-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.4);
}

.btn-whatsapp-large:hover::before {
  left: 100%;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .footer-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links h4, .footer-contact h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-gold);
  margin-bottom: 1.5rem;
}

ul.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.footer-contact p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

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

/* Floating WA */
.floating-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--whatsapp);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s;
  animation: pulse 2s infinite;
}

.floating-wa:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* Responsive */
/* ===== Promo Bar ===== */
.promo-bar {
  width: 100%;
  background: var(--primary-gold, #c9a96e);
  color: #0a0a0a;
  text-align: center;
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1001;
}
.promo-bar strong { font-weight: 600; }
.promo-bar-icon { font-size: 1rem; }
.promo-bar a {
  color: #0a0a0a;
  font-weight: 600;
  text-decoration: underline;
  white-space: nowrap;
  margin-left: 0.4rem;
  transition: opacity 0.2s;
}
.promo-bar a:hover { opacity: 0.7; }

/* ===== Hero Promo Pill ===== */
.hero-promo-pill {
  display: inline-block;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.5);
  color: var(--primary-gold, #c9a96e);
  border-radius: 50px;
  padding: 0.5rem 1.2rem;
  font-size: 0.88rem;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}
.hero-promo-pill strong { color: #fff; }

/* ===== FAQ Accordion ===== */
.faq-section { background: var(--bg-section, #111); }

.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border-color, #2a2a2a); }

.faq-item { border-bottom: 1px solid var(--border-color, #2a2a2a); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-main, #f0f0f0);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  padding: 1.2rem 2.5rem 1.2rem 0;
  cursor: pointer;
  position: relative;
  line-height: 1.5;
  transition: color 0.2s;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--primary-gold, #c9a96e);
  transition: transform 0.3s;
  line-height: 1;
}

.faq-question[aria-expanded="true"] { color: var(--primary-gold, #c9a96e); }
.faq-question[aria-expanded="true"]::after { content: '−'; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}

.faq-answer.open {
  max-height: 400px;
  padding-bottom: 1.2rem;
}

.faq-answer p {
  color: var(--text-muted, #999);
  font-size: 0.97rem;
  line-height: 1.75;
  margin: 0;
}

/* ===== LLM Context Block (visible to crawlers, minimal visual footprint) ===== */
.llm-context {
  background: #0d0d0d;
  border-top: 1px solid var(--border-color, #2a2a2a);
  padding: 3rem 0;
  color: var(--text-muted, #888);
  font-size: 0.85rem;
  line-height: 1.8;
}
.llm-context h2 { font-size: 1rem; color: var(--text-muted, #888); margin-bottom: 0.5rem; font-family: 'Outfit', sans-serif; font-weight: 400; }
.llm-context p { margin: 0 0 0.5rem; }

@media (max-width: 900px) {
  .navbar { padding: 1rem 1.5rem; justify-content: space-between; }
  .navbar.scrolled { padding: 1rem 1.5rem; }
  .nav-links, .nav-right .nav-cta { display: none; }
  .nav-logo { height: 35px; }
  .mobile-menu-btn { display: flex; z-index: 1001; }
  .hero { padding: 0 1.5rem; }
  .hero h1 { font-size: clamp(2.5rem, 8vw, 3.5rem); }
  .hero-actions { flex-direction: column; }
  .btn-whatsapp-primary, .btn-calendly { width: 100%; justify-content: center; }
  .cta-actions-dual { flex-direction: column; }
  .btn-calendly-large, .btn-whatsapp-large { width: 100%; justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrapper { height: 350px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .philosophy-image { height: 350px; }
  .experience-badge { left: 50%; bottom: -1rem; transform: translateX(-50%); padding: 1rem 2rem; width: 80%; }
  
  /* Mobile Services Carousel (CRO Optimization to reduce scroll) */
  .services-grid { 
    display: flex; 
    flex-wrap: nowrap; 
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    gap: 1rem; 
    padding-bottom: 1rem; 
    margin: 0 -1.5rem; /* Break out of container */
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  .services-grid::-webkit-scrollbar { display: none; } /* Chrome */
  .service-card { 
    flex: 0 0 85%; /* show part of next card */
    scroll-snap-align: center; 
  }
  
  .process-steps::before { display: none; }
  .reviews-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .google-rating { width: 100%; align-items: flex-start; }
  .gallery-item { height: 250px; }
  .footer-grid { gap: 2rem; }
}
