/* ============================
   CLÍNICA SOCIAL DE PSICANÁLISE
   Design System & Styles
   ============================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Custom Properties */
:root {
  --white: #FFFFFF;
  --brown-light: #CBB79C;
  --brown-lighter: #E8DDD0;
  --brown-lightest: #F5F0EA;
  --green-dark: #2F4F3E;
  --green-medium: #3D6B56;
  --green-light: #5A8F73;
  --green-lightest: #E8F0EC;
  --text-primary: #1A2E24;
  --text-secondary: #4A5E52;
  --text-muted: #7A8E82;
  --shadow-sm: 0 2px 8px rgba(47, 79, 62, 0.08);
  --shadow-md: 0 4px 20px rgba(47, 79, 62, 0.12);
  --shadow-lg: 0 8px 40px rgba(47, 79, 62, 0.16);
  --shadow-xl: 0 16px 60px rgba(47, 79, 62, 0.2);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(203, 183, 156, 0.3);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--green-dark);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--green-medium);
}

/* Splash Screen */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: linear-gradient(135deg, var(--green-dark) 0%, #1A2E24 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.splash-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-logo {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  object-fit: cover;
  animation: splashPulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 60px rgba(203, 183, 156, 0.3);
}

.splash-text {
  color: var(--brown-light);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin-top: 24px;
  letter-spacing: 0.05em;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.splash-bar {
  width: 120px;
  height: 3px;
  background: rgba(203, 183, 156, 0.2);
  border-radius: 4px;
  margin-top: 32px;
  overflow: hidden;
}

.splash-bar-fill {
  height: 100%;
  background: var(--brown-light);
  border-radius: 4px;
  animation: splashLoad 1.8s ease-in-out forwards;
}

@keyframes splashPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes splashLoad {
  0% { width: 0; }
  100% { width: 100%; }
}

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

/* Scroll Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ============================
   HERO SECTION
   ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 40px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--brown-lightest) 0%, var(--white) 50%, var(--green-lightest) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(203, 183, 156, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(47, 79, 62, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(203, 183, 156, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Subtle leaf pattern */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath d='M30 5c0 0-20 15-20 30s20 20 20 20 20-5 20-20S30 5 30 5z' fill='%232F4F3E'/%3E%3C/svg%3E");
  background-size: 100px 100px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 480px;
  width: 100%;
}

.hero-photo-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 28px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--brown-light);
  box-shadow: 0 0 0 8px rgba(203, 183, 156, 0.15), var(--shadow-lg);
  animation: fadeUp 0.8s ease forwards;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--green-dark);
  font-weight: 500;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 8px;
  line-height: 1.3;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero h2 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.6;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
  padding: 0 10px;
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeUp 0.8s ease 0.5s both;
}

.hero-scroll-hint {
  margin-top: 36px;
  font-size: 0.82rem;
  color: var(--text-muted);
  animation: fadeUp 0.8s ease 0.7s both, bounceDown 2s ease-in-out 1.5s infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-smooth);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn:hover::after {
  transform: translateX(100%);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-medium) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(47, 79, 62, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(47, 79, 62, 0.4);
  color: var(--white);
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid var(--brown-light);
  color: var(--green-dark);
}

.btn-secondary:hover {
  background: var(--brown-lightest);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--green-dark);
}

.btn-anon {
  background: linear-gradient(135deg, var(--brown-light) 0%, #B8A385 100%);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(203, 183, 156, 0.4);
}

.btn-anon:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(203, 183, 156, 0.5);
  color: var(--white);
}

.btn-install {
  background: transparent;
  border: 1.5px dashed var(--green-light);
  color: var(--green-dark);
}

.btn-install:hover {
  background: var(--green-lightest);
  border-style: solid;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ============================
   SECTIONS GENERAL
   ============================ */
.section {
  padding: 60px 20px;
  max-width: 540px;
  margin: 0 auto;
}

.section-alt {
  background: var(--brown-lightest);
}

.section-green {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1A2E24 100%);
  color: var(--white);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 8px;
  text-align: center;
}

.section-green .section-title {
  color: var(--brown-light);
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 32px;
  line-height: 1.6;
}

.section-green .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.section-divider {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--brown-light), var(--green-light));
  border-radius: 4px;
  margin: 12px auto 20px;
}

.section-green .section-divider {
  background: linear-gradient(90deg, var(--brown-light), rgba(255,255,255,0.3));
}

/* ============================
   ABOUT SECTION
   ============================ */
.about-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  text-align: center;
}

/* ============================
   PROFESSIONAL SECTION
   ============================ */
.professional-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.professional-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  margin: 0 auto 20px;
  border: 3px solid var(--brown-light);
  box-shadow: 0 0 0 6px rgba(203, 183, 156, 0.1);
}

.professional-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.professional-role {
  font-size: 0.9rem;
  color: var(--brown-light);
  font-weight: 500;
  margin-bottom: 20px;
}

.professional-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.info-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-lightest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-item-text {
  flex: 1;
}

.info-item-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 2px;
}

.info-item-value {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.88rem;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ============================
   CERTIFICATION
   ============================ */
.cert-container {
  text-align: center;
}

.cert-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform var(--transition-smooth);
  margin-bottom: 20px;
}

.cert-image-wrapper:hover {
  transform: scale(1.02);
}

.cert-image {
  width: 100%;
  display: block;
}

.cert-zoom-hint {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.5);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  backdrop-filter: blur(4px);
}

.cert-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Image Modal */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.image-modal.active {
  opacity: 1;
  visibility: visible;
}

.image-modal img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.image-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.image-modal-close:hover {
  background: rgba(255,255,255,0.3);
}

