/* ============================================
   JETSKI imagen — desde jetski-image-section.html (scope #jetskiSection)
   ============================================ */

  #jetskiSection, #jetskiSection *, #jetskiSection *::before, #jetskiSection *::after { margin:0; padding:0; box-sizing:border-box; }

#jetskiSection {

  --black:    #000000;
  --deep:     #050a0f;
  --surface:  #0c1219;
  --surface2: #111a24;
  --azure:    #1278c8;
  --cyan:     #00b4d8;
  --aqua:     #48e6ff;
  --lime:     #c8f53d;
  --white:    #ffffff;
  --muted:    rgba(255,255,255,0.45);
  --sub:      rgba(255,255,255,0.65);
  --border:   rgba(255,255,255,0.08);
  --borderhi: rgba(255,255,255,0.16);
  --glass:    rgba(5,10,15,0.62);
  --font-d:   'Bebas Neue', sans-serif;
  --font-h:   'Syne', sans-serif;
  --font-b:   'DM Sans', sans-serif;
    background: var(--black);
    color: var(--white);
    font-family: var(--font-b);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

/* =========================================
   HERO — IMAGE SECTION
========================================= */
#jetskiSection .jk-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* The photo */
#jetskiSection .jk-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}

/* Overlay — left fade + bottom fade */
#jetskiSection .jk-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 55%, rgba(0,0,0,0.55) 100%),
    linear-gradient(to top,   rgba(0,0,0,0.85) 0%, transparent 50%);
  pointer-events: none;
}

/* Scanline texture */
#jetskiSection .jk-hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.04) 3px,
    rgba(0,0,0,0.04) 4px
  );
  pointer-events: none;
}

/* content layer */
#jetskiSection .jk-hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 60px 60px;
  min-height: 100vh;
}

/* ---- Eyebrow ---- */
#jetskiSection .jk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  animation: jetskiImgFadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s forwards;
}

#jetskiSection .jk-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--cyan);
  display: block;
}

/* ---- Headline ---- */
#jetskiSection .jk-headline {
  font-family: var(--font-d);
  font-size: clamp(64px, 9vw, 130px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
  max-width: 700px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(24px);
  animation: jetskiImgFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
}

#jetskiSection .jk-headline span {
  color: var(--cyan);
  display: block;
}

/* ---- Tagline ---- */
#jetskiSection .jk-tagline {
  font-family: var(--font-h);
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 400;
  color: var(--sub);
  max-width: 420px;
  line-height: 1.65;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(16px);
  animation: jetskiImgFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.4s forwards;
}

/* ---- CTA buttons ---- */
#jetskiSection .jk-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  animation: jetskiImgFadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.55s forwards;
}

#jetskiSection .jk-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(130deg, var(--azure) 0%, var(--cyan) 100%);
  color: var(--white);
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 28px rgba(0,180,216,0.35);
}

#jetskiSection .jk-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.2s;
}
#jetskiSection .jk-btn-primary:hover::before { opacity: 1; }
#jetskiSection .jk-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,180,216,0.5);
}

#jetskiSection .jk-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-family: var(--font-h);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  border: 1px solid var(--borderhi);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}
#jetskiSection .jk-btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.3);
}

/* ---- Floating stat cards (top-right) ---- */
#jetskiSection .jk-stat-cluster {
  position: absolute;
  top: 50%;
  right: 56px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 3;
}

#jetskiSection .jk-stat-card {
  width: 200px;
  padding: 18px 22px;
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--borderhi);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.55);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(30px);
}

#jetskiSection .jk-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--cyan), transparent);
  opacity: 0.7;
}

#jetskiSection .jk-stat-card:nth-child(1) { animation: jetskiImgSlideLeft 0.7s cubic-bezier(0.16,1,0.3,1) 0.5s forwards; }
#jetskiSection .jk-stat-card:nth-child(2) { animation: jetskiImgSlideLeft 0.7s cubic-bezier(0.16,1,0.3,1) 0.65s forwards; }
#jetskiSection .jk-stat-card:nth-child(3) { animation: jetskiImgSlideLeft 0.7s cubic-bezier(0.16,1,0.3,1) 0.8s forwards; }

#jetskiSection .jk-stat-icon {
  font-size: 20px;
  margin-bottom: 8px;
  display: block;
}

#jetskiSection .jk-stat-val {
  font-family: var(--font-d);
  font-size: 30px;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 3px;
}

#jetskiSection .jk-stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---- Price badge (bottom-right, always) ---- */
#jetskiSection .jk-price-badge {
  position: absolute;
  bottom: 40px;
  right: 56px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: rgba(5,10,15,0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0,180,216,0.35);
  border-radius: 12px;
  box-shadow:
    0 0 0 0 rgba(0,180,216,0.4),
    0 12px 40px rgba(0,0,0,0.6);
  animation: jetskiImgPulseBadge 2.4s ease-in-out infinite;
}

