:root {
  --color-charcoal: #2D3436;
  --color-steel-blue: #0984E3;
  --color-orange: #E17055;
  --color-cream: #FDFBF7;
  --color-white: #FFFFFF;
  --color-gray-light: #f5f5f5;
  --color-gray-medium: #ddd;
  --color-gray-dark: #636e72;
  --color-text: #2D3436;
  --font-main: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --shadow: 0 2px 8px rgba(45, 52, 54, 0.1);
  --shadow-hover: 0 4px 16px rgba(45, 52, 54, 0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-cream);
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--color-orange);
}

a:focus {
  outline: 2px solid var(--color-steel-blue);
  outline-offset: 2px;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-charcoal);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 8px 16px;
  z-index: 10000;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: var(--color-white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-charcoal);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo:hover {
  color: var(--color-charcoal);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--color-orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--color-white);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text span {
  font-size: 0.75rem;
  color: var(--color-gray-dark);
  font-weight: 400;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle-bar {
  width: 24px;
  height: 3px;
  background: var(--color-charcoal);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.primary-nav a {
  color: var(--color-charcoal);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-orange);
  transition: width var(--transition);
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  width: 100%;
}

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

.nav-cta {
  background: var(--color-steel-blue);
  color: var(--color-white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius);
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--color-orange);
  color: var(--color-white) !important;
}

.nav-cta::after {
  display: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 20px;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--transition);
  }

  body.nav-open .primary-nav {
    transform: translateX(0);
  }

  .primary-nav a {
    display: block;
    padding: 16px 0;
    font-size: 1.25rem;
    border-bottom: 1px solid var(--color-gray-light);
  }

  .nav-cta {
    margin-top: 20px;
    text-align: center;
  }
}

.hero {
  background: linear-gradient(135deg, var(--color-charcoal) 0%, #3d4a4d 100%);
  color: var(--color-white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  z-index: 1;
}

.hero-title {
  color: var(--color-white);
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--color-orange);
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero {
    padding: 60px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    height: 250px;
  }
}

.trust-line {
  text-align: center;
  padding: 40px 20px;
  background: var(--color-white);
  border-top: 1px solid var(--color-gray-light);
}

.trust-line p {
  color: var(--color-gray-dark);
  margin: 0;
  font-size: 0.95rem;
}

.section {
  padding: 80px 0;
}

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

.section-title {
  text-align: center;
  margin-bottom: 16px;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  color: var(--color-gray-dark);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.card-image {
  height: 200px;
  overflow: hidden;
}

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

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

.card-content {
  padding: 24px;
}

.card-content h3 {
  margin-bottom: 12px;
}

.card-content p {
  color: var(--color-gray-dark);
  margin-bottom: 16px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.card-link::after {
  content: '→';
  transition: transform var(--transition);
}

.card:hover .card-link::after {
  transform: translateX(4px);
}

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

.feature-card {
  background: var(--color-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-steel-blue), var(--color-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--color-white);
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--color-gray-dark);
  margin: 0;
}

.lead-form-wrapper {
  background: linear-gradient(135deg, var(--color-charcoal) 0%, #3d4a4d 100%);
  padding: 60px 20px;
  border-radius: var(--radius-lg);
  max-width: 700px;
  margin: 0 auto;
}

.lead-form-wrapper h2 {
  color: var(--color-white);
  text-align: center;
  margin-bottom: 32px;
}

.lead-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  color: var(--color-white);
  font-weight: 500;
  margin-bottom: 8px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  background: var(--color-white);
  transition: border-color var(--transition);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--color-orange);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-consent {
  margin-bottom: 20px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  color: var(--color-white);
  font-size: 0.9rem;
  line-height: 1.5;
}

.consent-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-orange);
}

.form-error {
  color: var(--color-orange);
  font-size: 0.85rem;
  margin-top: 4px;
  display: none;
}

.form-field.error .form-error {
  display: block;
}

.form-field.error input,
.form-field.error textarea {
  border-color: var(--color-orange);
}

.form-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-align: center;
  margin-top: 16px;
}

.form-note a {
  color: var(--color-orange);
}

