/* 
  Ido Amado - SEO & Growth Specialist
  Dark Theme Design System
*/

:root {
  /* Color Palette */
  --bg-dark: #07090f; /* Deep Navy/Black */
  --bg-darker: #040508;
  --bg-card: rgba(14, 21, 37, 0.6);
  --border-color: rgba(43, 85, 235, 0.15);
  
  --text-main: #f8fafc; /* Brighter for sharper contrast */
  --text-muted: #cbd5e1; /* Brighter for better legibility */
  
  --accent-blue: #3b82f6; /* Electric Blue */
  --accent-blue-glow: rgba(59, 130, 246, 0.4);
  --accent-green: #10b981; /* Soft Green */
  --accent-green-glow: rgba(16, 185, 129, 0.4);
  
  --gradient-primary: linear-gradient(135deg, var(--accent-blue) 0%, #6366f1 100%);
  --gradient-text: linear-gradient(to right, #60a5fa, var(--accent-green));
  
  /* Typography */
  --font-sans: 'Inter', sans-serif;
  
  /* Layout */
  --max-width: 1200px;
  --header-height: 80px;
  --spacing-section: 6rem;
  
  /* Effects */
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.15);
  --shadow-glow-hover: 0 0 30px rgba(59, 130, 246, 0.3);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.7; /* Increased for better readability on small devices */
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.bg-darker {
  background-color: var(--bg-darker);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--spacing-section) 0;
}

/* Typography Utilities */
.text-center { text-align: center; }

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

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

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-full {
  width: 100%;
  padding: 1rem;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px var(--accent-blue-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--accent-blue-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Header */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

#main-header.scrolled {
  background: rgba(4, 5, 8, 0.9);
  backdrop-filter: blur(8px); /* Reduced for a sharper look */
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.05em;
}

.logo span {
  font-weight: 400;
  color: var(--accent-blue);
}

.main-nav {
  display: none !important; /* Navigation removed as requested */
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1100;
  padding: 0.5rem;
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  color: var(--accent-blue);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px; /* Increased to account for stacked mobile header */
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  mix-blend-mode: screen;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 9, 15, 0.1) 0%, var(--bg-dark) 100%);
}

.hero-content {
  max-width: 800px;
  text-align: center;
}

.trust-badges {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-green);
  background: rgba(16, 185, 129, 0.1);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-subheadline {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

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

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.problem-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 100, 100, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.icon-wrapper {
  color: #f87171; /* Warning Red */
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.problem-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

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

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

.service-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, var(--accent-blue-glow), transparent 60%);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.service-card:hover {
  background: rgba(255,255,255,0.04);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-glow-hover);
  transform: translateY(-5px);
}

.service-card:hover::before {
  opacity: 0.15;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-muted);
}

/* Process Section */
.process-steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-blue), transparent);
}

.step-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-number {
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--accent-blue);
  box-shadow: 0 0 15px var(--accent-blue-glow);
  z-index: 1;
}

.step-content {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  flex: 1;
  transition: var(--transition);
}

.step-content:hover {
  border-color: rgba(255,255,255,0.2);
  transform: translateX(5px);
}

.step-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-muted);
}

/* Results Section */
.results-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-bottom: 6rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.results-content .section-title {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.results-content .section-desc {
  margin: 0 0 3rem 0; /* Align left */
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-green);
  line-height: 1;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 20px var(--accent-green-glow);
}

.metric-label {
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.results-visual .visual-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.05), transparent 70%);
}

.results-visual img {
  width: 90%;
  height: auto;
  display: block;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(59, 130, 246, 0.2);
  filter: saturate(1.1) contrast(1.05); /* Make the photo pop */
  position: relative;
  z-index: 2;
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* Why Ido Section */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.diff-card {
  text-align: center;
  padding: 2rem;
}

.diff-card i {
  font-size: 3rem;
  color: var(--accent-green);
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px var(--accent-green-glow));
}

.diff-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.diff-card p {
  color: var(--text-muted);
}

/* Contrarian Banner */
.contrarian-banner {
  background: linear-gradient(to right, rgba(14, 21, 37, 0.8), rgba(4, 5, 8, 0.9));
  border: 1px solid var(--border-color);
  padding: 4rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contrarian-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
}

