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

:root {
  --primary-teal: #5DBDC7;
  --primary-teal-dark: #4A9BA3;
  --primary-teal-light: #7DD3DC;
  --dark-gray: #2C2C2C;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --white: #ffffff;
  --light-bg: #F7F7F7;
  --border-color: #E5E7EB;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-top: 5px solid var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

.top-banner {
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
  color: var(--white);
  padding: 12px 0;
  font-size: 13px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
}

.top-banner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.banner-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.banner-item svg {
  flex-shrink: 0;
}

.banner-item a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.banner-item a:hover {
  opacity: 0.8;
}

.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 18px 0;
  position: fixed;
  top: 44px;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(93, 189, 199, 0.1);
}

.header.scrolled {
  padding: 14px 0;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.95);
}

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

.logo {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-teal) 0%, var(--primary-teal-light) 100%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.logo:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1002;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--primary-teal);
  border-radius: 3px;
  transition: all 0.3s ease;
}

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

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

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
  margin: 0;
}

.nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  font-size: 15px;
}

.nav-menu > li > a:not(.btn-quote)::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-teal) 0%, var(--primary-teal-light) 100%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-menu > li > a:not(.btn-quote):hover {
  color: var(--primary-teal);
}

.nav-menu > li > a:not(.btn-quote):hover::after {
  width: 100%;
}


.btn-quote {
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 15px;
  box-shadow: 0 4px 20px rgba(93, 189, 199, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-quote::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.btn-quote:hover::before {
  left: 100%;
}

.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(93, 189, 199, 0.45);
}

.hero {
  position: relative;
  background: linear-gradient(135deg, rgba(93, 189, 199, 0.95) 0%, rgba(44, 44, 44, 0.92) 100%),
              url('https://storage.googleapis.com/campaign-website-images/10012/pexels-photo-4021775.jpeg') center/cover fixed;
  padding: 200px 0 140px;
  margin-top: 112px;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(125, 211, 220, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(93, 189, 199, 0.15) 0%, transparent 50%);
  animation: floatBackground 20s ease-in-out infinite;
}

@keyframes floatBackground {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-20px, 20px); }
}

.hero-content {
  max-width: 750px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

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

.hero-text h1 {
  font-size: 56px;
  margin-bottom: 28px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -1.5px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-text h1 span {
  background: linear-gradient(135deg, #ffffff 0%, #7DD3DC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-text p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.4s both;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--primary-teal);
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.4s ease;
  font-size: 17px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 1s ease-out 0.6s both;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(93, 189, 199, 0.2), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  color: var(--primary-teal-dark);
}

.commitment-section {
  background: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.commitment-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(93, 189, 199, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.1); }
}

.commitment-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.commitment-content h2 {
  font-size: 42px;
  margin-bottom: 28px;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
}

.commitment-content h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-teal) 0%, var(--primary-teal-light) 100%);
  border-radius: 2px;
}

.commitment-content p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 40px;
}