/* ============================
   ANONYMOUS SECTION
   ============================ */
.anon-section {
  background: linear-gradient(135deg, #F8F4F0 0%, var(--brown-lightest) 100%);
  border-radius: var(--radius-xl);
  padding: 40px 24px;
  margin: 0 auto;
  max-width: 500px;
  text-align: center;
  border: 1px solid rgba(203, 183, 156, 0.2);
  position: relative;
  overflow: hidden;
}

.anon-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(203, 183, 156, 0.1);
}

.anon-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.anon-section .section-title {
  font-size: 1.4rem;
}

.anon-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ============================
   SERVICES GRID
   ============================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  transition: all var(--transition-smooth);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brown-light);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}

.service-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.service-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================
   MODALITY COMPARISON
   ============================ */
.modality-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.modality-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(203, 183, 156, 0.15);
  transition: all var(--transition-smooth);
}

.modality-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.modality-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.modality-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 6px;
}

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

.modality-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.benefit-tag {
  background: var(--green-lightest);
  color: var(--green-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ============================
   SIMULATOR
   ============================ */
.simulator-container {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  box-shadow: var(--shadow-md);
}

.simulator-question {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--green-dark);
  text-align: center;
  margin-bottom: 24px;
}

.simulator-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.simulator-option {
  padding: 14px 12px;
  background: var(--white);
  border: 2px solid rgba(203, 183, 156, 0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.simulator-option:hover {
  border-color: var(--green-light);
  background: var(--green-lightest);
}

.simulator-option.selected {
  border-color: var(--green-dark);
  background: var(--green-lightest);
  box-shadow: 0 0 0 3px rgba(47, 79, 62, 0.1);
}

.simulator-option-icon {
  font-size: 1.5rem;
}

.simulator-result {
  display: none;
  background: linear-gradient(135deg, var(--green-lightest), var(--brown-lightest));
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  animation: fadeUp 0.5s ease;
}

.simulator-result.show {
  display: block;
}

.simulator-result-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.simulator-result-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(203, 183, 156, 0.15);
  position: relative;
  transition: all var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: #F5A623;
  font-size: 0.9rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 14px;
}

.testimonial-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
}

.testimonial-quote {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 2.5rem;
  color: rgba(203, 183, 156, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

/* ============================
   BOOKING FORM
   ============================ */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-input,
.form-select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(203, 183, 156, 0.3);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-primary);
  background: var(--white);
  transition: all var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(47, 79, 62, 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%237A8E82' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 44px;
}

.form-anon-link {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 12px 0 20px;
  transition: color var(--transition-fast);
}

.form-anon-link:hover {
  color: var(--green-medium);
}

/* ============================
   LOCATION
   ============================ */
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}

.map-container iframe {
  width: 100%;
  height: 280px;
  border: none;
}

.location-address {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ============================
   SOCIAL & FACEBOOK
   ============================ */
.social-section {
  text-align: center;
}

.social-section .btn {
  margin-top: 16px;
}

/* ============================
   INSTALL APP SECTION
   ============================ */
.install-section {
  text-align: center;
}

.install-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  text-align: left;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.install-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.install-benefit-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-lightest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.section-green .install-benefit {
  color: rgba(255,255,255,0.85);
}

.section-green .install-benefit-check {
  background: rgba(203, 183, 156, 0.2);
}

/* ============================
   FOOTER CARDGO
   ============================ */
.footer-cardgo {
  background: #000000;
  padding: 40px 20px 30px;
  text-align: center;
}

.footer-cardgo-logo {
  height: 40px;
  margin: 0 auto 16px;
  background: transparent !important;
  min-height: auto !important;
}

.footer-cardgo-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-cardgo-cta {
  font-size: 0.88rem;
  color: #5B9CF5;
  margin-bottom: 20px;
  cursor: pointer;
}

.footer-cardgo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.footer-cardgo-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* ============================
   IOS INSTALL MODAL
   ============================ */
.ios-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.ios-modal.active {
  opacity: 1;
  visibility: visible;
}

.ios-modal-content {
  background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 32px 24px 40px;
  width: 100%;
  max-width: 480px;
  text-align: center;
  transform: translateY(100%);
  transition: transform var(--transition-spring);
}

.ios-modal.active .ios-modal-content {
  transform: translateY(0);
}

.ios-modal-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.ios-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  text-align: left;
  border-bottom: 1px solid rgba(203, 183, 156, 0.15);
}

.ios-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.ios-step-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.ios-modal-close {
  margin-top: 24px;
  padding: 12px 32px;
  background: var(--green-dark);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

/* ============================
   TOAST NOTIFICATIONS
   ============================ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--green-dark);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9990;
  opacity: 0;
  transition: all var(--transition-spring);
  text-align: center;
  max-width: 90%;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================
   RESPONSIVE ADJUSTMENTS
   ============================ */
@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.55rem;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .service-card {
    padding: 18px 12px;
  }

  .simulator-options {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .section {
    padding: 48px 16px;
  }
}

@media (min-width: 540px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-photo-container {
    width: 220px;
    height: 220px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .section {
    padding: 80px 24px;
  }
}

/* ============================
   ACCESSIBILITY
   ============================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus Styles */
:focus-visible {
  outline: 2px solid var(--green-dark);
  outline-offset: 2px;
}

/* Selection */
::selection {
  background: rgba(47, 79, 62, 0.15);
  color: var(--green-dark);
}

/* Lazy Load Image Placeholder */
img[loading="lazy"] {
  background: var(--brown-lightest);
  min-height: 100px;
}

/* Smooth scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--brown-light);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--green-light);
}
