:root {
  --ocean-blue: #002B49;
  --ocean-blue-dark: #001D32;
  --teal-accent: #00A8A8;
  --teal-dark: #008B8B;
  --white: #ffffff;
  --bg-light: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
  --transition: all 0.2s ease-in-out;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

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

img.lazy {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

img:not(.lazy) {
  opacity: 1;
}

/* Scroll Progress Bar */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: var(--teal-accent);
  z-index: 9999;
  transition: width 0.05s ease-out;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--ocean-blue);
  border-bottom: 4px solid var(--teal-accent);
  transition: var(--transition);
  z-index: 1000;
  padding: 0 5%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
}

/* .logo { font-size: 1.25rem; font-weight: 900; letter-spacing: 0.05em; color: var(--white); text-transform: uppercase; display: flex; align-items: center; gap: 12px; }
.logo span { color: var(--teal-accent); margin-left: 4px; } */
/* .logo::before { content: 'G'; display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: var(--teal-accent); color: var(--white); font-weight: 900; font-size: 1.25rem; border-radius: 2px; } */
.header-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--teal-accent);
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  border-radius: 2px;
  text-transform: uppercase;
}

.lang-switcher option {
  color: var(--text-main);
}

/* Nav */
nav {
  height: 100%;
}

nav ul {
  display: flex;
  gap: 24px;
  height: 100%;
  align-items: center;
}

nav a {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: #cbd5e1;
  transition: var(--transition);
  padding: 5px 0;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a.active {
  color: var(--white);
  border-bottom-color: var(--teal-accent);
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: var(--white);
  transition: var(--transition);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes imageFadeIn {
  from {
    opacity: 0;
    transform: scale(1.05);
  }

  to {
    opacity: 0.2;
    transform: scale(1);
  }
}

/* Hero */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding: 0 5%;
  background-color: var(--ocean-blue-dark);
  color: var(--white);
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.hero img.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
  animation: imageFadeIn 2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-content::before {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--teal-accent);
  margin-bottom: 16px;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s forwards;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 24px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.4s forwards;
}

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 40px;
  color: #e2e8f0;
  border-left: 2px solid #64748b;
  padding-left: 16px;
  max-width: 600px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards;
}