.contrarian-banner h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.contrarian-banner h2 span {
  color: #f87171; /* Warning Red for contrast */
}

.contrarian-banner p {
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* CTA & Lead Form */
.cta-container {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 4rem;
  align-items: center;
  background: var(--bg-card);
  padding: 4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-glow);
}

.cta-content .section-title {
  font-size: 2.5rem;
}

.cta-content .section-desc {
  margin-left: 0;
}

.cta-form-wrapper {
  background: var(--bg-dark);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.05);
}

.form-header {
  margin-bottom: 2rem;
  text-align: center;
}

.form-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.form-group input {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent-blue);
  background: rgba(59, 130, 246, 0.05);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-microcopy {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Footer */
.footer {
  background: var(--bg-darker);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo a {
  font-size: 1.5rem;
  font-weight: 800;
}

.footer-logo span {
  color: var(--accent-blue);
  font-weight: 400;
}

.footer-logo p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

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

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

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  font-size: 1.2rem;
}

.footer-social a:hover {
  background: var(--accent-blue);
  color: white;
}

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

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

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.case-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-glow);
}

.case-image {
  height: 200px;
  background: rgba(4, 5, 8, 0.8);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: var(--transition);
}

.case-card:hover .case-image img {
  opacity: 1;
  transform: scale(1.05);
}

.img-placeholder {
  font-size: 3rem;
  color: var(--text-muted);
}

.case-content {
  padding: 2.5rem;
}

.case-content h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.case-content h3 a {
  color: var(--text-main);
  text-decoration: none;
}

.client-link {
  display: flex !important;
  align-items: center;
  gap: 0.8rem;
}

.client-logo {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: contain;
  background: white;
  padding: 2px;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

.case-content h3 a:hover {
  color: var(--accent-blue);
}

.badge-small {
  font-size: 0.7rem;
  padding: 0.2rem 0.55rem;
  border-radius: 20px;
  background: rgba(59, 130, 246, 0.15);
  color: var(--accent-blue);
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap; /* Keep badge text on one line */
  flex-shrink: 0;
}

.case-goal {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  font-style: italic;
}

.case-summary {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.case-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.case-metrics li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1.05rem;
}

.case-metrics li i {
  color: var(--accent-green);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.case-metrics li i {
  color: var(--accent-green);
  font-size: 1.2rem;
}

.case-metrics li strong {
  color: var(--text-main);
  font-weight: 700;
}

/* GBP Mockup */
.gbp-mockup {
  background: var(--bg-darker);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.gbp-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-blue);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gbp-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.gbp-header .ph-map-pin-line {
  font-size: 3rem;
  color: #ea4335;
}

.gbp-header h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.gbp-stars {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: #fbbc05;
  font-size: 1.1rem;
}

.gbp-stars span {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-left: 0.5rem;
}

.gbp-body p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1rem;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  outline: none;
  font-family: inherit;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--accent-blue);
}

.faq-question i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
  color: var(--accent-blue);
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}

.faq-answer.active {
  max-height: 500px;
  opacity: 1;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 20px;
  width: 44px; /* Reduced from 60px */
  height: 44px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px; /* Smaller icon */
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: white;
}

/* SEO & Animation Logic: Items are visible by default to ensure 100% crawler visibility. 
   JavaScript adds the .js-ready class to enable entrance animations for human users. */
.animate-up {
  opacity: 1; /* Default to visible for SEO */
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Only hide if JS is ready and we want to animate */
.js-ready .animate-up:not(.visible) {
  opacity: 0;
  transform: translateY(20px);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Logo Carousel */
.client-carousel-wrapper {
  overflow: hidden;
  padding: 4rem 0;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin: 4rem 0;
}

.client-carousel {
  display: flex;
  width: max-content;
  animation: logos 40s linear infinite;
  gap: 6rem;
}

.client-logo-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 1;
  transition: var(--transition);
  user-select: none;
}

.client-logo-item:hover {
  transform: translateY(-2px);
}

.client-logo-item img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: white;
  padding: 4px;
}

