@charset "UTF-8";

:root {
  --ocean-deep: #0D325A; /* Darker for better contrast */
  --ocean: #164A82;
  --ocean-light: #4FA8D8;
  --leaf-dark: #1E5C22;
  --leaf: #2E7D32;
  --leaf-light: #4CAF50;
  --sun: #FFC94A;
  --cream: #F4F7FB;
  --white: #FFFFFF;
  --ink: #0F2A44;
  --muted: #5A7691;
  --line: rgba(22, 74, 130, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Fredoka', sans-serif; font-weight: 600; line-height: 1.15; }

.script { font-family: 'Caveat', cursive; font-weight: 700; }

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

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

/* Animations & Reveals */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Wave divider */
.wave { position: relative; height: 80px; overflow: hidden; margin-top: -1px; z-index: 1;}
.wave svg { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; }

section { padding: 110px 0; position: relative; }
@media (max-width: 768px) { section { padding: 70px 0; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: linear-gradient(135deg, var(--leaf-light) 0%, var(--leaf) 100%);
  color: #fff; font-weight: 700; font-size: 16px;
  padding: 18px 36px; border-radius: 999px; border: none; cursor: pointer;
  box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg); transition: all 0.6s ease;
}
.btn:hover::after { left: 150%; }
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(76, 175, 80, 0.4);
}
.btn-row { margin-top: 48px; text-align: center; }

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(13, 50, 90, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 12px 0;
}
.header-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.header-logo { height: 64px; width: auto; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2)); transition: all 0.3s ease; }
.site-header.scrolled .header-logo { height: 48px; }
.header-nav { display: flex; gap: 24px; align-items: center; }
.nav-link { color: #fff; font-weight: 500; font-size: 15px; text-decoration: none; transition: color 0.3s; opacity: 0.8; }
.nav-link:hover, .nav-link.active { opacity: 1; color: var(--sun); }
.header-right { display: flex; align-items: center; gap: 20px; }
.header-btn { padding: 12px 24px; font-size: 15px; }

/* Mobile Menu Button */
.menu-toggle { display: none; background: none; border: none; color: #fff; cursor: pointer; }

@media (max-width: 900px) {
  .header-nav { 
    position: absolute; top: 100%; left: 0; width: 100%; background: rgba(13, 50, 90, 0.98);
    flex-direction: column; padding: 20px; gap: 15px; display: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  }
  .header-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .header-logo { height: 40px; }
  .site-header.scrolled .header-logo { height: 36px; }
  .header-btn { display: none; }
}

/* HERO */
.hero {
  background: linear-gradient(145deg, var(--ocean-deep) 0%, var(--ocean) 100%);
  color: #fff;
  padding: 120px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(79,168,216,0.15) 0%, rgba(0,0,0,0) 70%);
  top: -200px; left: -100px; border-radius: 50%; z-index: 1;
}
.hero::after {
  content: ''; position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,201,74,0.1) 0%, rgba(0,0,0,0) 70%);
  bottom: -150px; right: -100px; border-radius: 50%; z-index: 1;
}
.site-logo {
  max-width: 450px; width: 90%; margin: 0 auto 36px; display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
  animation: float 6s ease-in-out infinite, fadeUpHero 1s ease-out forwards;
}
@keyframes fadeUpHero {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.hero-inner { text-align: center; display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
.eyebrow {
  font-family: 'Inter', sans-serif; color: var(--sun);
  font-size: 14px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 800;
  margin-bottom: 24px;
  background: rgba(255, 201, 74, 0.15);
  padding: 8px 16px; border-radius: 999px; border: 1px solid rgba(255,201,74,0.3);
}
.hero h1 {
  font-size: clamp(34px, 6vw, 64px);
  max-width: 820px; margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero h1 .script { color: var(--sun); font-size: 1.25em; display: inline-block; transform: rotate(-2deg); margin: 0 6px; }
.hero-sub {
  font-size: 19px; color: #DCEBF8; max-width: 640px; margin-bottom: 44px; font-weight: 400;
}
.value-pills { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 20px; }
.pill {
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px; padding: 12px 24px; font-size: 15px; font-weight: 600;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; gap: 8px;
  transition: all 0.3s ease; cursor: pointer;
}
.pill:hover { background: rgba(255, 255, 255, 0.25); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.15); }

/* MODAL */
.modal-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(13, 50, 90, 0.85); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease; padding: 20px;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-content {
  background: var(--white); border-radius: 24px; padding: 40px;
  width: 100%; max-width: 600px; position: relative; text-align: left;
  transform: translateY(30px) scale(0.95); transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 25px 60px rgba(0,0,0,0.2); max-height: 90vh; overflow-y: auto;
}
.modal-overlay.active .modal-content { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(0,0,0,0.05); border: none; width: 36px; height: 36px;
  border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.3s; color: var(--ink); z-index: 10;
}
.modal-close:hover { background: rgba(0,0,0,0.1); }
.modal-video {
  width: 100%; aspect-ratio: 16/9; border-radius: 16px; object-fit: cover;
  margin-bottom: 24px; background: var(--ocean-deep); border: 1px solid var(--line);
}
.modal-title { font-family: 'Fredoka', sans-serif; font-size: 28px; color: var(--ocean-deep); margin-bottom: 16px; }
.modal-desc { font-size: 16px; color: var(--muted); line-height: 1.6; }

/* PROOF */
.proof-intro { max-width: 680px; margin: 0 auto 40px; text-align: center; }
.proof-intro h2 { font-size: clamp(30px, 5vw, 46px); color: var(--ocean-deep); margin-bottom: 18px; }
.proof-intro p { font-size: 18px; color: var(--muted); }

.video-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px; margin: 50px 0;
}
.video-card {
  aspect-ratio: 9/16; background: var(--ocean-deep); border-radius: 20px;
  position: relative; overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(22, 74, 130, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(22, 74, 130, 0.25);
}
.video-card video, .video-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.video-card:hover video, .video-card:hover img { transform: scale(1.03); }
.video-card .tag {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  background: rgba(15, 42, 68, 0.7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: #fff; font-weight: 700; font-size: 15px;
  padding: 14px; text-align: center; border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
}

.about-lines {
  background: var(--white); border: 1px solid var(--line); border-radius: 24px;
  padding: 40px 48px; margin: 50px auto 0; max-width: 800px; text-align: center;
  box-shadow: 0 15px 35px rgba(22, 74, 130, 0.08);
  position: relative; overflow: hidden;
}
.about-lines::before {
  content: '"'; position: absolute; top: -10px; left: 20px; font-family: 'Fredoka', sans-serif;
  font-size: 120px; color: var(--ocean-light); opacity: 0.1; line-height: 1;
}
.about-lines p { font-size: 18px; color: var(--ink); margin-bottom: 16px; font-weight: 500; }
.about-lines p:last-child { margin-bottom: 0; color: var(--muted); font-weight: 400; }

/* PROCESS */
.process { background: var(--cream); }
.process h2 { font-size: clamp(30px, 5vw, 46px); color: var(--ocean-deep); margin-bottom: 18px; text-align: center; }
.process-intro { max-width: 600px; margin: 0 auto 60px; text-align: center; color: var(--muted); font-size: 18px; }

.process-steps { 
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
  gap: 28px; position: relative;
}
.step { 
  background: var(--white); border-radius: 20px; padding: 36px 28px; 
  border: 1px solid var(--line); transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.02);
  position: relative; z-index: 2;
}
.step:hover {
  background: var(--white); transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(22, 74, 130, 0.1);
  border-color: var(--ocean-light);
}
.step-num { 
  font-family: 'Fredoka', sans-serif; color: var(--white); font-size: 16px; font-weight: 700;
  background: var(--ocean); width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: 12px; margin-bottom: 20px;
  box-shadow: 0 8px 16px rgba(22, 74, 130, 0.2);
}
.step:nth-child(even) .step-num { background: var(--leaf); box-shadow: 0 8px 16px rgba(76, 175, 80, 0.2); }
.step h3 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 12px; color: var(--ocean-deep); }
.step p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* BENEFITS */
#benefits { background: var(--white); }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 50px; }
.benefit { 
  padding: 40px 32px; border-radius: 20px; background: var(--white); 
  border: 1px solid var(--line); box-shadow: 0 12px 30px rgba(22, 74, 130, 0.06);
  transition: all 0.3s ease;
}
.benefit:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(22, 74, 130, 0.12); }
.benefit .icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--ocean-light), var(--ocean));
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  color: #fff; font-size: 24px;
  box-shadow: 0 10px 20px rgba(79, 168, 216, 0.3);
}
.benefit:nth-child(2) .icon { background: linear-gradient(135deg, #FFD571, var(--sun)); box-shadow: 0 10px 20px rgba(255, 201, 74, 0.3); }
.benefit:nth-child(3) .icon { background: linear-gradient(135deg, var(--leaf-light), var(--leaf)); box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3); }
.benefit:nth-child(4) .icon { background: linear-gradient(135deg, #7C8EA1, #0F2A44); box-shadow: 0 10px 20px rgba(15, 42, 68, 0.3); }

.benefit h3 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 12px; color: var(--ocean-deep); }
.benefit p { font-size: 15.5px; color: var(--muted); }

/* FAQ */
.faq { 
  background: linear-gradient(145deg, var(--ocean-deep) 0%, #0F2A44 100%); 
  color: #fff; position: relative;
}

/* SERVICES */
.services-section { background: var(--white); padding: 110px 0; }
.services-header { text-align: center; margin-bottom: 60px; }
.services-header h2 { font-size: clamp(30px, 5vw, 46px); color: var(--ocean-deep); margin-bottom: 16px; }
.services-header p { font-size: 18px; color: var(--muted); max-width: 700px; margin: 0 auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;
}
.service-card {
  background: var(--cream); border-radius: 20px; padding: 40px 32px;
  border: 1px solid var(--line); transition: all 0.3s ease; position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-5px); background: var(--white);
  box-shadow: 0 20px 40px rgba(22, 74, 130, 0.1); border-color: var(--ocean-light);
}
.service-card .icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, var(--ocean-light), var(--ocean));
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  color: #fff; box-shadow: 0 10px 20px rgba(79, 168, 216, 0.3);
}
.service-card h3 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 14px; color: var(--ocean-deep); }
.service-card p { font-size: 15.5px; color: var(--muted); margin-bottom: 0; line-height:1.6; }

