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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 4rem;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(168, 236, 232, 0.95);
  border-bottom: 1px solid rgba(9, 6, 146, 0.1);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.logo-area:hover {
  opacity: 0.8;
}

.logo-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  background: #090692;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #090692;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #090692;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav-links .btn-primary {
  color: white;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #090692;
  z-index: 30;
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
  stroke: #090692;
  stroke-width: 2;
}

.btn {
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: #090692;
  color: white;
}

.hero {
  background: #E1E8E7;
  padding: 5rem 0;
  min-height: auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  background: #A8ECE8;
  color: #090692;
}

h1 {
  font-size: 3.75rem;
  font-weight: bold;
  line-height: 1.1;
  color: #090692;
}

.hero-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #090692;
  opacity: 0.8;
}

.btn-group {
  display: flex;
  gap: 1rem;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: 0.5rem;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 2px solid #090692;
  color: #090692;
}

.stats {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
}

.stat-box {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.stat-num {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  background: #090692;
  color: white;
  flex-shrink: 0;
}

.stat-num svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #090692;
  opacity: 0.7;
}

section {
  padding: 3rem 0;
  min-height: fit-content;
}

#contact {
  padding-top: 1rem;
}

#why-us {
  background: #E1E8E7;
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 3rem 0;
}

#why-us .section-header h2 {
  color: #090692;
}

#why-us .section-header .section-desc {
  color: #090692;
}

#why-us .container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

#why-us .section-header {
  margin-bottom: 0;
}

#why-us .grid-2 {
  gap: 2.5rem;
  row-gap: 2.5rem;
}

#why-us .feature {
  background: #090692;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  align-items: center;
}

.section-white {
  background: white;
}

.section-blue {
  background: #090692;
  color: white;
}

.section-teal {
  background: #A8ECE8;
}

.section-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}

.section-desc {
  font-size: 1rem;
  max-width: 48rem;
  margin: 0 auto;
  opacity: 0.7;
  line-height: 1.4;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.card {
  padding: 1.25rem;
  border-radius: 1rem;
  background: #A8ECE8;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.icon-box {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: bold;
  background: #E1E8E7;
  color: #090692;
  flex-shrink: 0;
}

h3 {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 0;
  color: #090692;
}

.card p {
  line-height: 1.4;
  font-size: 0.875rem;
  color: #090692;
  opacity: 0.7;
}

.card-list {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
  list-style-type: disc;
}

.card-list li {
  line-height: 1.4;
  font-size: 0.8rem;
  color: #090692;
  opacity: 0.7;
  margin-bottom: 0.35rem;
}

.card-list li:last-child {
  margin-bottom: 0;
}

.feature {
  display: flex;
  gap: 1.5rem;
}

.check-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: #A8ECE8;
  color: #090692;
  flex-shrink: 0;
}

.feature h3 {
  color: white;
}

.feature p {
  color: white;
  opacity: 0.8;
}

.cta-section {
  text-align: center;
  padding: 6rem 0;
}

.cta-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 1.5rem;
}

.contact-form-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background: #E1E8E7;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.875rem;
  color: #090692;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.75rem;
  border: 2px solid #E1E8E7;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #090692;
  opacity: 0.4;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #090692;
}

.contact-form button[type="submit"] {
  width: 100%;
  margin-top: 0.5rem;
}

.response-time {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #090692;
  opacity: 0.7;
  font-style: italic;
}

.thank-you-message {
  text-align: center;
  padding: 4rem 2rem;
  background: #E1E8E7;
  border-radius: 1rem;
}

.thank-you-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #090692;
  color: white;
  font-size: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-weight: bold;
}

footer {
  background: #A8ECE8;
  padding: 3rem 0;
}

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

.footer-links {
  display: flex;
  gap: 2rem;
  font-size: 0.875rem;
  color: white;
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.25rem;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    padding: 4rem 0;
  }

  .hero-grid {
    gap: 3rem;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .grid-2 {
    gap: 1.5rem;
  }

  section {
    padding: 3rem 0;
  }

  #why-us {
    padding: 3rem 0;
  }

  #why-us .grid-2 {
    gap: 1.5rem;
    row-gap: 1.5rem;
  }

  #why-us .feature {
    padding: 1.25rem;
  }

  .card {
    padding: 1.125rem;
  }
}

/* Tablet breakpoint for better medium screen support */
@media (max-width: 900px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  .hero {
    padding: 3.5rem 0;
  }

  .hero-grid {
    gap: 2.5rem;
  }

  section {
    padding: 2.75rem 0;
  }

  #why-us {
    padding: 2.75rem 0;
  }
}

