/* Global Styles */
/*https://www.canva.com/colors/color-palettes/bare-beauty/ */
:root {
  --primary-navy: #0a2540;
  --accent-blue: #afd8f2;
  --accent-bold-blue: #5289b5;
  --white: #ffffff;
  --logo-orange: #f68b1e;
  --logo-grey: #818285;
  --light-grey: #f8f9fa;
  --text-dark: #333333;
  --text-light: #666666;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --border-radius: 12px;
}

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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

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

.btn-primary:hover {
  background: #1a3a5a;
}

.btn-link {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.btn-link:hover {
  color: #26b8a5;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.header-top {
  background: var(--light-grey);
  padding: 8px 0;
  text-align: center;
}

.consultation-link {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.consultation-link:hover {
  color: var(--accent-blue);
}

.navbar {
  padding: 1rem 0;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  height: 40px;
}

.logo img {
  height: 100%;
  width: auto;
}

.logo-dark {
  display: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent-blue);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary-navy);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  color: var(--white);
  padding: 120px 0;
  min-height: 85vh;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Background image with blur */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("assets/hero-background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(3px);
  z-index: -2;
}

/* Gradient overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      ellipse at top left,
      rgba(175, 216, 242, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at bottom right,
      rgba(82, 137, 181, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(
      135deg,
      rgba(10, 37, 64, 0.9) 0%,
      rgba(26, 58, 90, 0.85) 100%
    );
  z-index: -1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 2rem;
  font-size: clamp(2.5rem, 6vw, 3rem);
  line-height: 1.1;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.375rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3.5rem;
  line-height: 1.6;
  max-width: 700px;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  max-width: 700px;
}

.bullet {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bullet:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.check-icon {
  width: 24px;
  height: 24px;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.bullet span {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.0625rem;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero-cta .btn-primary {
  padding: 16px 36px;
  font-size: 1.0625rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(175, 216, 242, 0.3);
}

.hero-cta .btn-link {
  color: var(--white);
  font-size: 1.0625rem;
  padding-left: 0.5rem;
  position: relative;
}

.hero-cta .btn-link::after {
  content: "→";
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.hero-cta .btn-link:hover {
  color: var(--accent-blue);
}

.hero-cta .btn-link:hover::after {
  transform: translateX(5px);
}

.hero-supporting-text {
  margin-top: 2rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: left;
  max-width: 600px;
}

/* Section Defaults */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  color: var(--primary-navy);
  margin-bottom: 3rem;
}

.section-intro {
  text-align: center;
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 3rem;
}

/* How It Works */
.how-it-works {
  background: var(--light-grey);
}

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

.step-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

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

.step-number {
  width: 50px;
  height: 50px;
  background: var(--accent-blue);
  color: var(--primary-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.benefit-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary-navy);
}

.benefit-card h3 {
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

/* Use Cases */
.use-cases {
  background: var(--light-grey);
}

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

.use-case-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.use-case-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.use-case-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary-navy);
}

.use-case-card h3 {
  color: var(--primary-navy);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

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

.pricing-card.featured {
  border: 2px solid var(--accent-blue);
}

.pricing-card h3 {
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-bold-blue);
  margin-bottom: 0.5rem;
}