@keyframes jetskiImgPulseBadge {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,180,216,0.4), 0 12px 40px rgba(0,0,0,0.6); }
  50%      { box-shadow: 0 0 0 10px rgba(0,180,216,0), 0 16px 48px rgba(0,0,0,0.7); }
}

#jetskiSection .jk-price-badge::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 18px;
  border: 1px solid rgba(0,180,216,0.14);
  animation: jetskiImgRingPulse 2.4s ease-in-out infinite;
}

@keyframes jetskiImgRingPulse {
  0%  { transform: scale(1); opacity: 0.5; }
  100%{ transform: scale(1.15); opacity: 0; }
}

#jetskiSection .jk-pb-left {
  display: flex;
  flex-direction: column;
}

#jetskiSection .jk-pb-sup {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 2px;
}

#jetskiSection .jk-pb-price {
  font-family: var(--font-d);
  font-size: 42px;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.02em;
}

#jetskiSection .jk-pb-sub {
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}

#jetskiSection .jk-pb-divider {
  width: 1px;
  height: 44px;
  background: var(--borderhi);
}

#jetskiSection .jk-pb-right {
  font-size: 12px;
  font-weight: 500;
  color: var(--sub);
  line-height: 1.5;
}

#jetskiSection .jk-pb-right strong {
  display: block;
  color: var(--white);
  font-family: var(--font-h);
  font-size: 13px;
  margin-bottom: 2px;
}

/* =========================================
   COMMERCIAL SECTION BELOW
========================================= */
#jetskiSection .jk-commercial {
  position: relative;
  background: var(--black);
  padding: 100px 60px;
  overflow: hidden;
}

/* grid lines bg */
#jetskiSection .jk-commercial::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

#jetskiSection .jk-commercial::after {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,180,216,0.07) 0%, transparent 70%);
  pointer-events: none;
}

#jetskiSection .jk-com-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section title */
#jetskiSection .jk-com-header {
  text-align: center;
  margin-bottom: 72px;
}

#jetskiSection .jk-com-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(14px);
  transition: all 0.6s cubic-bezier(0.16,1,0.3,1);
}

#jetskiSection .jk-com-eyebrow.vis { opacity:1; transform:none; }

#jetskiSection .jk-com-title {
  font-family: var(--font-d);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.7s cubic-bezier(0.16,1,0.3,1) 0.1s;
}

#jetskiSection .jk-com-title.vis { opacity:1; transform:none; }

#jetskiSection .jk-com-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--sub);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(14px);
  transition: all 0.7s cubic-bezier(0.16,1,0.3,1) 0.2s;
}

#jetskiSection .jk-com-sub.vis { opacity:1; transform:none; }

/* ---- Feature cards grid ---- */
#jetskiSection .jk-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

#jetskiSection .jk-feat-card {
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1),
              border-color 0.3s ease, background 0.3s ease;
}

#jetskiSection .jk-feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

#jetskiSection .jk-feat-card:hover { border-color: rgba(0,180,216,0.3); background: var(--surface2); }
#jetskiSection .jk-feat-card:hover::before { opacity: 1; }

#jetskiSection .jk-feat-card.vis { opacity:1; transform:none; }

#jetskiSection .jk-feat-card:nth-child(1) { transition-delay: 0s; }
#jetskiSection .jk-feat-card:nth-child(2) { transition-delay: 0.08s; }
#jetskiSection .jk-feat-card:nth-child(3) { transition-delay: 0.16s; }
#jetskiSection .jk-feat-card:nth-child(4) { transition-delay: 0.24s; }
#jetskiSection .jk-feat-card:nth-child(5) { transition-delay: 0.32s; }
#jetskiSection .jk-feat-card:nth-child(6) { transition-delay: 0.40s; }

/* Glow corner */
#jetskiSection .jk-feat-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(0,180,216,0.1), transparent 70%);
  pointer-events: none;
  transition: opacity 0.3s;
  opacity: 0;
}

#jetskiSection .jk-feat-card:hover::after { opacity: 1; }

#jetskiSection .jk-feat-num {
  font-family: var(--font-d);
  font-size: 48px;
  letter-spacing: 0.02em;
  color: rgba(0,180,216,0.2);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.3s;
}

#jetskiSection .jk-feat-card:hover .jk-feat-num { color: rgba(0,180,216,0.45); }

#jetskiSection .jk-feat-icon-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

#jetskiSection .jk-feat-icon {
  font-size: 22px;
}

#jetskiSection .jk-feat-title {
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

