:root {
  --primary: #20B2AA;
  --primary-dark: #008B8B;
  --secondary: #708090;
  --dark: #2F4F4F;
  --light: #F5F5F5;
  --white: #ffffff;
  --text: #333333;
  --text-light: #666666;
  --border: #e0e0e0;
  --radius: 12px;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: clamp(2rem, 5vw, 3rem) 1.5rem;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero .tagline {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  font-weight: 500;
  opacity: 0.95;
  margin: 0 0 1.5rem 0;
}

.logo-circle {
  width: 220px;
  height: 220px;
  margin: 1.5rem auto;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
}

.hero-logo {
  max-width: 85%;
  max-height: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
}

/* Sections */
.section {
  padding: clamp(3rem, 7vw, 5rem) 1.5rem;
}

.section.intro {
  background: var(--white);
}

.section.speed {
  background: var(--light);
}

.section.benefits {
  background: var(--white);
}

.section.contact {
  background: var(--light);
  text-align: center;
}

.section h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
  text-align: center;
}

.section .subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--text-light);
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 500;
}

.section .lead {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-align: center;
}

.section p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section p:last-child {
  margin-bottom: 0;
}

/* Feature Lists */
.feature-list,
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 700px;
}

.feature-list li,
.benefit-list li {
  padding: 1rem 1.5rem 1rem 3rem;
  margin-bottom: 0.75rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-size: clamp(1rem, 2vw, 1.1rem);
  position: relative;
  line-height: 1.6;
}

.feature-list li::before,
.benefit-list li::before {
  content: '✓';
  position: absolute;
  left: 1rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.5rem;
}

.benefit-list li {
  background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
  border-left: 4px solid var(--primary);
}

/* Buttons */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-secondary:hover {
  background: #5A6A7A;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.btn-outline:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Contact Info */
.contact-info {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin: 2rem auto;
  max-width: 600px;
  text-align: left;
}

.contact-info .business-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-info p {
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.contact-info strong {
  color: var(--dark);
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.contact-info a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.25rem;
}

.contact-info a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Scheduler Container */
.scheduler-container {
  margin: 2rem auto;
  max-width: 1000px;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
}

.scheduler-container iframe {
  display: block;
  width: 100%;
}

/* Map Container */
.map-container {
  margin-top: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  overflow: hidden;
}

.map-container iframe {
  display: block;
  width: 100%;
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 2rem 1.5rem;
  margin-top: auto;
}


.footer p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    padding: 1.1rem 1.5rem;
  }

  .contact-info {
    padding: 2rem 1.5rem;
  }

  .feature-list li,
  .benefit-list li {
    padding: 1rem 1rem 1rem 2.5rem;
    font-size: 0.95rem;
  }

  .section {
    padding: clamp(2.5rem, 6vw, 4rem) 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 2.5rem 1rem;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  .section .lead {
    font-size: 1.1rem;
  }
}