.timeline {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.pricing-includes h4 {
  color: var(--primary-navy);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.pricing-includes ul {
  list-style: none;
}

.pricing-includes li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.pricing-includes li:before {
  content: "•";
  color: var(--accent-blue);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.pricing-note {
  text-align: center;
  color: var(--text-light);
  font-style: italic;
}

/* About */
.about {
  background: var(--light-grey);
  text-align: center;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
}

/* Trust/Results */
.trust {
  padding: 80px 0;
}

.testimonial-wrapper {
  position: relative;
  margin: 3rem 0 2rem;
}

.testimonial-container {
  overflow: hidden;
  width: calc(100% - 120px);
  margin: 0 auto;
  position: relative;
  padding: 15px;
}

.testimonial-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
}

.testimonial-card {
  width: calc((100% - 4rem) / 3);
  min-width: calc((100% - 4rem) / 3);
  max-width: calc((100% - 4rem) / 3);
  flex-shrink: 0;
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 3px solid var(--accent-blue);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.testimonial-card blockquote {
  font-size: 1.0625rem;
  color: var(--text-dark);
  line-height: 1.6;
  margin: 0 0 1.5rem;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.testimonial-footer cite {
  font-weight: 600;
  color: var(--primary-navy);
  font-style: normal;
}

.testimonial-use-case {
  font-size: 0.875rem;
  color: var(--accent-bold-blue);
  font-weight: 500;
}

.testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 2px solid var(--accent-blue);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.testimonial-prev {
  left: 10px;
}

.testimonial-next {
  right: 10px;
}

.testimonial-nav:hover {
  background: var(--accent-blue);
  transform: translateY(-50%) scale(1.1);
}

.testimonial-nav svg {
  width: 20px;
  height: 20px;
  color: var(--primary-navy);
}

.testimonial-nav:hover svg {
  color: var(--white);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--logo-grey);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  width: 24px;
  border-radius: 5px;
  background: var(--accent-blue);
}

.mobile-dot {
  display: none;
}

/* Contact Section Updates */
.contact-options {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.125rem;
  min-width: 200px;
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-navy);
  border: 2px solid var(--primary-navy);
}

.btn-secondary:hover {
  background: var(--primary-navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-direct-info {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--light-grey);
  border-radius: var(--border-radius);
  text-align: center;
}

.contact-direct-info h3 {
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  backdrop-filter: blur(4px);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-content {
  background: var(--white);
  border-radius: var(--border-radius);
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
}

.modal-header {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.progress-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
}

.progress-bar {
  width: 200px;
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--accent-blue);
  width: 14.28%; /* 1/7 steps */
  transition: width 0.3s ease;
  border-radius: 3px;
}

.progress-text {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-light);
  line-height: 1;
}

.modal-close:hover {
  color: var(--primary-navy);
}

.modal-body {
  padding: 2rem;
  max-height: 60vh;
  overflow-y: auto;
}

.modal-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Estimator Steps */
.step {
  display: none;
}

.step.active {
  display: block;
}

.step h3 {
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.step-prompt {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}

/* Option Cards */
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.option-card {
  display: block;
  border: 2px solid #eee;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.option-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.option-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.option-card input[type="checkbox"]:checked + .option-content {
  color: var(--primary-navy);
}

.option-card input[type="checkbox"]:checked {
  opacity: 1;
  position: static;
}

.option-card.selected {
  border-color: var(--accent-blue);
  background: rgba(175, 216, 242, 0.1);
}

.option-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.option-content strong {
  color: var(--primary-navy);
  font-size: 1.0625rem;
}

.option-content span {
  color: var(--text-light);
  font-size: 0.9375rem;
}

/* Radio Cards */
.radio-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.radio-card {
  display: block;
  border: 2px solid #eee;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.radio-card:hover {
  border-color: var(--accent-blue);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.radio-card.selected {
  border-color: var(--accent-blue);
  background: rgba(175, 216, 242, 0.1);
}

/* Systems Categories */
.systems-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.category {
  border: 1px solid #eee;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  background: var(--light-grey);
}

.category h4 {
  color: var(--primary-navy);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.system-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.system-options label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.system-options label:hover {
  background: rgba(175, 216, 242, 0.1);
}

.system-options input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

/* Form Groups */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-navy);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(175, 216, 242, 0.2);
}

.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
}

/* Results and Estimate Display */
.estimate-summary {
  background: var(--light-grey);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

.price-line,
.timeline-line,
.care-line {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.price-line strong {
  color: var(--accent-bold-blue);
  font-size: 1.25rem;
}

.estimate-breakdown {
  margin-bottom: 2rem;
}

.estimate-breakdown h4 {
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
}

.breakdown-item:last-child {
  border-bottom: none;
  font-weight: 600;
  color: var(--primary-navy);
}

.estimate-rationale {
  background: rgba(175, 216, 242, 0.1);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent-blue);
  margin-bottom: 2rem;
}

.estimate-rationale p {
  margin: 0;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.6;
}

/* Step Controls */
.step-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.step-controls .btn {
  padding: 10px 20px;
}

.auto-save-note,
.disclaimer {
  font-size: 0.8125rem;
  color: var(--text-light);
}

.success-content {
  text-align: center;
  padding: 2rem 0;
}

.success-content h3 {
  color: var(--accent-bold-blue);
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .modal-content {
    margin: 10px;
    max-height: 95vh;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    padding: 1rem;
  }

  .progress-container {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .progress-bar {
    width: 150px;
  }

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

  .systems-categories {
    grid-template-columns: 1fr;
  }

  .contact-options {
    flex-direction: column;
    align-items: center;
  }

  .modal-footer {
    flex-direction: column;
    gap: 1rem;
  }

  .step-controls {
    width: 100%;
    justify-content: space-between;
  }

  .auto-save-note,
  .disclaimer {
    text-align: center;
  }
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--accent-bold-blue) 0%,
    var(--accent-blue) 100%
  );
  color: var(--primary-navy);
  text-align: center;
  padding: 60px 0;
}

.cta-banner h2 {
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--primary-navy);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-banner .btn-primary {
  background: var(--primary-navy);
  color: var(--white);
}

.cta-banner .btn-primary:hover {
  background: #1a3a5a;
}

/* Contact */
.contact {
  background: var(--light-grey);
  padding: 80px 0;
}

.contact-intro {
  text-align: center;
  margin-bottom: 3rem;
  color: var(--text-light);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto 2rem;
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-navy);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
}

.contact-form .btn {
  width: 100%;
}

.contact-note {
  text-align: center;
  color: var(--text-light);
}

/* Footer */
.footer {
  background: var(--primary-navy);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 40px;
}

.footer-logo img {
  height: 100%;
  width: auto;
}

.footer .logo-dark {
  display: block;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--accent-blue);
}