.btn-secondary {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
  color: var(--white);
  padding: 16px 42px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  font-size: 16px;
  box-shadow: 0 6px 25px rgba(93, 189, 199, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.btn-secondary:hover::before {
  left: 100%;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(93, 189, 199, 0.45);
}

.services-section {
  background: linear-gradient(180deg, #F9FAFB 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(93, 189, 199, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.section-title {
  text-align: center;
  font-size: 42px;
  margin-bottom: 70px;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -1px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-teal) 0%, var(--primary-teal-light) 100%);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(93, 189, 199, 0.1);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(93, 189, 199, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(93, 189, 199, 0.2);
  border-color: var(--primary-teal);
}

.service-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.service-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover .service-image::after {
  opacity: 1;
}

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

.service-card:hover .service-image img {
  transform: scale(1.15) rotate(2deg);
}

.service-content {
  padding: 36px;
  position: relative;
  z-index: 2;
}

.service-content h3 {
  font-size: 26px;
  margin-bottom: 18px;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
}

.service-card:hover .service-content h3 {
  color: var(--primary-teal);
}

.service-content p {
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.8;
  font-size: 15px;
}

.btn-link {
  color: var(--primary-teal);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  position: relative;
}

.btn-link::after {
  content: '→';
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-link:hover {
  color: var(--primary-teal-dark);
  gap: 14px;
}

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

.quote-section {
  background: var(--white);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(93, 189, 199, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.quote-info h2 {
  font-size: 36px;
  margin-bottom: 24px;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.3;
}

.quote-info p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 50px;
  font-size: 17px;
}

.info-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: start;
  padding: 24px;
  background: rgba(93, 189, 199, 0.04);
  border-radius: 16px;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.info-item:hover {
  background: rgba(93, 189, 199, 0.08);
  transform: translateX(10px);
  border-color: rgba(93, 189, 199, 0.2);
}

.info-item svg {
  color: var(--primary-teal);
  flex-shrink: 0;
  margin-top: 4px;
  transition: transform 0.4s ease;
}

.info-item:hover svg {
  transform: scale(1.2) rotate(10deg);
}

.info-item strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 16px;
}

.info-item p {
  color: var(--text-light);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.info-item a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.info-item a:hover {
  color: var(--primary-teal);
}

.quote-form-container {
  background: linear-gradient(135deg, rgba(93, 189, 199, 0.08) 0%, rgba(125, 211, 220, 0.05) 100%);
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(93, 189, 199, 0.15);
  border: 1px solid rgba(93, 189, 199, 0.15);
  backdrop-filter: blur(10px);
}

.quote-form h3 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.form-group {
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 14px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(93, 189, 199, 0.2);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 4px rgba(93, 189, 199, 0.12);
  transform: translateY(-2px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--primary-teal);
}

.form-group textarea {
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(93, 189, 199, 0.04);
  border-radius: 10px;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--primary-teal);
}

.form-checkbox label {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  cursor: pointer;
}

.form-checkbox label .privacy-text {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.6;
}

.form-checkbox a {
  color: var(--primary-teal);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.form-checkbox a:hover {
  color: var(--primary-teal-dark);
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
  color: var(--white);
  padding: 16px;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(93, 189, 199, 0.35);
}

.btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s;
}

.btn-submit:hover::before {
  left: 100%;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(93, 189, 199, 0.45);
}

.btn-submit.loading {
  color: transparent;
  pointer-events: none;
}

.btn-submit.loading::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  top: 50%;
  left: 50%;
  margin-left: -11px;
  margin-top: -11px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.footer {
  background: linear-gradient(135deg, var(--dark-gray) 0%, #1a1a1a 100%);
  color: var(--white);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-teal), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--white);
  letter-spacing: -0.5px;
}

.footer-description {
  line-height: 1.8;
  opacity: 0.8;
  font-size: 15px;
}

.footer-col h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
  letter-spacing: -0.3px;
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-menu li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  display: inline-block;
}

.footer-menu li a:hover {
  color: var(--primary-teal);
  padding-left: 8px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  line-height: 1.6;
}

.footer-contact svg {
  color: var(--primary-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact a,
.footer-contact span {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-contact a:hover {
  color: var(--primary-teal);
}

.footer-bottom {
  padding: 28px 0;
  text-align: center;
  font-size: 14px;
  opacity: 0.6;
}

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #28a745 0%, #20894a 100%);
  color: white;
  padding: 18px 28px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
  z-index: 10000;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  font-weight: 600;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.page-header {
  background: linear-gradient(135deg, rgba(93, 189, 199, 0.95) 0%, rgba(44, 44, 44, 0.95) 100%),
              url('https://storage.googleapis.com/campaign-website-images/10012/pexels-photo-5327585.webp') center/cover fixed;
  padding: 160px 0 90px;
  margin-top: 68px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(125, 211, 220, 0.15) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

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

.page-header h1 {
  font-size: 54px;
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  letter-spacing: -1.5px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  opacity: 0.95;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.breadcrumb a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

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

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  font-size: 32px;
  margin: 50px 0 24px;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.8px;
  position: relative;
  padding-bottom: 16px;
}

.content-wrapper h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-teal) 0%, var(--primary-teal-light) 100%);
  border-radius: 2px;
}

.content-wrapper h3 {
  font-size: 24px;
  margin: 35px 0 18px;
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.5px;
}

.content-wrapper p {
  margin-bottom: 18px;
  line-height: 1.9;
  color: var(--text-light);
  font-size: 16px;
}

.content-wrapper ul {
  margin: 24px 0 24px 24px;
  line-height: 1.9;
}

.content-wrapper li {
  margin-bottom: 12px;
  line-height: 1.8;
  color: var(--text-light);
  padding-left: 8px;
}

.content-wrapper a {
  color: var(--primary-teal);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.content-wrapper a:hover {
  color: var(--primary-teal-dark);
  text-decoration: underline;
}

.intro-section {
  background: linear-gradient(135deg, rgba(93, 189, 199, 0.08) 0%, rgba(125, 211, 220, 0.04) 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.intro-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(93, 189, 199, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.intro-section p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

.benefits-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.benefit-card {
  background: linear-gradient(135deg, rgba(93, 189, 199, 0.06) 0%, rgba(125, 211, 220, 0.03) 100%);
  padding: 42px;
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(93, 189, 199, 0.1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(93, 189, 199, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.benefit-card:hover::before {
  top: -20%;
  right: -20%;
  transform: scale(1.5);
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(93, 189, 199, 0.2);
  border-color: var(--primary-teal);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(93, 189, 199, 0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 12px 30px rgba(93, 189, 199, 0.4);
}

.benefit-icon svg {
  color: var(--white);
}

.benefit-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.plans-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #F9FAFB 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.plans-section::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(93, 189, 199, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.plan-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(93, 189, 199, 0.1);
  position: relative;
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(93, 189, 199, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

.plan-card:hover::before {
  opacity: 1;
}

.plan-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 60px rgba(93, 189, 199, 0.2);
  border-color: var(--primary-teal);
}

.plan-header {
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
  color: var(--white);
  padding: 32px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.plan-header h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.plan-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.plan-body {
  padding: 32px;
  position: relative;
  z-index: 2;
}

.plan-body p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 14px;
}

.plan-body h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 16px;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.plan-features li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.plan-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-teal);
  font-weight: 800;
  font-size: 16px;
}

.cta-simple-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-simple-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
}

.cta-simple-content {
  position: relative;
  z-index: 1;
}

.cta-simple-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: 900;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s ease-out;
}

.cta-simple-content p {
  font-size: 19px;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn-white {
  background: var(--white);
  color: var(--primary-teal);
  padding: 16px 42px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s ease;
  display: inline-block;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-white::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(93, 189, 199, 0.2), transparent);
  transition: left 0.6s;
}

.btn-white:hover::before {
  left: 100%;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  color: var(--primary-teal-dark);
}

.btn-outline {
  padding: 16px 42px;
  border: 2px solid var(--white);
  border-radius: 50px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s ease;
  display: inline-block;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn-outline:hover::before {
  transform: translateY(0);
}

.btn-outline:hover {
  color: var(--primary-teal);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 60px;
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 24px;
  color: var(--text-dark);
  font-weight: 800;
  letter-spacing: -0.8px;
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 24px;
  background: rgba(93, 189, 199, 0.04);
  border-radius: 16px;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.contact-item:hover {
  background: rgba(93, 189, 199, 0.08);
  transform: translateX(10px);
  border-color: rgba(93, 189, 199, 0.2);
}

.contact-icon {
  width: 52px;
  height: 52px;
  color: var(--primary-teal);
  flex-shrink: 0;
  padding: 14px;
  background: linear-gradient(135deg, rgba(93, 189, 199, 0.15) 0%, rgba(93, 189, 199, 0.08) 100%);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.15) rotate(10deg);
  background: linear-gradient(135deg, rgba(93, 189, 199, 0.25) 0%, rgba(93, 189, 199, 0.15) 100%);
}

.contact-item p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
  font-size: 15px;
}

.contact-item strong {
  display: block;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 16px;
}

.contact-item a {
  color: var(--primary-teal);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

@media (max-width: 992px) {
  .services-grid,
  .quote-grid,
  .benefits-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-grid .footer-col:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
    z-index: 1002;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 998;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    gap: 0;
    border-top: 2px solid rgba(93, 189, 199, 0.1);
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(93, 189, 199, 0.1);
  }

  .nav-menu > li > a {
    display: block;
    padding: 16px 0;
  }

  .btn-quote {
    width: 100%;
    text-align: center;
    margin-top: 12px;
    padding: 14px;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text p {
    font-size: 17px;
  }

  .page-header {
    padding: 120px 0 70px;
  }

  .page-header h1 {
    font-size: 36px;
  }

  .commitment-content h2,
  .section-title {
    font-size: 32px;
  }

  .quote-form-container {
    padding: 36px 28px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

  .cta-simple-content h2 {
    font-size: 32px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-white,
  .btn-outline {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .floating-shapes .shape {
    display: none;
  }
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 0;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(125, 211, 220, 0.15) 0%, rgba(93, 189, 199, 0.1) 100%);
  animation: floatShape 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  left: 80%;
  animation-delay: 3s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 10%;
  animation-delay: 6s;
}

.shape-4 {
  width: 250px;
  height: 250px;
  bottom: 10%;
  left: 40%;
  animation-delay: 9s;
}

@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
    opacity: 0.5;
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
    opacity: 0.4;
  }
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeInUp 1s ease-out;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-secondary-outline {
  display: inline-block;
  padding: 18px 48px;
  border: 2px solid var(--white);
  border-radius: 50px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.4s ease;
  font-size: 17px;
  background: transparent;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-secondary-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: -1;
}

.btn-secondary-outline:hover::before {
  transform: translateY(0);
}

.btn-secondary-outline:hover {
  color: var(--primary-teal);
  border-color: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}


.stats-section {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-card {
  text-align: center;
  padding: 36px 24px;
  background: linear-gradient(135deg, rgba(93, 189, 199, 0.05) 0%, transparent 100%);
  border-radius: 16px;
  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.stat-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(93, 189, 199, 0.08) 0%, transparent 100%);
  box-shadow: 0 10px 30px rgba(93, 189, 199, 0.15);
  border-color: rgba(93, 189, 199, 0.2);
}

.stat-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(93, 189, 199, 0.3);
  transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 8px 25px rgba(93, 189, 199, 0.4);
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-number::after {
  content: '+';
  margin-left: 4px;
}

.stat-label {
  font-size: 15px;
  color: var(--text-light);
  font-weight: 600;
}

.features-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #F9FAFB 100%);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(93, 189, 199, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: var(--white);
  padding: 36px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(93, 189, 199, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(93, 189, 199, 0.15);
  border-color: var(--primary-teal);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(93, 189, 199, 0.1) 0%, rgba(125, 211, 220, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
  color: var(--white);
  transform: scale(1.1) rotate(-10deg);
  box-shadow: 0 8px 25px rgba(93, 189, 199, 0.3);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.testimonials-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(93, 189, 199, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(93, 189, 199, 0.04) 0%, transparent 100%);
  padding: 36px;
  border-radius: 20px;
  transition: all 0.4s ease;
  border: 1px solid rgba(93, 189, 199, 0.1);
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(93, 189, 199, 0.15);
  background: linear-gradient(135deg, rgba(93, 189, 199, 0.08) 0%, transparent 100%);
  border-color: var(--primary-teal);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: #FFB800;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 24px;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  font-size: 15px;
}

.author-title {
  font-size: 13px;
  color: var(--text-light);
}

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.process-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #F9FAFB 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(93, 189, 199, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: 20px;
  transition: all 0.4s ease;
  border: 1px solid rgba(93, 189, 199, 0.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(93, 189, 199, 0.15);
  border-color: var(--primary-teal);
}

.process-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 36px;
  font-weight: 900;
  box-shadow: 0 8px 25px rgba(93, 189, 199, 0.3);
  transition: all 0.4s ease;
}

.process-step:hover .process-number {
  transform: scale(1.1) rotate(10deg);
  box-shadow: 0 12px 35px rgba(93, 189, 199, 0.4);
}

.process-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text-dark);
  letter-spacing: -0.3px;
}

.process-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(93, 189, 199, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: linear-gradient(135deg, rgba(93, 189, 199, 0.04) 0%, transparent 100%);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(93, 189, 199, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(93, 189, 199, 0.1);
  border-color: var(--primary-teal);
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-teal);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--primary-teal);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 15px;
}

@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .top-banner {
    display: none;
  }

  .header {
    top: 0;
  }

  .hero {
    margin-top: 64px;
  }

  .page-header {
    margin-top: 64px;
  }

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

  .btn-primary,
  .btn-secondary-outline {
    width: 100%;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stat-number {
    font-size: 40px;
  }

  .features-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .process-number {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }
}