.hero-content .btn {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.8s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: var(--teal-accent);
  color: var(--white);
  font-weight: 900;
  border-radius: 0;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.6875rem;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

/* Pages Header */
.page-header {
  padding: 160px 5% 80px;
  background: var(--ocean-blue-dark);
  color: var(--white);
  text-align: left;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.page-header::before {
  content: '';
  position: absolute;
  top: 140px;
  left: 5%;
  width: 48px;
  height: 4px;
  background: var(--teal-accent);
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.page-header p {
  font-size: 1.125rem;
  color: #cbd5e1;
  max-width: 700px;
  border-left: 2px solid #64748b;
  padding-left: 16px;
}

/* Sections & Grid */
.section {
  padding: 100px 5%;
  border-bottom: 1px solid var(--border-color);
}

.section-title {
  text-align: left;
  font-size: 1.25rem;
  margin-bottom: 48px;
  color: var(--ocean-blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-title::before {
  content: '';
  display: block;
  width: 32px;
  height: 4px;
  background: var(--teal-accent);
}

.section-title::after {
  display: none;
}

.bg-light {
  background-color: var(--bg-light);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0;
  border: 1px solid var(--border-color);
  border-bottom: none;
  border-right: none;
}

.card {
  background: var(--white);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.card:hover {
  background: var(--bg-light);
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
  filter: grayscale(20%);
  transition: var(--transition);
}

.card:hover img {
  filter: grayscale(0%);
}

.card-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-start;
}

.card-content h3 {
  margin-bottom: 12px;
  color: var(--ocean-blue);
  font-size: 0.875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-content p {
  color: var(--text-muted);
  font-size: 0.8125rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.card-content ul {
  margin-bottom: 24px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  width: 100%;
}

.card-content ul li {
  border-bottom: 1px solid var(--border-color);
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-content ul li:last-child {
  border-bottom: none;
}

.card-content ul li strong {
  color: var(--ocean-blue);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.625rem;
  letter-spacing: 0.05em;
}

.card-content .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Stats Section */
.stats-section {
  background: var(--ocean-blue);
  color: var(--white);
  border-bottom: 4px solid var(--teal-accent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.stat-number span {
  color: var(--teal-accent);
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #cbd5e1;
}

/* FAQ Accordion */
.faq-section {
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--teal-accent);
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 900;
  color: var(--ocean-blue);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-item.active .faq-question {
  background: var(--ocean-blue);
  color: var(--white);
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--teal-accent);
}

.faq-answer {
  max-height: 0;
  padding: 0 24px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 24px;
  opacity: 1;
  border-top: 1px solid var(--border-color);
}

/* Compare Feature */
.compare-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ocean-blue);
  cursor: pointer;
  margin-top: 16px;
  user-select: none;
}

.compare-label input {
  display: none;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-color);
  display: inline-block;
  position: relative;
  transition: var(--transition);
  border-radius: 2px;
}

.compare-label input:checked~.checkmark {
  background-color: var(--teal-accent);
  border-color: var(--teal-accent);
}

.compare-label input:checked~.checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.compare-widget {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 998;
}

.compare-widget.show {
  transform: translateX(-50%) translateY(0);
}

.compare-widget .btn {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  padding: 16px 32px;
  font-size: 0.875rem;
  border-radius: 4px;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 29, 50, 0.8);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 5%;
}

.modal.open {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: var(--white);
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
  overflow-y: auto;
  border-top: 4px solid var(--teal-accent);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-light);
}

.modal-header h2 {
  color: var(--ocean-blue);
  font-size: 1.25rem;
  text-transform: uppercase;
  font-weight: 900;
}

.close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  transition: var(--transition);
}

.close-btn:hover {
  color: var(--ocean-blue);
}

.modal-body {
  padding: 24px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.compare-table th,
.compare-table td {
  padding: 16px;
  border: 1px solid var(--border-color);
  text-align: left;
}

.compare-table th {
  background: var(--ocean-blue);
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  width: 25%;
}

.compare-table th:first-child {
  background: var(--bg-light);
  color: var(--ocean-blue);
}

.compare-table td {
  color: var(--text-muted);
}

.compare-table tr:hover td {
  background: var(--bg-light);
}

.compare-table strong {
  color: var(--ocean-blue);
  font-weight: 700;
}

/* Map/Locations */
.map-container {
  position: relative;
  width: 100%;
  height: 500px;
  background: var(--ocean-blue-dark);
  overflow: hidden;
  border: 1px solid var(--border-color);
  display: block;
  z-index: 1;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: grayscale(100%) contrast(1.2);
}

/* Floating Widget */
.floating-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-widget a {
  width: 48px;
  height: 48px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.floating-widget a:hover {
  transform: scale(1.05);
}

.whatsapp {
  background: var(--teal-accent);
}

.telegram {
  background: #0088CC;
}

.floating-widget svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* Footer */
footer {
  background: var(--ocean-blue-dark);
  color: var(--white);
  padding: 64px 5% 32px;
  border-top: 4px solid var(--teal-accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h4 {
  color: #94a3b8;
  margin-bottom: 20px;
  font-size: 0.625rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-col p,
.footer-col li {
  margin-bottom: 8px;
  color: #cbd5e1;
  font-size: 0.75rem;
  line-height: 1.6;
  font-weight: 500;
}

.footer-col ul li a {
  transition: var(--transition);
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
}

.footer-col ul li a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-col strong {
  color: #94a3b8;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid #1e293b;
  color: #64748b;
  font-size: 0.6875rem;
  font-weight: 500;
}

/* Content Layouts */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 24px;
  border-left: 2px solid var(--border-color);
}

.timeline::after {
  display: none;
}

.timeline-item {
  padding: 0 0 48px 32px;
  position: relative;
  background: inherit;
  width: 100%;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd),
.timeline-item:nth-child(even) {
  left: 0;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  left: -7px;
  background: var(--teal-accent);
  top: 4px;
  border-radius: 0;
  z-index: 1;
  outline: 4px solid var(--white);
}

.timeline-item:nth-child(even)::after {
  left: -7px;
}

.timeline-content {
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.timeline-content h3 {
  color: var(--ocean-blue);
  margin-bottom: 12px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
}

.timeline-date {
  color: var(--text-muted);
  font-size: 0.6875rem;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: block;
}

.content-block {
  max-width: 800px;
  margin: 0 auto;
}

.content-block h2 {
  color: var(--ocean-blue);
  margin: 48px 0 24px;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.content-block h3 {
  color: var(--ocean-blue);
  margin: 32px 0 16px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.content-block p {
  margin-bottom: 24px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.content-block ul {
  margin-bottom: 24px;
  padding-left: 0;
  list-style-type: none;
  color: var(--text-muted);
  border-top: 1px solid var(--border-color);
  font-size: 0.9375rem;
}

.content-block ul li {
  margin-bottom: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.content-block ul li strong {
  color: var(--ocean-blue);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

/* Partners */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  border: 1px solid var(--border-color);
  border-bottom: none;
  border-right: none;
}

.partner-logo {
  width: 100%;
  height: 160px;
  object-fit: contain;
  padding: 32px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--white);
}

.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  background: var(--bg-light);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  nav ul {
    position: fixed;
    top: 80px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--ocean-blue);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 32px 5%;
    transition: var(--transition);
  }

  nav ul.open {
    right: 0;
  }

  nav a {
    font-size: 1.25rem;
    border-bottom: none;
  }

  header {
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
  }

  .header-controls {
    order: 2;
    margin-left: auto;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

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

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

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

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    align-items: flex-start;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 5%;
  }

  .cookie-content {
    margin-right: 0;
  }

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

  .cookie-buttons .btn {
    width: 100%;
  }
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--ocean-blue-dark);
  color: var(--white);
  padding: 24px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-top: 2px solid var(--teal-accent);
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  flex: 1;
  max-width: 800px;
  margin-right: 48px;
}

.cookie-text {
  font-size: 0.8125rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--teal-accent);
  color: var(--teal-accent);
}

.btn-outline:hover {
  background: rgba(0, 168, 168, 0.1);
  color: var(--teal-accent);
}