.honey {
  position: absolute;
  left: -9999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-steel-blue);
  color: var(--color-white);
  border-color: var(--color-steel-blue);
}

.btn-primary:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-charcoal);
}

.btn-ghost {
  background: transparent;
  color: var(--color-steel-blue);
  border-color: var(--color-steel-blue);
}

.btn-ghost:hover {
  background: var(--color-steel-blue);
  color: var(--color-white);
}

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.site-footer {
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: var(--color-white);
  margin-bottom: 20px;
  font-size: 1rem;
}

.footer-heading {
  color: var(--color-white);
  margin-bottom: 20px;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition);
}

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

.footer-cookie-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  transition: color var(--transition);
}

.footer-cookie-btn:hover {
  color: var(--color-orange);
}

.footer-line {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}

.footer-disclaimer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 0;
}

.footer-disclaimer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 20px;
  z-index: 9000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
}

.cookie-text p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-text a {
  color: var(--color-orange);
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal-backdrop.show {
  display: flex;
}

.cookie-modal-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-gray-dark);
  line-height: 1;
}

.cookie-modal-intro {
  padding: 32px;
  border-bottom: 1px solid var(--color-gray-light);
}

.cookie-modal-intro h3 {
  margin-bottom: 12px;
}

.cookie-modal-intro p {
  color: var(--color-gray-dark);
  margin: 0;
}

.cookie-category {
  padding: 20px 32px;
  border-bottom: 1px solid var(--color-gray-light);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-cat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-cat-head h4 {
  margin: 0;
  font-size: 1rem;
}

.cookie-cat-head p {
  margin: 8px 0 0;
  color: var(--color-gray-dark);
  font-size: 0.9rem;
}

.switch {
  position: relative;
  width: 50px;
  height: 26px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-gray-medium);
  border-radius: 26px;
  transition: var(--transition);
}

.switch-slider::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: var(--color-white);
  border-radius: 50%;
  transition: var(--transition);
}

.switch input:checked + .switch-slider {
  background-color: var(--color-steel-blue);
}

.switch input:checked + .switch-slider::before {
  transform: translateX(24px);
}

.switch input:disabled + .switch-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.page-header {
  background: linear-gradient(135deg, var(--color-charcoal) 0%, #3d4a4d 100%);
  color: var(--color-white);
  padding: 60px 20px;
  text-align: center;
}

.page-header h1 {
  color: var(--color-white);
  margin-bottom: 12px;
}

.page-header p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.content-section {
  padding: 60px 0;
}

.content-section h2 {
  margin-bottom: 24px;
}

.content-section h3 {
  margin: 32px 0 16px;
}

.content-section ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.content-section li {
  margin-bottom: 8px;
  list-style: disc;
}

.content-section p {
  margin-bottom: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--color-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-card p {
  color: var(--color-gray-dark);
  margin: 0;
}

.contact-card a {
  color: var(--color-steel-blue);
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: var(--shadow);
}

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

@media (max-width: 600px) {
  .map-container iframe {
    height: 300px;
  }
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.value-card {
  background: var(--color-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.value-card h3 {
  color: var(--color-steel-blue);
  margin-bottom: 12px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--color-steel-blue);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  margin-bottom: 8px;
}

.step-content p {
  color: var(--color-gray-dark);
  margin: 0;
}

@media (max-width: 600px) {
  .process-step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--color-gray-light);
}

.policy-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.policy-content ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.policy-content li {
  margin-bottom: 8px;
  list-style: disc;
}

.thankyou-content {
  text-align: center;
  padding: 80px 20px;
}

.thankyou-content .icon {
  width: 80px;
  height: 80px;
  background: var(--color-steel-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.thankyou-content .icon svg {
  width: 40px;
  height: 40px;
  fill: var(--color-white);
}

.thankyou-content h1 {
  margin-bottom: 16px;
}

.thankyou-content p {
  color: var(--color-gray-dark);
  max-width: 500px;
  margin: 0 auto 32px;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.example-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.example-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.example-card-content {
  padding: 24px;
}

.example-card h3 {
  margin-bottom: 8px;
}

.example-card p {
  color: var(--color-gray-dark);
  margin: 0;
}