@media (max-width: 768px) {
  .nav-content {
    padding: 0.75rem 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 70%;
    max-width: 300px;
    background: rgba(168, 236, 232, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    padding: 4rem 2rem 2rem 2rem;
    gap: 1.5rem;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
    z-index: 25;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
  }

  .nav-links.active {
    display: flex;
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 1.125rem;
    width: 100%;
    padding: 0.75rem 0;
  }

  .nav-links .btn-primary {
    width: 100%;
    text-align: center;
    padding: 0.875rem 1.5rem;
  }

  .hero {
    padding: 1.5rem 0 2rem 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 90%;
  }

  .hero-content {
    gap: 1rem;
  }

  h1 {
    font-size: 1.875rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.625rem;
    margin-bottom: 0.5rem;
  }

  .hero-text {
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  .btn-group {
    flex-direction: column;
    gap: 0.625rem;
  }

  .btn-large {
    width: 100%;
    text-align: center;
    padding: 0.8125rem 1.375rem;
    font-size: 0.9375rem;
  }

  .stats {
    flex-direction: column;
    gap: 0.625rem;
    padding-top: 0.875rem;
  }

  .stat-box {
    gap: 0.625rem;
  }

  .stat-num {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.125rem;
  }

  .stat-num svg {
    width: 18px;
    height: 18px;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  section {
    padding: 2rem 0;
  }

  #why-us {
    min-height: auto;
    padding: 2rem 0;
  }

  #why-us .container {
    gap: 1.25rem;
  }

  #contact {
    padding: 2rem 0;
  }

  .section-header {
    margin-bottom: 1rem;
  }

  .section-desc {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  #why-us .grid-2 {
    gap: 0.875rem;
    row-gap: 0.875rem;
  }

  #why-us .feature {
    padding: 0.875rem;
    gap: 0.875rem;
  }

  .grid-3,
  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 0.875rem;
  }

  .card {
    padding: 0.875rem;
  }

  .card-header {
    margin-bottom: 0.5rem;
    gap: 0.5rem;
  }

  .icon-box {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.9375rem;
  }

  .check-icon {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.125rem;
  }

  .card p {
    font-size: 0.8125rem;
    line-height: 1.4;
  }

  .card-list {
    margin-top: 0.5rem;
  }

  .card-list li {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }

  h3 {
    font-size: 0.9375rem;
  }

  .feature p {
    font-size: 0.8125rem;
    line-height: 1.4;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .contact-form {
    padding: 1.5rem;
  }

  .contact-form button[type="submit"] {
    margin-top: 0.25rem;
  }

  .response-time {
    margin-top: 0.75rem;
    font-size: 0.8rem;
  }

  .thank-you-message {
    padding: 2.5rem 1.5rem;
  }

  .thank-you-icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.8rem;
  }

  footer {
    padding: 2rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .cta-section {
    padding: 3rem 0;
  }
}

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

  h1 {
    font-size: 1.625rem;
  }

  h2 {
    font-size: 1.375rem;
  }

  h3 {
    font-size: 0.9rem;
  }

  .hero-text {
    font-size: 0.875rem;
  }

  .section-desc {
    font-size: 0.8125rem;
  }

  .section-badge,
  .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.875rem;
  }

  .brand-name {
    font-size: 1.25rem;
  }

  .logo-circle {
    width: 2rem;
    height: 2rem;
    font-size: 0.875rem;
  }

  .btn-large {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  .contact-form {
    padding: 1.125rem;
  }

  .icon-box {
    width: 2rem;
    height: 2rem;
    font-size: 0.875rem;
  }

  .check-icon {
    width: 2rem;
    height: 2rem;
    font-size: 1rem;
  }

  .hero {
    padding: 1.25rem 0 1.75rem 0;
  }

  .hero-content {
    gap: 0.875rem;
  }

  section {
    padding: 1.75rem 0;
  }

  #why-us {
    padding: 1.75rem 0;
  }

  #why-us .container {
    gap: 1rem;
  }

  #why-us .grid-2 {
    gap: 0.75rem;
    row-gap: 0.75rem;
  }

  #why-us .feature {
    padding: 0.75rem;
    gap: 0.75rem;
  }

  #contact {
    padding: 1.75rem 0;
  }

  .grid-3,
  .grid-2,
  .grid-4 {
    gap: 0.75rem;
  }

  .card {
    padding: 0.75rem;
  }

  .card-header {
    gap: 0.375rem;
    margin-bottom: 0.375rem;
  }

  .section-header {
    margin-bottom: 0.875rem;
  }

  footer {
    padding: 1.25rem 0;
  }
}