/* ================= RESET & BASE ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1CAAAC;
  --secondary: #0EA5E9;
  --dark: #0c4a6e;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --white: #ffffff;
  --black: #000000;
  
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: all 0.3s ease;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ================= CONTAINER ================= */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 14px 0 rgba(28, 170, 172, 0.3);
  font-size: 1.1vw;
}

.btn--primary:hover {
  background: #159a9c;
  box-shadow: 0 6px 20px 0 rgba(28, 170, 172, 0.4);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--gray-900);
  font-size: 1.1vw;

}

.btn--white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

.btn-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ================= SECTIONS ================= */
.section {
  padding: 80px 0;
}

.section__header {
  margin-top: -30px;
  text-align: center;
  margin-bottom: 64px;
}

.section__header--white {
  color: var(--white);
}

.section__header--white .section__title,
.section__header--white .section__subtitle {
  color: var(--white);
}

.section__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  background: rgba(28, 170, 172, 0.1);
  color: var(--primary);
  border-radius: 999px;
  margin-bottom: 16px;
}

.section__title {
  font-size: 23px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 24px;
}

.section__subtitle {
  font-size: 20px;
  color: var(--gray-600);
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .section__header {
    margin-bottom: 48px;
  }
  
  .section__title {
    font-size: 36px;
  }
  
  .section__subtitle {
    font-size: 18px;
  }
}

/* ================= UTILITIES ================= */
.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

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

.hidden {
  display: none !important;
}
.section__header h2{
  font-size: 1.3rem;
}