.faq::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1.5" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
}
.faq h2 { color: #fff; font-size: clamp(30px, 5vw, 46px); margin-bottom: 50px; text-align: center; }
.faq-container { max-width: 800px; margin: 0 auto; position: relative; z-index: 2;}

.faq-item {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; margin-bottom: 16px; overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item.active { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.faq-question {
  padding: 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 17px;
}
.faq-question .q-mark { color: var(--sun); margin-right: 12px; font-size: 20px; font-weight: 800; }
.faq-icon {
  width: 24px; height: 24px; position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute; background: var(--sun); transition: all 0.3s ease;
}
.faq-icon::before { top: 11px; left: 4px; width: 16px; height: 2px; }
.faq-icon::after { top: 4px; left: 11px; width: 2px; height: 16px; }
.faq-item.active .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}
.faq-item.active .faq-answer { max-height: 200px; transition: max-height 0.4s ease-in-out; }
.faq-answer-inner { padding: 0 24px 24px; color: #C6DCEE; font-size: 15.5px; line-height: 1.6; }

/* CONTACT */
#contact { background: var(--cream); position: relative; z-index: 2; overflow: hidden; }
.contact-wrapper { display: flex; align-items: center; justify-content: center; gap: 50px; }
.contact-side-logo { display: none; width: 180px; filter: drop-shadow(0 15px 30px rgba(0,0,0,0.08)); animation: float 6s ease-in-out infinite; }
@media (min-width: 1024px) { .contact-side-logo { display: block; } }
.contact-box {
  background: var(--white); border-radius: 24px; padding: 50px; width: 100%; max-width: 600px; margin: 0 auto;
  box-shadow: 0 25px 60px rgba(22, 74, 130, 0.12); border: 1px solid var(--line);
  position: relative; flex-shrink: 0;
}
.contact-box::before {
  content: ''; position: absolute; top: -2px; left: 20px; right: 20px; height: 4px;
  background: linear-gradient(90deg, var(--ocean-light), var(--ocean), var(--leaf));
  border-radius: 4px 4px 0 0;
}
.contact-box h3 { color: var(--ocean-deep); font-size: 28px; margin-bottom: 8px; text-align: center;}
.contact-box .sub { color: var(--muted); font-size: 16px; margin-bottom: 32px; text-align: center;}

.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--ocean-deep); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; border: 2px solid var(--line); border-radius: 12px;
  padding: 16px; font-family: 'Inter', sans-serif; font-size: 15px; color: var(--ink);
  background: var(--cream); transition: all 0.3s ease;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { 
  outline: none; border-color: var(--ocean-light); background: var(--white);
  box-shadow: 0 0 0 4px rgba(79, 168, 216, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-group.checkbox-group { display: flex; align-items: center; gap: 12px; flex-direction: row; }
.form-group.checkbox-group input[type="checkbox"] { width: 20px; height: 20px; flex-shrink: 0; cursor: pointer; padding: 0; }
.form-group.checkbox-group label { margin-bottom: 0; font-weight: 500; cursor: pointer; }

.btn-submit { 
  width: 100%; justify-content: center; margin-top: 10px; font-size: 17px; padding: 20px;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-deep) 100%);
  box-shadow: 0 10px 25px rgba(22, 74, 130, 0.3);
}
.btn-submit:hover { box-shadow: 0 15px 35px rgba(22, 74, 130, 0.4); }

.social-links { margin-top: 24px; display: flex; justify-content: center; gap: 16px; }
.social-link { 
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: #fff;
  transition: all 0.3s ease;
}
.social-link:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }

footer { background: #081B2E; color: #8FB4D4; text-align: center; padding: 50px 0 40px; font-size: 14.5px; }
footer strong { color: #fff; }

/* Cookie Banner */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; width: 100%;
  background: var(--white); box-shadow: 0 -10px 30px rgba(0,0,0,0.1);
  padding: 20px; z-index: 9999; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { color: var(--ink); font-size: 14px; text-align: center; margin: 0; }
.cookie-banner .btn-group { display: flex; gap: 12px; }
.cookie-btn {
  padding: 10px 20px; border-radius: 999px; border: none; font-weight: 600; cursor: pointer;
  font-size: 14px; transition: all 0.3s ease;
}
.cookie-btn.accept { background: var(--leaf); color: #fff; }
.cookie-btn.refuse { background: var(--cream); color: var(--ink); border: 1px solid var(--line); }
.cookie-btn:hover { opacity: 0.9; transform: translateY(-2px); }
@media (min-width: 768px) {
  .cookie-banner { flex-direction: row; justify-content: space-between; padding: 20px 40px; }
  .cookie-banner p { text-align: left; }
}