#jetskiSection .jk-feat-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--sub);
  line-height: 1.7;
}

/* ---- Urgency strip ---- */
#jetskiSection .jk-urgency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: rgba(0,180,216,0.08);
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(14px);
  transition: all 0.7s cubic-bezier(0.16,1,0.3,1);
}

#jetskiSection .jk-urgency.vis { opacity:1; transform:none; }

#jetskiSection .jk-urgency-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: jetskiImgBlink 1.6s ease-in-out infinite;
}

@keyframes jetskiImgBlink {
  0%,100%{ opacity:1; } 50%{ opacity:0.3; }
}

/* ---- Big price CTA block ---- */
#jetskiSection .jk-cta-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.8s cubic-bezier(0.16,1,0.3,1);
}

#jetskiSection .jk-cta-block.vis { opacity:1; transform:none; }

#jetskiSection .jk-cta-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--cyan), var(--azure), transparent);
}

#jetskiSection .jk-cta-left {
  padding: 56px 52px;
  position: relative;
  background: linear-gradient(135deg, rgba(10,74,122,0.35) 0%, transparent 60%);
}

#jetskiSection .jk-cta-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(0,180,216,0.1) 0%, transparent 65%);
  pointer-events: none;
}

#jetskiSection .jk-cta-kicker {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

#jetskiSection .jk-cta-heading {
  font-family: var(--font-d);
  font-size: clamp(40px, 4.5vw, 62px);
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 18px;
}

#jetskiSection .jk-cta-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--sub);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 360px;
}

#jetskiSection .jk-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

#jetskiSection .jk-cta-right {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border-left: 1px solid var(--border);
  position: relative;
}

#jetskiSection .jk-cta-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 50%, rgba(0,180,216,0.06) 0%, transparent 65%);
  pointer-events: none;
}

#jetskiSection .jk-price-display {
  margin-bottom: 32px;
}

#jetskiSection .jk-pd-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

#jetskiSection .jk-pd-amount {
  font-family: var(--font-d);
  font-size: clamp(72px, 9vw, 110px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  position: relative;
  animation: jetskiImgPriceGlow 3s ease-in-out infinite;
}

@keyframes jetskiImgPriceGlow {
  0%,100%{ text-shadow: 0 0 0 transparent; }
  50%    { text-shadow: 0 0 40px rgba(0,180,216,0.35); }
}

#jetskiSection .jk-pd-amount sup {
  font-family: var(--font-h);
  font-size: 28px;
  font-weight: 600;
  vertical-align: super;
  line-height: 1;
  color: var(--cyan);
}

#jetskiSection .jk-pd-duration {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* Includes list */
#jetskiSection .jk-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#jetskiSection .jk-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 400;
  color: var(--sub);
}

#jetskiSection .jk-includes li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(0,180,216,0.15);
  border: 1px solid rgba(0,180,216,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%2300b4d8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* =========================================
   KEYFRAMES
========================================= */
@keyframes jetskiImgFadeUp {
  from { opacity:0; transform:translateY(var(--ty,20px)); }
  to   { opacity:1; transform:translateY(0); }
}

@keyframes jetskiImgSlideLeft {
  from { opacity:0; transform:translateX(30px); }
  to   { opacity:1; transform:translateX(0); }
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  #jetskiSection .jk-stat-cluster { right: 28px; }
  #jetskiSection .jk-hero-content { padding: 80px 32px 48px; }
  #jetskiSection .jk-commercial { padding: 72px 32px; }
  #jetskiSection .jk-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  #jetskiSection .jk-hero-content { padding: 80px 24px 160px; }
  #jetskiSection .jk-stat-cluster { display: none; }

  #jetskiSection .jk-price-badge {
    bottom: 24px;
    right: 16px;
    gap: 10px;
    padding: 12px 16px;
  }
  #jetskiSection .jk-pb-price { font-size: 30px; }
  #jetskiSection .jk-pb-right { display: none; }
  #jetskiSection .jk-pb-divider { display: none; }

  #jetskiSection .jk-commercial { padding: 60px 20px; }
  #jetskiSection .jk-features { grid-template-columns: 1fr; gap: 12px; }

  #jetskiSection .jk-cta-block { grid-template-columns: 1fr; }
  #jetskiSection .jk-cta-left { padding: 36px 28px; }
  #jetskiSection .jk-cta-right {
    padding: 36px 28px;
    border-left: none;
    border-top: 1px solid var(--border);
  }
  #jetskiSection .jk-pd-amount { font-size: 72px; }
  #jetskiSection .jk-cta-actions { flex-direction: column; }
  #jetskiSection .jk-btn-primary, #jetskiSection .jk-btn-ghost { justify-content: center; }

  #jetskiSection .jk-headline { font-size: 58px; }
}