.client-logo-item span {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .results-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .cta-container {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
  }
  
  .hero h1 {
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  /* Fix header proportions */
  .logo a {
    font-size: 1.25rem;
  }
  
  .header-container .btn-primary {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }

  .header-container .main-nav,
  .header-container .btn-outline {
    display: none;
  }
  
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }
  
  .process-steps::before {
    left: 20px;
  }
  
  .step-number {
    min-width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .step-item {
    gap: 1rem;
  }
  
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  
  .contrarian-banner h2 {
    font-size: 1.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}
/* Legal & GDPR */
.legal-disclaimer {
  margin: 1rem 0 0.5rem;
  font-size: 0.85rem;
  color: var(--accent-blue);
  font-weight: 600;
}

.gdpr-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0.5rem auto 0;
  line-height: 1.4;
}



/* Accessibility Widget */
.accessibility-widget {
  position: fixed;
  bottom: 25px;
  left: 20px;
  z-index: 10000;
}

.accessibility-btn {
  width: 44px; /* Reduced from 60px */
  height: 44px;
  border-radius: 50%;
  background: #fdfd2b;
  color: #000;
  border: 3px solid #000;
  font-size: 20px; /* Smaller icon */
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.acc-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.accessibility-btn:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

.accessibility-menu {
  position: absolute;
  bottom: 65px;
  left: 0;
  width: 300px;
  background: #ffffff; /* Solid white for absolute contrast */
  color: #0f172a;
  border: 4px solid #0f172a;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  display: none;
  animation: fade-in-up 0.3s ease forwards;
}

.accessibility-menu.active {
  display: block;
}

.accessibility-menu h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #000;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 0.5rem;
}

.acc-tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.acc-tool-btn {
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  color: #1e293b;
  padding: 0.8rem;
  border-radius: 10px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  font-weight: 600;
}

.acc-tool-btn i {
  font-size: 1.2rem;
}

.acc-tool-btn:hover {
  background: #f1f5f9;
  border-color: #3b82f6;
  color: #3b82f6;
}

.acc-tool-btn.active {
  background: #3b82f6;
  border-color: #3b82f6;
  color: white;
}

.reset-btn {
  margin-top: 0.5rem;
  background: #fee2e2;
  border-color: #fca5a5;
  color: #b91c1c;
}

.reset-btn:hover {
  background: #ef4444;
  color: white;
  border-color: #ef4444;
}

/* Accessibility Modes */
body.high-contrast {
  background: #000 !important;
  color: #fff !important;
}

body.high-contrast * {
  background-color: transparent !important;
  color: #fff !important;
  border-color: #fff !important;
  box-shadow: none !important;
  text-shadow: none !important;
  background-image: none !important;
}

body.high-contrast .btn-primary, 
body.high-contrast .accent-blue {
  background: #ffff00 !important;
  color: #000 !important;
}

body.underline-links a {
  text-decoration: underline !important;
}

@media (max-width: 991px) {
  .main-nav {
    display: none !important; /* Remove navigation links on mobile as requested */
  }

  .mobile-menu-toggle {
    display: none !important;
  }

  .header-container {
    flex-direction: column;
    justify-content: center;
    height: auto;
    padding: 1.5rem 1rem;
    gap: 1rem;
  }

  #main-header {
    height: auto;
  }

  .logo a {
    font-size: 1.4rem;
  }

  .header-cta {
    background: rgba(4, 5, 8, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
  }

  .logo a {
    font-size: 1.6rem; /* Larger and clearer logo */
    letter-spacing: -0.04em;
  }

  .header-cta {
    width: 100%;
    justify-content: center;
  }

  .header-cta .btn-primary {
    width: 100%;
    max-width: 320px;
    height: 52px; /* Large, easy-to-tap conversion button */
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .header-cta .btn.desktop-only {
    display: none;
  }
  
  .header-cta {
    gap: 0.5rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .accessibility-widget {
    bottom: 100px; /* Offset from WhatsApp icon if needed */
    left: 20px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 1.2rem 1rem;
  }
}

/* Local SEO Testimonial Styling */
.gbp-testimonial {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--accent-blue);
  padding: 1.5rem;
  border-radius: 0 12px 12px 0;
  position: relative;
  margin-top: 1rem;
}

.testimonial-quote {
  font-size: 1.5rem;
  color: var(--accent-blue);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-size: 0.85rem;
}

.testimonial-author strong {
  display: block;
  color: var(--accent-blue);
  font-weight: 700;
}

.testimonial-author span {
  color: var(--text-muted);
}