.footer-info {
  text-align: center;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  /* Mobile Navigation */
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

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

  .nav-menu li {
    margin: 0.5rem 0;
  }

  /* Hero adjustments */
  .hero {
    padding: 80px 0;
    min-height: auto;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-bullets {
    flex-direction: column;
    align-items: flex-start;
  }

  .bullet {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
  }

  .bullet span {
    font-size: 0.9375rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn-primary {
    width: 100%;
    text-align: center;
  }

  .hero-cta .btn-link {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .hero-supporting-text {
    text-align: center;
    margin-top: 1.5rem;
  }

  /* Section adjustments */
  section {
    padding: 60px 0;
  }

  /* Grid adjustments */
  .steps-grid,
  .benefits-grid,
  .use-cases-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  /* Testimonial adjustments */
  .testimonial-wrapper {
    margin: 2rem 0;
  }

  .testimonial-container {
    width: calc(100% - 80px);
    margin: 0 auto;
    padding: 15px;
  }

  .testimonial-card {
    min-width: 100%;
    width: 100%;
  }

  .testimonial-nav {
    display: flex;
  }

  .testimonial-prev {
    left: 10px;
  }

  .testimonial-next {
    right: 10px;
  }

  .testimonial-dots {
    display: flex;
  }

  .mobile-dot {
    display: inline-block;
  }

  /* Footer adjustments - already centered by default */
}

@media (max-width: 480px) {
  /* Smaller mobile adjustments */
  .container {
    padding: 0 15px;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero {
    padding: 40px 0;
  }

  section {
    padding: 40px 0;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
}

/* Accessibility */
:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

/* High contrast support */
@media (prefers-contrast: high) {
  :root {
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.35);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
