@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');
@import url('https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css');

:root {
  --deep-teal: #0B3D3E;
  --adriatic: #0E6E6E;
  --coral: #FF6B4A;
  --coral-dark: #E5502F;
  --stone-gold: #D9A94E;
  --sea-mist: #E8F3F1;
  --ink: #0A1F20;
  --cloud: #F7FAF9;
  --slate: #4A6567;
  --shadow-teal: rgba(11, 61, 62, 0.15);
  --gradient-hero: linear-gradient(135deg, #0B3D3E 0%, #0E6E6E 55%, #147A79 100%);
  --gradient-coral: linear-gradient(120deg, #FF6B4A 0%, #E5502F 100%);
  --gradient-gold: linear-gradient(120deg, #D9A94E 0%, #C68F2E 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background-color: var(--cloud);
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--sea-mist);
}
::-webkit-scrollbar-thumb {
  background: var(--adriatic);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--deep-teal);
}

/* HEADER */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8e7;
  box-shadow: 0 2px 12px var(--shadow-teal);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link {
  position: relative;
  color: var(--slate);
  font-weight: 500;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--gradient-coral);
  transition: width 0.3s ease;
}
.nav-link:hover {
  color: var(--deep-teal);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link.active {
  color: var(--deep-teal);
  font-weight: 600;
}

/* MOBILE MENU */
.mobile-menu {
  background-color: #ffffff;
  border-top: 1px solid #e2e8e7;
}
.mobile-menu a {
  color: var(--ink);
  border-bottom: 1px solid #eef2f1;
}
.mobile-menu a:hover {
  background-color: var(--sea-mist);
  color: var(--deep-teal);
}
.mobile-menu-toggle {
  color: var(--deep-teal);
}

/* HERO */
.hero-gradient {
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}
.hero-gradient::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 107, 74, 0.12);
  top: -150px;
  right: -100px;
}
.hero-gradient::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(217, 169, 78, 0.08);
  bottom: -120px;
  left: -80px;
}

/* BUTTONS */
.btn-primary {
  background: var(--gradient-coral);
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(255, 107, 74, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 74, 0.45);
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
}
.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

.btn-dark {
  background: var(--deep-teal);
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn-dark:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--ink);
  font-weight: 700;
  padding: 0.7rem 1.6rem;
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 14px rgba(217, 169, 78, 0.3);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(217, 169, 78, 0.4);
}

/* CARDS */
.card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 2rem;
  border: 1px solid #eef2f1;
  box-shadow: 0 4px 16px var(--shadow-teal);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(11, 61, 62, 0.18);
}

.card-flat {
  background-color: var(--sea-mist);
  border-radius: 14px;
  padding: 2rem;
  border-left: 4px solid var(--coral);
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: var(--gradient-hero);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 16px rgba(11, 61, 62, 0.25);
}

.icon-box-coral {
  background: var(--gradient-coral);
  box-shadow: 0 6px 16px rgba(255, 107, 74, 0.3);
}

.icon-box-gold {
  background: var(--gradient-gold);
  color: var(--ink);
  box-shadow: 0 6px 16px rgba(217, 169, 78, 0.3);
}

/* ACCORDION */
.accordion-item {
  border-bottom: 1px solid #e2e8e7;
}
.accordion-header {
  cursor: pointer;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--deep-teal);
  transition: color 0.2s ease;
}
.accordion-header:hover {
  color: var(--coral);
}
.accordion-header .accordion-icon {
  transition: transform 0.3s ease;
}
.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}
.accordion-content {
  display: none;
  padding-bottom: 1.25rem;
  color: var(--slate);
  line-height: 1.7;
}

/* FORMS */
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid #dce6e5;
  border-radius: 10px;
  background-color: #ffffff;
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--adriatic);
  box-shadow: 0 0 0 4px rgba(14, 110, 110, 0.12);
}
.form-label {
  font-weight: 600;
  color: var(--deep-teal);
  margin-bottom: 0.4rem;
  display: block;
  font-size: 0.9rem;
}
.form-group {
  margin-bottom: 1.4rem;
  position: relative;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: #9aacab;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--deep-teal);
  color: #ffffff;
  padding: 1.25rem 1.5rem;
  z-index: 1000;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.2);
}
.cookie-banner a {
  color: #8FD9D6;
  text-decoration: underline;
}
.cookie-banner a:hover {
  color: #ffffff;
}
.cookie-btn-accept {
  background: var(--gradient-coral);
  color: #ffffff;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s ease;
}
.cookie-btn-accept:hover {
  transform: translateY(-2px);
}

/* SECTION HELPERS */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: rgba(255, 107, 74, 0.12);
  color: var(--coral-dark);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-dark {
  background-color: var(--deep-teal);
  color: #ffffff;
}
.section-dark p {
  color: #C9DEDD;
}
.section-dark h2, .section-dark h3 {
  color: #ffffff;
}

.divider-wave {
  height: 60px;
  background: var(--cloud);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 75% 60%, 50% 0, 25% 60%, 0 0);
}

/* STATS */
.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  background: var(--gradient-coral);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* SPINNER */
.loader {
  width: 46px;
  height: 46px;
  border: 5px solid var(--sea-mist);
  border-top-color: var(--coral);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* FADE-IN */
.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* BADGES / TAGS */
.tag-pill {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: var(--sea-mist);
  color: var(--deep-teal);
}

/* TABLE */
table.pricing-table th {
  background-color: var(--deep-teal);
  color: #ffffff;
  padding: 1rem;
}
table.pricing-table td {
  padding: 1rem;
  border-bottom: 1px solid #e2e8e7;
  color: var(--ink);
}

/* FOOTER */
.site-footer {
  background-color: var(--ink);
  color: #C9DEDD;
}
.site-footer h3, .site-footer h4 {
  color: #ffffff;
}
.site-footer a {
  color: #C9DEDD;
  transition: color 0.2s ease;
}
.site-footer a:hover {
  color: var(--coral);
}
.footer-social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.footer-social:hover {
  background: var(--gradient-coral);
  transform: translateY(-3px);
}

/* MISC */
.highlight-underline {
  position: relative;
  display: inline;
}
.highlight-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 8px;
  background-color: rgba(217, 169, 78, 0.35);
  z-index: -1;
}

.timeline-line {
  border-left: 3px solid var(--adriatic);
}
.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gradient-coral);
  box-shadow: 0 0 0 4px var(--sea-mist);
}