:root {
  --navy: #07263a;
  --blue: #135e7d;
  --teal: #2a9d8f;
  --sand: #f5efe7;
  --text: #17313f;
  --muted: #5f7180;
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(7, 38, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
   background: url("images/sup-board-experience-valencia-coast.png") center/cover no-repeat;
}

.page-header {
  padding-top: 6rem;
}

.page-main {
  padding-bottom: 2rem;
}

.page-hero {
  padding: 3rem 0 2rem;
  background: linear-gradient(135deg, rgba(7, 38, 58, 0.96), rgba(19, 94, 125, 0.92));
  color: var(--white);
}

.page-hero h1 {
  margin-bottom: 0.8rem;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.3rem;
  margin: 0 auto;
  width: min(1160px, calc(100% - 1rem));
  background: #ffffff;
  border: 1px solid rgba(7, 38, 58, 0.08);
  border-radius: 999px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img,
.footer-brand img {
  height: 58px;
  width: auto;
  display: block;
  background: transparent;
  border-radius: 18px;
  padding: 0.15rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links {
  gap: 0.35rem;
}

.nav-links a {
  color: #0f2430;
  font-weight: 700;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(19, 94, 125, 0.08);
  color: var(--blue);
  transform: translateY(-1px);
}

.nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7em;
  line-height: 1;
  padding: 0.5rem 0.6rem;
  margin-left: 0.1rem;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.nav-item:hover .nav-caret,
.nav-item:focus-within .nav-caret {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 260px;
  background: #ffffff;
  border: 1px solid rgba(7, 38, 58, 0.08);
  border-radius: 1.2rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
  padding: 0.6rem;
  display: grid;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 1001;
}

.nav-item:hover .nav-dropdown-menu,
.nav-item:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.55rem 0.8rem;
  border-radius: 0.8rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: #0f2430;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: rgba(19, 94, 125, 0.08);
  color: var(--blue);
}

.nav-dropdown-all {
  margin-top: 0.2rem;
  padding-top: 0.6rem !important;
  border-top: 1px solid rgba(7, 38, 58, 0.08);
  color: var(--teal) !important;
}

@media (max-width: 640px) {
  /* Hover doesn't reliably mean "open" on touch screens — the checkbox below
     is the only thing that opens/closes the menu on mobile. */
  .nav-item:hover .nav-dropdown-menu,
  .nav-item:focus-within .nav-dropdown-menu {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    min-width: 0;
    max-height: 0;
    padding: 0 0 0 0.8rem;
    overflow: hidden;
    transition: max-height 0.25s ease, opacity 0.2s ease;
  }

  .nav-dropdown-checkbox:checked ~ .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 20rem;
    padding: 0.4rem 0 0.4rem 0.8rem;
    overflow: visible;
  }

  .nav-dropdown-checkbox:checked ~ .nav-caret {
    transform: rotate(180deg);
  }

  .nav-item {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0 5rem;
}

.eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.7rem;
}

.hero .eyebrow {
  color: #7fd0c2;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

:root {
  --heading-h2: clamp(2rem, 3vw, 2.6rem);
  --heading-h1: clamp(2.5rem, 3.75vw, 3.25rem);
}

h2 {
  font-size: var(--heading-h2) !important;
}

h1 {
  font-size: var(--heading-h1) !important;
  margin: 0 0 1rem;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero-text {
  font-size: 1.05rem;
  color: #f5f7fb;
  max-width: 680px;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.28);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 25px rgba(42, 157, 143, 0.25);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.hero-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1.5rem;
  border-radius: 1.3rem;
  backdrop-filter: blur(12px);
}

.hero-card ul {
  padding-left: 1rem;
  margin-bottom: 0;
}

.trust-section {
  padding: 3.5rem 0 0;
  background: #f7fbfc;
}

.trust-card {
  background: #ffffff;
  border: 1px solid rgba(21, 154, 156, 0.16);
  box-shadow: 0 24px 48px rgba(8, 47, 73, 0.08);
  border-radius: 2rem;
  padding: 2.5rem;
  display: grid;
  gap: 1.5rem;
  color: #082f49;
}

.trust-card h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: #082f49;
}

.trust-copy {
  max-width: 720px;
  color: #385166;
  font-size: 1.05rem;
  line-height: 1.8;
}

.trust-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.trust-card-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: flex-start;
  background: #f7fbfc;
  border-radius: 1.6rem;
  padding: 1.35rem;
  border: 1px solid rgba(21, 154, 156, 0.14);
  box-shadow: 0 16px 28px rgba(8, 47, 73, 0.06);
}

.sup-intro-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 34px;
  background: #ffffff;
  color: #06173a;
  font-family: Inter, Arial, sans-serif;
}

.sup-intro-circle {
  position: absolute;
  z-index: 1;
  width: 560px;
  height: 560px;
  top: 40px;
  right: 320px;
  border-radius: 50%;
  background: #f6efe3;
  opacity: 0.9;
}

.sup-intro-wave {
  position: absolute;
  z-index: 2;
  opacity: 0.45;
}

.sup-intro-wave svg {
  display: block;
}

.sup-intro-wave path {
  fill: none;
  stroke: #078d92;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sup-intro-wave-top {
  top: 40px;
  right: -12px;
}

.sup-intro-wave-top svg {
  width: 256px;
  height: 70px;
}

.sup-intro-wave-bottom {
  left: -56px;
  bottom: 24px;
}

.sup-intro-wave-bottom svg {
  width: 340px;
  height: 92px;
}

.sup-intro-container {
  position: relative;
  z-index: 3;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 560px);
  gap: 64px;
  align-items: center;
}

.sup-intro-content {
  position: relative;
  z-index: 4;
  max-width: 640px;
}

.sup-intro-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  color: #06173a;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.sup-intro-brand-icon {
  width: 84px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sup-intro-brand-icon svg {
  width: 84px;
  height: 32px;
  display: block;
}

.sup-intro-brand-icon path {
  fill: none;
  stroke: #078d92;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sup-intro-title {
  margin: 0 0 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 4.6vw, 64px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -2px;
  color: #06173a;
}

.sup-intro-title span {
  color: #128f8f;
}

.sup-intro-text {
  margin: 0 0 16px;
  max-width: 560px;
  color: #102043;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.1px;
}

.sup-intro-subtext {
  margin: 0;
  max-width: 560px;
  color: #4d6373;
  font-size: 15.5px;
  line-height: 1.75;
}

.sup-intro-tags {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sup-intro-tag {
  padding: 8px 16px;
  border-radius: 999px;
  background: #eef8f8;
  border: 1px solid rgba(7, 141, 146, 0.2);
  color: #078d92;
  font-size: 13.5px;
  font-weight: 700;
}

.sup-intro-buttons {
  margin-top: 34px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sup-intro-btn {
  min-height: 64px;
  padding: 0 26px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.sup-intro-btn-primary {
  min-width: 250px;
  color: #ffffff;
  background: linear-gradient(135deg, #079ca1 0%, #057f84 100%);
  box-shadow: 0 18px 36px rgba(0, 120, 125, 0.24);
}

.sup-intro-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(0, 120, 125, 0.32);
  color: #ffffff;
}

.sup-intro-whatsapp {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sup-intro-whatsapp svg {
  width: 32px;
  height: 32px;
  display: block;
}

.sup-intro-whatsapp svg * {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sup-intro-btn-secondary {
  min-width: 220px;
  color: #078d92;
  background: #ffffff;
  border: 2px solid #078d92;
}

.sup-intro-btn-secondary:hover {
  background: #effcfc;
  color: #078d92;
  transform: translateY(-2px);
}

.sup-intro-arrow {
  font-size: 28px;
  line-height: 1;
  font-weight: 400;
  transform: translateY(-1px);
}

.sup-intro-image-wrap {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 680px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 48px;
  box-shadow: 0 34px 80px rgba(7, 24, 56, 0.16);
}

.sup-intro-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 1024px) {
  .sup-intro-container {
    grid-template-columns: 1fr;
  }

  .sup-intro-content {
    max-width: 100%;
  }

  .sup-intro-image-wrap {
    max-width: 520px;
    margin: 0 auto;
  }

  .sup-intro-circle {
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 640px) {
  .sup-intro-hero {
    padding: 56px 20px;
  }

  .sup-intro-brand {
    margin-bottom: 32px;
    font-size: 18px;
  }

  .sup-intro-title {
    font-size: 36px;
    letter-spacing: -1.2px;
  }

  .sup-intro-text {
    font-size: 17px;
  }

  .sup-intro-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .sup-intro-btn {
    width: 100%;
  }

  .sup-intro-wave-top,
  .sup-intro-wave-bottom {
    display: none;
  }
}

.trust-card-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: #082f49;
}

.trust-card-item p {
  margin: 0;
  color: #385166;
  line-height: 1.75;
  font-size: 0.95rem;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, #159a9c, #2ec4c9);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(21, 154, 156, 0.18);
}

.trust-icon svg {
  width: 1.4rem;
  height: 1.4rem;
}

.trust-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

@media (max-width: 900px) {
  .trust-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .trust-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--sand);
}

.sup-route-card {
  display: grid;
  gap: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(21, 154, 156, 0.12);
  border-radius: 2rem;
  padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(8, 47, 73, 0.08);
}

.sup-route-image img {
  width: 100%;
  border-radius: 1.5rem;
  display: block;
}

.sup-route-label {
  margin: 0 0 0.8rem;
  color: #159a9c;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sup-route-body h3 {
  margin: 0;
  color: #082f49;
  font-size: 1.3rem;
}

.sup-route-text {
  margin: 0.8rem 0 1rem;
  color: #546a7a;
  line-height: 1.75;
}

.sup-route-body ul {
  margin: 0;
  padding-left: 1.2rem;
  color: #4d6b7f;
  line-height: 1.8;
}

.sup-route-body li {
  margin-bottom: 0.75rem;
}

.sup-beginner-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.sup-feature-box {
  display: grid;
  gap: 0.8rem;
  padding: 1.3rem;
  background: #ffffff;
  border: 1px solid rgba(21, 154, 156, 0.12);
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(8, 47, 73, 0.06);
}

.sup-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 1rem;
  background: rgba(21, 154, 156, 0.12);
  color: #159a9c;
  font-size: 1.1rem;
}

.sup-feature-box h4 {
  margin: 0;
  color: #082f49;
}

.sup-feature-box p {
  margin: 0;
  color: #546a7a;
  line-height: 1.75;
}

@media (max-width: 980px) {
  .sup-beginner-features {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .sup-beginner-features {
    grid-template-columns: 1fr;
  }
}

.sup-how-it-works {
  background: #f8fbfd;
}

.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.why-sup-section {
  position: relative;
  overflow: hidden;
}

.why-sup-bg,
.why-sup-overlay {
  position: absolute;
  inset: 0;
}

.why-sup-bg {
  background: linear-gradient(135deg, rgba(21, 154, 156, 0.15), rgba(255, 255, 255, 0.8));
}

.why-sup-overlay {
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 40%),
    radial-gradient(circle at bottom right, rgba(21, 154, 156, 0.12), transparent 35%);
}

.why-sup-container {
  position: relative;
  z-index: 2;
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  gap: 3.5rem;
}

.why-sup-header {
  max-width: 760px;
}

.why-sup-label {
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #159a9c;
  font-weight: 700;
  margin-bottom: 1rem;
}

.why-sup-wave {
  width: 5rem;
  height: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #159a9c, rgba(21, 154, 156, 0.35));
  margin-bottom: 1.5rem;
}

.why-sup-brand {
  margin-bottom: 28px;
}

.why-sup-header h2 {
  margin: 0 0 1.25rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.25rem, 3.4vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: 1.08;
  color: #082f49;
}

.why-sup-header h2 span {
  color: #159a9c;
}

.why-sup-intro {
  margin: 0;
  color: #435f72;
  font-size: 1.1rem;
  line-height: 1.95;
}

.why-sup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.why-sup-card {
  display: grid;
  gap: 1.25rem;
  background: #ffffff;
  border: 1px solid rgba(21, 154, 156, 0.12);
  border-radius: 1.8rem;
  padding: 2.1rem;
  box-shadow: 0 24px 60px rgba(8, 47, 73, 0.06);
}

.why-sup-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: rgba(21, 154, 156, 0.1);
  font-size: 1.25rem;
}

.why-sup-card h3 {
  margin: 0 0 0.35rem;
  color: #082f49;
}

.why-sup-card p {
  margin: 0;
  color: #546a7a;
  line-height: 1.85;
}

.why-sup-bottom {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  align-items: center;
  padding: 2.2rem 1.75rem;
  border-radius: 1.8rem;
  background: #ffffff;
  border: 1px solid rgba(21, 154, 156, 0.12);
  box-shadow: 0 22px 52px rgba(8, 47, 73, 0.06);
}

.why-sup-bottom-left {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
}

.why-sup-bottom-left span {
  display: inline-flex;
  width: 2.5rem;
  height: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: rgba(21, 154, 156, 0.1);
  color: #159a9c;
  font-size: 1.15rem;
}

.why-sup-bottom-left p {
  margin: 0;
  color: #435f72;
  line-height: 1.7;
}

.why-sup-locations {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  color: #546a7a;
  font-weight: 600;
}

.why-sup-locations span {
  display: inline-flex;
  color: #159a9c;
}

.why-sup-locations b {
  color: rgba(8, 47, 73, 0.25);
}

.why-sup-locations p {
  margin: 0;
}

@media (max-width: 1024px) {
  .why-sup-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .why-sup-grid,
  .why-sup-bottom {
    grid-template-columns: 1fr;
  }
}

.sup-rental-promo-section {
  background: #f8fbfd;
}

.sup-rental-promo-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.sup-rental-promo-label {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #159a9c;
  font-weight: 700;
  margin-bottom: 1rem;
}

.sup-rental-promo-left h2 {
  margin: 0 0 1.25rem;
  line-height: 1.1;
  color: #082f49;
}

.sup-rental-promo-intro {
  margin: 0 0 1.8rem;
  color: #425a6c;
  line-height: 1.85;
}

.sup-rental-promo-points {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.sup-rental-promo-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid rgba(21, 154, 156, 0.14);
  border-radius: 1.4rem;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 16px 36px rgba(8, 47, 73, 0.06);
}

.sup-rental-promo-point span {
  font-size: 1.15rem;
  color: #159a9c;
  margin-top: 0.15rem;
}

.sup-rental-promo-point p {
  margin: 0;
  color: #4d6b7f;
  line-height: 1.7;
}

.sup-rental-promo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #159a9c, #0a6f78);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(21, 154, 156, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sup-rental-promo-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(21, 154, 156, 0.28);
}

.sup-rental-promo-card {
  background: #ffffff;
  border: 1px solid rgba(21, 154, 156, 0.12);
  border-radius: 2rem;
  padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(8, 47, 73, 0.08);
}

.sup-rental-promo-image {
  border-radius: 1.5rem;
  overflow: hidden;
}

.sup-rental-promo-image img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sup-rental-promo-prices {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 0.3rem;
}

.sup-rental-promo-price {
  flex: 1;
  display: grid;
  gap: 0.3rem;
  text-align: center;
}

.sup-rental-promo-price-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #159a9c;
}

.sup-rental-promo-price-value {
  font-size: 1.7rem;
  font-weight: 800;
  color: #082f49;
}

.sup-rental-promo-price-value small {
  font-size: 0.95rem;
  font-weight: 600;
  color: #5f7c8c;
}

.sup-rental-promo-price-note {
  font-size: 0.85rem;
  color: #6a8090;
}

.sup-rental-promo-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(21, 154, 156, 0.18);
  margin: 0 1rem;
}

@media (max-width: 980px) {
  .sup-rental-promo-content {
    grid-template-columns: 1fr;
  }

  .sup-rental-promo-right {
    max-width: 480px;
  }
}

@media (max-width: 560px) {
  .sup-rental-promo-prices {
    flex-direction: column;
    gap: 1rem;
  }

  .sup-rental-promo-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
}

.sup-rental-section {
  position: relative;
  overflow: hidden;
  padding: 80px 32px;
  background: #ffffff;
  font-family: Inter, Arial, sans-serif;
  color: #071838;
}

.sup-rental-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.sup-rental-content {
  max-width: 610px;
}

.sup-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: #06969b;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 5px;
}

.sup-brand-icon svg {
  width: 58px;
  height: auto;
}

.sup-brand-icon path,
.sup-wave path {
  fill: none;
  stroke: #06969b;
  stroke-width: 4;
  stroke-linecap: round;
}

.sup-title {
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -2.5px;
  color: #06173a;
}

.sup-title span {
  color: #07999b;
}

.sup-text {
  margin: 0 0 22px;
  max-width: 560px;
  font-size: 18px;
  line-height: 1.55;
  color: #172139;
}

.sup-benefits {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(200, 184, 160, 0.45);
  border-bottom: 1px solid rgba(200, 184, 160, 0.45);
}

.sup-benefit {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 18px 22px 0;
  font-size: 17px;
  font-weight: 500;
  color: #071838;
}

.sup-benefit:nth-child(1),
.sup-benefit:nth-child(2) {
  border-bottom: 1px solid rgba(200, 184, 160, 0.45);
}

.sup-benefit:nth-child(2),
.sup-benefit:nth-child(4) {
  border-left: 1px solid rgba(200, 184, 160, 0.45);
  padding-left: 22px;
}

.sup-benefit-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 50%;
  background: #f4ecdf;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sup-benefit-icon svg {
  width: 32px;
  height: 32px;
}

.sup-benefit-icon svg * {
  fill: none;
  stroke: #06969b;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sup-buttons {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}

.sup-btn {
  min-height: 62px;
  padding: 0 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  font-size: 19px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.sup-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #08b1b6, #008b91);
  box-shadow: 0 14px 28px rgba(0, 143, 148, 0.24);
}

.sup-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 143, 148, 0.3);
}

.sup-btn-secondary {
  color: #078d92;
  background: #ffffff;
  border: 2px solid #078d92;
}

.sup-btn-secondary:hover {
  background: #effcfc;
  transform: translateY(-2px);
}

.sup-btn-secondary svg {
  width: 27px;
  height: 27px;
}

.sup-btn-secondary svg * {
  fill: none;
  stroke: #078d92;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sup-rental-image-wrap {
  position: relative;
  z-index: 2;
  border-radius: 46px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(7, 24, 56, 0.12);
  min-height: 760px;
}

.sup-rental-image {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  display: block;
}

.sup-rental-bg-circle {
  position: absolute;
  z-index: 1;
  width: 650px;
  height: 650px;
  right: 150px;
  top: 35px;
  border-radius: 50%;
  background: #f6efe6;
  opacity: 0.8;
}

.sup-wave {
  position: absolute;
  z-index: 1;
  opacity: 0.32;
}

.sup-wave svg {
  width: 260px;
  height: auto;
}

.sup-wave path {
  stroke-width: 2;
}

.sup-wave-top {
  top: 18px;
  right: -20px;
}

.sup-wave-bottom {
  bottom: 24px;
  left: -35px;
}

.pricing-section {
  padding: 4rem 0 6rem;
}

.pricing-header h2 {
  margin: 0 0 1.8rem;
  font-size: clamp(2.25rem, 3.5vw, 3.4rem);
  color: #06173a;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid rgba(6, 23, 58, 0.08);
  border-radius: 28px;
  padding: 2.2rem;
  box-shadow: 0 18px 45px rgba(7, 24, 56, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(6, 23, 58, 0.16);
  box-shadow: 0 24px 60px rgba(7, 24, 56, 0.12);
}

.pricing-card.featured {
  background: linear-gradient(180deg, #f4f6ff 0%, #ffffff 100%);
  border-color: rgba(7, 24, 56, 0.14);
}

.pricing-card h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  color: #06173a;
}

.pricing-value {
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 800;
  color: #07999b;
}

.pricing-card p {
  margin: 0;
  color: #526475;
  line-height: 1.75;
}

.pricing-note {
  margin-top: 1.5rem;
  max-width: 760px;
  color: #546a7a;
  font-size: 1rem;
  line-height: 1.8;
}

.included-section {
  padding: 3.5rem 0 6rem;
}

.included-header h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 3.5vw, 3.2rem);
  color: #06173a;
}

.included-text {
  max-width: 780px;
  margin: 0 0 2rem;
  color: #556976;
  line-height: 1.85;
  font-size: 1.03rem;
}

.included-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
}

.included-list li {
  position: relative;
  padding-left: 2.8rem;
  color: #071838;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.8;
}

.included-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
  background: #07999b;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
}

@media (max-width: 680px) {
  .included-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.sup-rental-best-section {
  position: relative;
  padding: 90px 20px 76px;
  background:
    radial-gradient(circle at 8% 92%, rgba(22, 154, 160, 0.12), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #fbf7f1 52%, #f0fbfc 100%);
  color: #061b3a;
  font-family: inherit;
  overflow: hidden;
}

.sup-rental-best-section::before {
  content: "";
  position: absolute;
  left: -50px;
  bottom: 60px;
  width: 220px;
  height: 220px;
  background:
    linear-gradient(35deg, transparent 47%, rgba(22,154,160,0.75) 48%, rgba(22,154,160,0.75) 52%, transparent 53%),
    linear-gradient(55deg, transparent 47%, rgba(22,154,160,0.55) 48%, rgba(22,154,160,0.55) 52%, transparent 53%),
    linear-gradient(75deg, transparent 47%, rgba(22,154,160,0.45) 48%, rgba(22,154,160,0.45) 52%, transparent 53%);
  opacity: 0.45;
  transform: rotate(-18deg);
  z-index: 1;
}

.sup-rental-best-section::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -64px;
  height: 150px;
  background:
    radial-gradient(100px 34px at 12% 35%, rgba(22,154,160,0.12) 0 68%, transparent 70%),
    radial-gradient(120px 42px at 28% 52%, rgba(22,154,160,0.09) 0 68%, transparent 70%),
    radial-gradient(110px 38px at 45% 38%, rgba(22,154,160,0.11) 0 68%, transparent 70%),
    radial-gradient(130px 46px at 66% 55%, rgba(22,154,160,0.08) 0 68%, transparent 70%),
    radial-gradient(115px 40px at 86% 36%, rgba(22,154,160,0.1) 0 68%, transparent 70%);
  z-index: 1;
}

.sup-rental-best-container {
  position: relative;
  z-index: 2;
  max-width: 1420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 70px;
  align-items: center;
}

.sup-rental-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: #f59e0b;
  font-size: 18px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.sup-wave-icon {
  color: #139aa0;
  font-size: 38px;
  line-height: 0.5;
  font-weight: 900;
  transform: translateY(-2px);
}

.sup-rental-best-left h2 {
  margin: 0;
  color: #061b3a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
}

.sup-rental-best-left h2 span {
  color: #139aa0;
}

.sup-rental-main-text {
  max-width: 540px;
  margin: 0 0 46px;
  color: #1d2937;
  font-size: 24px;
  line-height: 1.48;
  font-weight: 400;
}

.sup-rental-advice-box {
  max-width: 520px;
  min-height: 160px;
  padding: 30px 36px 30px 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(226, 249, 249, 0.95), rgba(246, 255, 255, 0.9));
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 26px;
  align-items: center;
  box-shadow: 0 18px 45px rgba(6, 27, 58, 0.07);
}

.sup-rental-advice-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, #18b8ad 0%, #07858d 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  box-shadow: 0 18px 38px rgba(19,154,160,0.25);
}

.sup-rental-advice-box p {
  margin: 0;
  color: #1d2937;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
}

.sup-rental-advice-box strong {
  color: #139aa0;
  font-weight: 900;
}

.sup-rental-best-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sup-rental-card {
  min-height: 410px;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 20px 48px rgba(6, 27, 58, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition: 0.25s ease;
}

.sup-rental-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 70px rgba(6, 27, 58, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.sup-rental-card-image {
  height: 270px;
  overflow: hidden;
}

.sup-rental-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sup-rental-card-body {
  position: relative;
  min-height: 140px;
  padding: 54px 22px 24px;
  text-align: center;
  background: #ffffff;
}

.sup-rental-card-icon {
  position: absolute;
  left: 50%;
  top: -42px;
  transform: translateX(-50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #ffffff;
  color: #139aa0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(6, 27, 58, 0.12);
  border: 1px solid rgba(19,154,160,0.08);
}

.sup-rental-card h3 {
  margin: 0;
  color: #061b3a;
  font-size: 26px;
  line-height: 1.22;
  font-weight: 950;
  letter-spacing: -0.5px;
}

.sup-rent-steps-section {
  position: relative;
  padding: 5.5rem 1.25rem 4.5rem;
  background: radial-gradient(circle at top left, rgba(7, 38, 58, 0.02), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  overflow: hidden;
}

.sup-steps-bg-circle {
  position: absolute;
  top: -90px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(7, 38, 58, 0.05);
  filter: blur(10px);
  pointer-events: none;
}

.sup-steps-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2.8rem;
  align-items: center;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.sup-steps-left {
  display: grid;
  gap: 1.8rem;
}

.sup-steps-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: #159a9c;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.sup-steps-brand-icon {
  display: inline-flex;
  width: 3rem;
  min-width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
}

.sup-steps-brand-icon path {
  fill: none;
  stroke: #06969b;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sup-steps-title {
  margin: 0 0 1.4rem;
  color: #06173a;
  font-size: clamp(2.75rem, 4vw, 3.8rem);
  line-height: 1.03;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -1px;
}

.sup-steps-title span {
  color: #07999b;
}

.sup-steps-subtitle {
  margin: 0;
  max-width: 680px;
  color: #425c70;
  line-height: 1.8;
  font-size: 1.05rem;
}

.sup-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.sup-step-card {
  position: relative;
  display: grid;
  gap: 1.1rem;
  padding: 1.85rem;
  border-radius: 1.75rem;
  background: #ffffff;
  border: 1px solid rgba(7, 38, 58, 0.08);
  box-shadow: 0 24px 60px rgba(7, 38, 58, 0.08);
}

.sup-step-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sup-step-number {
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, #07999b, #139aa0);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
}

.sup-step-icon {
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(7, 38, 58, 0.06);
}

.sup-step-icon svg {
  width: 1.6rem;
  height: 1.6rem;
  fill: #139aa0;
}

.sup-step-card h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #06173a;
}

.sup-step-card p {
  margin: 0;
  color: #546a7a;
  line-height: 1.75;
}

.sup-steps-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.sup-steps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 56px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sup-steps-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #07999b, #0c8d95);
  box-shadow: 0 16px 32px rgba(7, 38, 58, 0.16);
}

.sup-steps-btn-primary:hover {
  transform: translateY(-2px);
}

.sup-steps-btn-secondary {
  color: #06173a;
  background: #ffffff;
  border: 1px solid rgba(7, 38, 58, 0.12);
}

.sup-steps-btn-secondary svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: none;
  stroke: #06173a;
  stroke-width: 1.5;
}

.sup-steps-right {
  display: grid;
  justify-items: center;
}

.sup-steps-image-box {
  position: relative;
  width: min(560px, 100%);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(7, 38, 58, 0.12);
}

.sup-steps-image {
  width: 100%;
  display: block;
  object-fit: cover;
}

.sup-steps-badge {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  padding: 0.2rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 40px rgba(7, 38, 58, 0.12);
}

.sup-steps-badge-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  background: rgba(7, 38, 58, 0.04);
  color: #06173a;
  font-size: 0.95rem;
  font-weight: 700;
}

.sup-steps-badge span {
  display: inline-block;
}

.sup-steps-badge svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: #07999b;
  fill: none;
  stroke-width: 2;
}

.sup-steps-badge .badge-top {
  color: #07999b;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

.sup-steps-badge .badge-bottom {
  color: #06173a;
  font-size: 0.88rem;
}

@media (max-width: 1024px) {
  .sup-steps-container {
    grid-template-columns: 1fr;
  }

  .sup-steps-grid {
    grid-template-columns: 1fr;
  }

  .sup-steps-right {
    justify-items: stretch;
  }
}

.sup-safety-section {
  padding: 4rem 1.25rem 3rem;
  background: linear-gradient(180deg, #f9fcff 0%, #ffffff 100%);
}

.sup-safety-container {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.sup-safety-label {
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #159a9c;
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.sup-safety-copy h2 {
  margin: 0 0 1.4rem;
  font-size: clamp(2.25rem, 3.5vw, 3.4rem);
  color: #06173a;
  line-height: 1.05;
}

.sup-safety-copy p {
  margin: 0;
  max-width: 680px;
  color: #455a6b;
  font-size: 1.05rem;
  line-height: 1.8;
}

.sup-safety-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 2rem;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(7, 38, 58, 0.08);
  box-shadow: 0 24px 55px rgba(7, 38, 58, 0.08);
}

.sup-safety-card-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: linear-gradient(135deg, #07999b, #159a9c);
  color: #ffffff;
  font-size: 2rem;
}

.sup-safety-card-title {
  margin: 0 0 0.65rem;
  color: #06173a;
  font-size: 1.1rem;
  font-weight: 800;
}

.sup-safety-card p {
  margin: 0;
  color: #546a7a;
  line-height: 1.75;
  font-size: 1rem;
}

@media (max-width: 980px) {
  .sup-safety-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .sup-rent-steps-section {
    padding: 3.5rem 1rem 3rem;
  }

  .sup-steps-title {
    font-size: clamp(2.2rem, 8vw, 2.9rem);
    margin-bottom: 1rem;
  }

  .sup-steps-subtitle {
    font-size: 0.98rem;
  }

  .sup-steps-buttons {
    flex-direction: column;
  }

  .sup-steps-badge {
    left: 1rem;
    right: auto;
    bottom: 1rem;
  }
}

@media (max-width: 540px) {
  .sup-steps-brand {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 450px) {
  .sup-step-number,
  .sup-step-icon {
    width: 2.8rem;
    height: 2.8rem;
  }
}

@media (max-width: 1180px) {
  .sup-rental-best-container {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .sup-rental-best-left {
    max-width: 760px;
  }

  .sup-rental-best-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .sup-rental-best-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .sup-rental-best-section {
    padding: 56px 16px 58px;
  }

  .sup-rental-kicker {
    font-size: 13px;
    letter-spacing: 2px;
    gap: 10px;
  }

  .sup-wave-icon {
    font-size: 30px;
  }

  .sup-rental-best-left h2 {
    font-size: 42px;
    line-height: 1.05;
    letter-spacing: -1.2px;
  }

  .sup-rental-main-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 28px;
  }

  .sup-rental-advice-box {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 22px;
  }

  .sup-rental-advice-icon {
    width: 68px;
    height: 68px;
    font-size: 30px;
  }

  .sup-rental-advice-box p {
    font-size: 18px;
  }

  .sup-rental-best-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .sup-rental-card {
    min-height: auto;
  }

  .sup-rental-card-image {
    height: 260px;
  }

  .sup-rental-card-body {
    min-height: 120px;
  }

  .sup-rental-card h3 {
    font-size: 24px;
  }
}

@media (max-width: 1024px) {
  .sup-rental-section {
    padding: 60px 24px;
  }

  .sup-rental-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sup-rental-content {
    max-width: 100%;
  }

  .sup-rental-image-wrap,
  .sup-rental-image {
    min-height: 520px;
  }

  .sup-rental-bg-circle {
    right: -120px;
    top: 360px;
  }
}

@media (max-width: 640px) {
  .sup-rental-section {
    padding: 44px 18px;
  }

  .sup-brand {
    font-size: 13px;
    letter-spacing: 3px;
    gap: 10px;
  }

  .sup-brand-icon svg {
    width: 46px;
  }

  .sup-title {
    font-size: 48px;
    letter-spacing: -1.2px;
  }

  .sup-text {
    font-size: 16px;
  }

  .sup-benefits {
    grid-template-columns: 1fr;
  }

  .sup-benefit {
    border-left: 0 !important;
    border-bottom: 1px solid rgba(200, 184, 160, 0.45);
    padding: 18px 0 !important;
  }

  .sup-benefit:last-child {
    border-bottom: 0;
  }

  .sup-buttons {
    gap: 14px;
  }

  .sup-btn {
    width: 100%;
    min-height: 58px;
    font-size: 17px;
  }

  .sup-rental-image-wrap,
  .sup-rental-image {
    min-height: 390px;
    border-radius: 28px;
  }
}

.how-step-card {
  background: #ffffff;
  border: 1px solid rgba(21, 154, 156, 0.14);
  border-radius: 1.5rem;
  padding: 1.6rem;
  box-shadow: 0 18px 40px rgba(8, 47, 73, 0.06);
}

.how-step-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
  color: #082f49;
}

.how-step-card p {
  margin: 0;
  color: #546a7a;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .how-steps-grid {
    grid-template-columns: 1fr;
  }
}

.how-cta {
  margin-top: 2rem;
}

.how-cta .btn {
  min-width: 200px;
}

.sup-route-section {
  background: #f8fbfd;
}

.sup-route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.sup-route-card {
  background: #ffffff;
  border: 1px solid rgba(21, 154, 156, 0.12);
  border-radius: 1.75rem;
  padding: 1.7rem;
  box-shadow: 0 18px 40px rgba(8, 47, 73, 0.06);
}

.sup-route-card h3 {
  margin: 0 0 0.75rem;
  color: #082f49;
}

.sup-route-card p {
  margin: 0;
  color: #475a6c;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .sup-route-grid {
    grid-template-columns: 1fr;
  }
}

.sup-faq-premium {
  position: relative;
  padding: 72px 20px 52px;
  background: #f4fbfc;
  color: #061b3a;
  overflow: hidden;
  font-family: inherit;
}

.sup-faq-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 365px;
  background-image: url("images/sup-board-experience-valencia-coast.png");
  background-size: cover;
  background-position: center right;
  z-index: 1;
}

.sup-faq-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      #ffffff 0%,
      #ffffff 34%,
      rgba(255,255,255,0.94) 46%,
      rgba(255,255,255,0.48) 68%,
      rgba(255,255,255,0.04) 100%
    ),
    linear-gradient(180deg,
      rgba(255,255,255,0.1) 0%,
      rgba(255,255,255,0.42) 40%,
      #eefafa 62%,
      #ffffff 100%
    );
  z-index: 2;
}

.sup-faq-wrap {
  position: relative;
  z-index: 3;
  max-width: 1420px;
  margin: 0 auto;
}

.sup-faq-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.sup-faq-small {
  margin-bottom: 10px;
  color: #159a9c;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.sup-faq-wave {
  width: 56px;
  height: 16px;
  margin-bottom: 24px;
  background:
    radial-gradient(13px 7px at 13px 7px, transparent 7px, #159a9c 8px, #159a9c 10px, transparent 11px);
  background-size: 22px 14px;
}

.sup-faq-head h1,
.sup-faq-head h2 {
  margin: 0 0 18px;
  color: #061b3a;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -2.4px;
}

.sup-faq-head p {
  max-width: 720px;
  margin: 0;
  color: #071d3d;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
}

.sup-faq-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin-bottom: 16px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 20px 55px rgba(8,47,73,0.08);
  backdrop-filter: blur(10px);
}

.sup-faq-highlight {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 28px;
  border-right: 1px solid rgba(8,47,73,0.12);
}

.sup-faq-highlight:last-child {
  border-right: 0;
}

.sup-faq-highlight-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #e7f8f9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #159a9c;
  font-size: 31px;
  filter: grayscale(1);
}

.sup-faq-highlight strong {
  color: #061b3a;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 900;
}

.sup-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.sup-faq-card {
  position: relative;
  display: grid;
  grid-template-columns: 98px 1fr 28px;
  gap: 22px;
  align-items: center;
  min-height: 146px;
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(255,255,255,0.91);
  border: 1px solid rgba(255,255,255,0.96);
  box-shadow:
    0 16px 45px rgba(8,47,73,0.07),
    inset 0 1px 0 rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  transition: 0.25s ease;
}

.sup-faq-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 65px rgba(8,47,73,0.12),
    inset 0 1px 0 rgba(255,255,255,0.95);
}

.sup-faq-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #e7f8f9;
  color: #159a9c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  filter: grayscale(1);
}

.sup-faq-card-content {
  padding-left: 20px;
  border-left: 1px solid rgba(8,47,73,0.15);
}

.sup-faq-card-content h3 {
  margin: 0 0 8px;
  color: #061b3a;
  font-size: 21px;
  line-height: 1.16;
  font-weight: 950;
  letter-spacing: -0.5px;
}

.sup-faq-card-content p {
  margin: 0;
  color: #071d3d;
  font-size: 15.7px;
  line-height: 1.36;
  font-weight: 500;
}

.sup-faq-arrow {
  color: #159a9c;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}

.sup-faq-bottom {
  margin-top: 18px;
  min-height: 78px;
  padding: 14px 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #1ba7ad 0%, #0e8790 100%);
  color: #ffffff;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr 300px;
  gap: 16px;
  align-items: center;
  box-shadow: 0 24px 55px rgba(21,154,156,0.28);
}

.sup-faq-bottom-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 16px;
  border-right: 1px solid rgba(255,255,255,0.28);
}

.sup-faq-bottom-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.sup-faq-bottom-item strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
}

.sup-faq-bottom-item span {
  display: block;
  margin-top: 4px;
  color: #ffffff;
  font-size: 15.5px;
  line-height: 1.2;
  opacity: 0.95;
}

.sup-faq-whatsapp {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  background: #ffffff;
  color: #159a9c;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(8,47,73,0.12);
  transition: 0.25s ease;
}

.sup-faq-whatsapp:hover {
  transform: translateY(-2px);
  color: #0e8790;
}

.sup-faq-whatsapp span {
  font-size: 28px;
  line-height: 1;
}

.sup-final-cta {
  background: linear-gradient(135deg, #eef8fb 0%, #ffffff 100%);
  padding: 3.5rem 0;
}

.sup-final-cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}

.sup-final-cta-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 3vw, 3.5rem);
  line-height: 1.05;
  color: #082f49;
}

.sup-final-cta-copy p {
  margin: 0;
  color: #425c73;
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 680px;
}

.sup-final-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: start;
}

.sup-final-cta-buttons .btn {
  min-width: 190px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 2px solid #159a9c;
  color: #159a9c;
  background: transparent;
  font-weight: 700;
  text-decoration: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  background: #ffffff;
  color: #082f49;
  border: 1px solid rgba(8, 47, 73, 0.12);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 900px) {
  .sup-final-cta-grid {
    grid-template-columns: 1fr;
  }

  .sup-final-cta-buttons {
    justify-content: stretch;
  }

  .sup-final-cta-buttons .btn,
  .sup-final-cta-buttons .btn-outline,
  .sup-final-cta-buttons .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .sup-faq-bg {
    width: 65%;
    height: 330px;
  }

  .sup-faq-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .sup-faq-highlight:nth-child(2) {
    border-right: 0;
  }

  .sup-faq-highlight {
    border-bottom: 1px solid rgba(8,47,73,0.08);
  }

  .sup-faq-grid {
    grid-template-columns: 1fr;
  }

  .sup-faq-bottom {
    grid-template-columns: repeat(2, 1fr);
  }

  .sup-faq-whatsapp {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .sup-faq-premium {
    padding: 46px 16px 38px;
  }

  .sup-faq-bg {
    position: relative;
    width: 100%;
    height: 230px;
    border-radius: 24px;
    margin-bottom: 28px;
    background-position: center;
  }

  .sup-faq-overlay {
    background:
      linear-gradient(180deg,
        rgba(255,255,255,0.05) 0%,
        #ffffff 34%,
        #f4fbfc 100%
      );
  }

  .sup-faq-small {
    font-size: 13px;
  }

  .sup-faq-head h1,
  .sup-faq-head h2 {
    font-size: 40px;
    letter-spacing: -1.2px;
  }

  .sup-faq-head p {
    font-size: 16.5px;
    line-height: 1.55;
  }

  .sup-faq-highlights {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .sup-faq-highlight {
    grid-template-columns: 58px 1fr;
    padding: 16px 18px;
    border-right: 0;
  }

  .sup-faq-highlight-icon {
    width: 52px;
    height: 52px;
    font-size: 26px;
  }

  .sup-faq-highlight strong {
    font-size: 16px;
  }

  .sup-faq-card {
    grid-template-columns: 58px 1fr 22px;
    gap: 14px;
    padding: 18px 16px;
    min-height: auto;
  }

  .sup-faq-card-icon {
    width: 52px;
    height: 52px;
    font-size: 26px;
  }

  .sup-faq-card-content {
    padding-left: 12px;
  }

  .sup-faq-card-content h3 {
    font-size: 17px;
  }

  .sup-faq-card-content p {
    font-size: 14.5px;
    line-height: 1.42;
  }

  .sup-faq-arrow {
    font-size: 24px;
  }

  .sup-faq-bottom {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 20px;
  }

  .sup-faq-bottom-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    padding: 0 0 14px;
  }

  .sup-faq-whatsapp {
    width: 100%;
    min-height: 54px;
  }
}

.sup-rental-final-cta {
  position: relative;
  min-height: 760px;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
  font-family: inherit;
  color: #061b3a;
}

.sup-rental-final-bg {
  position: absolute;
  inset: 0;
  background-image: url("images/sup-board-rental-valencia-beach-single-board.png");
  background-repeat: no-repeat;
  background-size: auto 92%;
  background-position: calc(100% - 6rem) center;
  z-index: 1;
}

.sup-rental-final-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      #ffffff 27%,
      rgba(255,255,255,0.92) 39%,
      rgba(255,255,255,0.56) 52%,
      rgba(255,255,255,0.16) 68%,
      rgba(255,255,255,0.02) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255,255,255,0.02) 0%,
      rgba(255,255,255,0.15) 65%,
      rgba(255,255,255,0.88) 100%
    );
}

.sup-rental-final-container {
  position: relative;
  z-index: 3;
  max-width: 1480px;
  min-height: 760px;
  margin: 0 auto;
  padding: 82px 64px 70px;
}

.sup-rental-final-content {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.sup-rental-final-left {
  max-width: 650px;
}

.sup-rental-final-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 34px;
  color: #0e9a9f;
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 3.6px;
  text-transform: uppercase;
}

.sup-rental-final-kicker span {
  color: #0e9a9f;
  font-size: 36px;
  line-height: 0.5;
  font-weight: 900;
}

.sup-rental-final-left h2 {
  margin: 0;
  color: #061b3a;
  font-size: clamp(54px, 6vw, 86px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -2.6px;
}

.sup-rental-final-left h2 span {
  color: #0e9a9f;
}

.sup-rental-final-left p {
  max-width: 560px;
  margin: 0 0 42px;
  color: #1d2937;
  font-size: 25px;
  line-height: 1.5;
  font-weight: 400;
}

.sup-rental-final-buttons {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.sup-rental-final-card {
  width: 190px;
  min-height: 235px;
  padding: 26px 22px 24px;
  border-radius: 12px;
  background: rgba(255,255,255,0.96);
  color: #061b3a;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(6,27,58,0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.sup-rental-final-card:hover {
  transform: translateY(-6px);
  color: #061b3a;
  box-shadow: 0 28px 60px rgba(6,27,58,0.18);
}

.sup-rental-final-card-main {
  background: linear-gradient(135deg, #11b4ad 0%, #07898f 100%);
  color: #ffffff;
  box-shadow: 0 24px 52px rgba(17,180,173,0.34);
}

.sup-rental-final-card-main:hover {
  color: #ffffff;
  box-shadow: 0 32px 68px rgba(17,180,173,0.44);
}

.sup-rental-final-card-icon {
  margin-bottom: 22px;
  color: #0e9a9f;
  font-size: 56px;
  line-height: 1;
  font-weight: 900;
}

.sup-rental-final-card-main .sup-rental-final-card-icon {
  color: #ffffff;
}

.sup-rental-final-card strong {
  display: block;
  margin-bottom: 20px;
  text-align: center;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -0.7px;
}

.sup-rental-final-card span {
  color: #0e9a9f;
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
}

.sup-rental-final-card-main span {
  color: #ffffff;
}

.sup-rental-final-benefits {
  position: absolute;
  right: 28px;
  top: 360px;
  display: grid;
  gap: 30px;
  color: #ffffff;
}

.sup-rental-benefit {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  text-shadow: 0 8px 24px rgba(0,0,0,0.32);
}

.sup-rental-benefit-icon {
  width: 52px;
  height: 52px;
  border: 3px solid rgba(255,255,255,0.9);
  border-radius: 14px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.sup-rental-benefit strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 950;
}


@media (max-width: 1180px) {
  .sup-rental-final-container {
    padding: 70px 34px 60px;
  }

  .sup-rental-final-left {
    max-width: 600px;
  }

  .sup-rental-final-left p {
    font-size: 21px;
  }

  .sup-rental-final-buttons {
    flex-wrap: wrap;
  }

  .sup-rental-final-benefits {
    right: 20px;
    top: 430px;
  }
}

@media (max-width: 760px) {
  .sup-rental-final-cta {
    min-height: auto;
  }

  .sup-rental-final-bg {
    background-position: center right;
  }

  .sup-rental-final-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,0.96) 0%,
        rgba(255,255,255,0.92) 54%,
        rgba(255,255,255,0.55) 100%
      );
  }

  .sup-rental-final-container {
    min-height: auto;
    padding: 56px 18px 54px;
  }

  .sup-rental-final-content {
    min-height: auto;
    display: block;
  }

  .sup-rental-final-kicker {
    font-size: 12px;
    letter-spacing: 2.4px;
    margin-bottom: 24px;
  }

  .sup-rental-final-kicker span {
    font-size: 28px;
  }

  .sup-rental-final-left h2 {
    font-size: 43px;
    line-height: 1.05;
    letter-spacing: -1.3px;
  }

  .sup-rental-final-wave {
    margin: 24px 0 22px;
  }

  .sup-rental-final-left p {
    font-size: 18px;
    line-height: 1.58;
    margin-bottom: 28px;
  }

  .sup-rental-final-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .sup-rental-final-card {
    width: 100%;
    min-height: 132px;
    padding: 22px;
  }

  .sup-rental-final-card-icon {
    margin-bottom: 12px;
    font-size: 42px;
  }

  .sup-rental-final-card strong {
    font-size: 25px;
    margin-bottom: 12px;
  }

  .sup-rental-final-benefits {
    position: relative;
    right: auto;
    top: auto;
    margin-top: 34px;
    padding: 22px;
    border-radius: 18px;
    background: rgba(6,27,58,0.72);
    backdrop-filter: blur(10px);
  }

  .sup-rental-benefit strong {
    font-size: 18px;
  }
}

.page-links-box {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.page-links-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.page-link-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(19, 94, 125, 0.1), rgba(42, 157, 143, 0.12));
  color: var(--navy);
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(7, 38, 58, 0.12);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 3.1vw, 2.45rem);
  margin: 0 0 0.8rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border: 1px solid rgba(6, 27, 58, 0.08);
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(6, 27, 58, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 90px rgba(6, 27, 58, 0.16);
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
}

.route-label {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #118c94;
}

.card h3 {
  margin: 0;
  color: #061b3a;
  font-size: 1.45rem;
  line-height: 1.1;
}

.card-content p {
  margin: 0;
  color: #415361;
  line-height: 1.75;
}

.route-card-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.route-card-meta li {
  display: flex;
  gap: 0.6rem;
  color: #5b6d7d;
  font-size: 0.95rem;
  line-height: 1.5;
}

.route-card-meta strong {
  color: #061b3a;
  font-weight: 700;
}

.price {
  display: inline-block;
  margin-top: 0.85rem;
  font-weight: 800;
  color: #118c94;
}

.card-content a.btn {
  justify-self: start;
}

.rental-grid,
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.rental-card {
  background: #ffffff;
  border: 1px solid rgba(21, 154, 156, 0.14);
  border-radius: 1.8rem;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(8, 47, 73, 0.05);
}

.rental-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #0f3f57;
  font-size: 1.2rem;
}

.rental-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rental-card li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.9rem;
  color: #334d5b;
  line-height: 1.7;
}

.rental-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: #159a9c;
  font-weight: 700;
}

.rental-card .small-note {
  margin-top: 1.5rem;
  color: #5e7180;
  font-size: 0.95rem;
  line-height: 1.7;
}

.equipment-card {
  background: #f7fbfc;
  border: 1px solid rgba(21, 154, 156, 0.16);
  border-radius: 1.8rem;
  padding: 2rem;
}

.equipment-card h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #082f49;
  font-size: clamp(1.7rem, 2.5vw, 2.2rem);
}

.equipment-copy {
  margin: 0 0 1rem;
  color: #385166;
  line-height: 1.8;
}

.equipment-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.equipment-card-item {
  background: #ffffff;
  border: 1px solid rgba(21, 154, 156, 0.12);
  border-radius: 1.4rem;
  padding: 1rem 1.2rem;
  box-shadow: 0 12px 24px rgba(8, 47, 73, 0.05);
}

.equipment-card-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: #082f49;
}

.equipment-card-item p {
  margin: 0;
  color: #446076;
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .equipment-card-grid {
    grid-template-columns: 1fr;
  }
}

.sup-included-premium {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.sup-included-bg-image {
  position: absolute;
  inset: 0;
  background: url('images/sup-board-experience-valencia-coast.png') center/cover no-repeat;
  opacity: 0.25;
  filter: blur(0.5px);
  z-index: 1;
}

.sup-included-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 29, 44, 0.45), rgba(4, 29, 44, 0.7));
  z-index: 2;
}

.sup-included-wrap {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  gap: 2.5rem;
}

.sup-included-top {
  display: grid;
  gap: 1.5rem;
}

.sup-included-text {
  max-width: 780px;
}

.sup-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #7fe3db;
  font-weight: 700;
}

.sup-included-text h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  line-height: 1.02;
  color: #ffffff;
}

.sup-included-text h2 span {
  color: #7fe3db;
}

.sup-wave-line {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.sup-wave-line span {
  width: 2.5rem;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(127, 227, 219, 0.9);
}

.sup-included-text p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.89);
  line-height: 1.85;
}

.sup-included-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.sup-feature-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.5rem;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
}

.sup-feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  background: rgba(127, 227, 219, 0.16);
  border-radius: 1.1rem;
}

.sup-feature-icon img {
  width: 1.7rem;
  height: 1.7rem;
}

.sup-feature-content h3 {
  margin: 0;
  font-size: 1rem;
  color: #ffffff;
}

.sup-card-line {
  width: 3rem;
  height: 0.25rem;
  margin: 0.65rem 0;
  border-radius: 999px;
  background: #7fe3db;
}

.sup-feature-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-size: 0.96rem;
}

.sup-bottom-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem 1.75rem;
  border-radius: 1.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.sup-bottom-star {
  width: 3.2rem;
  height: 3.2rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  background: #7fe3db;
  color: #043140;
  font-size: 1.3rem;
}

.sup-bottom-note h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #ffffff;
}

.sup-bottom-note p {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
}

@media (max-width: 1024px) {
  .sup-included-cards {
    grid-template-columns: 1fr;
  }
}

.sup-included-visual img {
  width: 100%;
  display: block;
  border-radius: 1.75rem;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.16);
}

@media (max-width: 830px) {
  .sup-included-premium {
    padding: 3rem 0;
  }

  .sup-included-wrap {
    padding: 0 1rem;
  }
}

.equipment-card,
.feature-list,
.premium-why {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 1.45rem;
  box-shadow: var(--shadow);
}

.equipment-card ul,
.feature-list ul {
  padding-left: 1rem;
  margin: 0;
}

.premium-why {
  padding: 2rem;
  border: 1px solid rgba(6, 27, 58, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(246,239,228,0.82) 100%);
}

.premium-why-header {
  max-width: 680px;
  margin-bottom: 2rem;
}

.premium-why-label {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  color: #0d7f93;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(13, 127, 147, 0.17);
  border-radius: 999px;
  background: rgba(13, 127, 147, 0.06);
}

.premium-why-header h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.3rem, 3vw, 3.4rem);
  line-height: 1.05;
  color: #06173a;
}

.premium-why-header p {
  margin: 0;
  max-width: 640px;
  color: #415361;
  font-size: 1.05rem;
  line-height: 1.8;
}

.premium-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.premium-story-section {
  background: linear-gradient(180deg, #f8fbfc 0%, #ffffff 100%);
}

.premium-story-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.premium-story-intro {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.premium-story-intro h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  line-height: 1.03;
  color: #06173a;
}

.premium-story-intro p {
  margin: 0;
  color: #4c6174;
  font-size: 1.05rem;
  line-height: 1.8;
}

.premium-why {
  padding: 2rem;
  border-radius: 2rem;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(6, 27, 58, 0.08);
  box-shadow: 0 30px 90px rgba(7, 24, 56, 0.08);
}

.premium-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.premium-card {
  padding: 2rem;
  border-radius: 1.75rem;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(6, 27, 58, 0.08);
  box-shadow: 0 22px 60px rgba(7, 24, 56, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 72px rgba(7, 24, 56, 0.14);
}

.premium-card h3 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  line-height: 1.2;
  color: #06173a;
}

.premium-card p {
  margin: 0;
  color: #4d5d6f;
  line-height: 1.8;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .premium-why-grid {
    grid-template-columns: 1fr;
  }
}

.sup-for-section {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 58px 26px 54px;
  background: #ffffff;
  color: #06173a;
  font-family: Inter, Arial, sans-serif;
}

.sup-for-section::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(7, 24, 56, 0.08);
  border-radius: 34px;
  pointer-events: none;
  z-index: 4;
}

.sup-for-container {
  position: relative;
  z-index: 3;
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 58px;
  align-items: center;
}

.sup-for-left {
  position: relative;
  z-index: 5;
  padding-left: 34px;
}

.sup-for-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
  color: #06173a;
  font-size: 27px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.6px;
}

.sup-for-brand-icon {
  width: 94px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sup-for-brand-icon svg {
  width: 94px;
  height: 44px;
  display: block;
}

.sup-for-brand-icon path {
  fill: none;
  stroke: #078d92;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sup-for-brand-icon path {
  stroke-width: 4;
}

.sup-for-label {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  color: #078d92;
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 3px;
}

.sup-for-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 124px;
  height: 3px;
  background: #078d92;
  border-radius: 20px;
}

.sup-for-title {
  margin: 0;
  max-width: 650px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.25vw, 74px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -2.2px;
  color: #06173a;
}

.sup-for-title span {
  color: #128f8f;
}

.sup-for-text {
  max-width: 610px;
}

.sup-for-text p {
  margin: 0 0 18px;
  color: #14213d;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -0.1px;
}

.sup-for-text p:last-child {
  margin-bottom: 0;
}

.sup-for-icons-row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: start;
  max-width: 650px;
}

.sup-for-mini-card {
  text-align: center;
  padding: 0 10px;
}

.sup-for-mini-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 11px;
  border-radius: 50%;
  background: #f6efe5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sup-for-mini-icon svg {
  width: 42px;
  height: 42px;
  display: block;
}

.sup-for-mini-icon svg * {
  fill: none;
  stroke: #078d92;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sup-for-mini-title {
  font-family: Georgia, "Times New Roman", serif;
  color: #06173a;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 500;
}

.sup-for-mini-separator {
  width: 1px;
  height: 78px;
  margin-top: 18px;
  background: rgba(7, 24, 56, 0.18);
}

.sup-for-right {
  position: relative;
  z-index: 5;
}

.sup-for-image-box {
  position: relative;
  width: 100%;
  height: 820px;
  border-radius: 36px;
  overflow: visible;
}

.sup-for-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: 36px;
  box-shadow: 0 28px 64px rgba(7, 24, 56, 0.14);
}

.sup-for-badge {
  position: absolute;
  right: 24px;
  bottom: -34px;
  width: 174px;
  height: 174px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(7, 24, 56, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sup-for-badge-inner {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 2px solid #078d92;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
  color: #078d92;
}

.sup-for-badge-inner span {
  display: block;
  max-width: 118px;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 2.6px;
}

.sup-for-badge-inner svg {
  width: 70px;
  height: 50px;
  display: block;
}

.sup-for-badge-inner svg * {
  fill: none;
  stroke: #078d92;
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sup-for-bg-circle {
  position: absolute;
  z-index: 1;
  top: 52px;
  left: 48%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: #f6efe3;
  opacity: 0.78;
}

@media (max-width: 1180px) {
  .sup-for-section {
    padding: 54px 22px 78px;
  }

  .sup-for-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sup-for-left {
    padding-left: 10px;
    max-width: 900px;
  }

  .sup-for-title {
    max-width: 850px;
  }

  .sup-for-text,
  .sup-for-icons-row {
    max-width: 820px;
  }

  .sup-for-image-box {
    height: 640px;
    max-width: 850px;
    margin: 0 auto;
  }

  .sup-for-bg-circle {
    top: 580px;
    left: auto;
    right: -140px;
  }
}

@media (max-width: 760px) {
  .sup-for-section {
    padding: 42px 18px 76px;
  }

  .sup-for-section::before {
    inset: 8px;
    border-radius: 24px;
  }

  .sup-for-left {
    padding-left: 0;
  }

  .sup-for-brand {
    gap: 12px;
    margin-bottom: 42px;
    font-size: 21px;
  }

  .sup-for-brand-icon {
    width: 72px;
    height: 34px;
  }

  .sup-for-brand-icon svg {
    width: 72px;
    height: 34px;
  }

  .sup-for-label {
    font-size: 14px;
    letter-spacing: 2.4px;
    margin-bottom: 26px;
  }

  .sup-for-label::after {
    width: 100px;
    bottom: -12px;
  }

  .sup-for-title {
    font-size: 42px;
    line-height: 1.06;
    letter-spacing: -1.3px;
  }

  .sup-for-text p {
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 15px;
  }

  .sup-for-icons-row {
    grid-template-columns: 1fr 1fr;
    gap: 22px 10px;
    margin-top: 30px;
  }

  .sup-for-mini-separator {
    display: none;
  }

  .sup-for-mini-icon {
    width: 66px;
    height: 66px;
  }

  .sup-for-mini-icon svg {
    width: 38px;
    height: 38px;
  }

  .sup-for-mini-title {
    font-size: 16px;
  }

  .sup-for-image-box {
    height: 450px;
    border-radius: 28px;
  }

  .sup-for-image {
    border-radius: 28px;
  }

  .sup-for-badge {
    width: 122px;
    height: 122px;
    right: 16px;
    bottom: -34px;
  }

  .sup-for-badge-inner {
    width: 104px;
    height: 104px;
    gap: 5px;
  }

  .sup-for-badge-inner span {
    max-width: 82px;
    font-size: 7px;
    letter-spacing: 1.8px;
  }

  .sup-for-badge-inner svg {
    width: 48px;
    height: 34px;
  }

}

@media (max-width: 430px) {
  .sup-for-title {
    font-size: 36px;
  }

  .sup-for-text p {
    font-size: 15.5px;
  }

  .sup-for-image-box {
    height: 390px;
  }
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  background: var(--white);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
}

.faq-list summary {
  font-weight: 700;
  cursor: pointer;
}

.sup-about-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 34px 76px;
  background: #ffffff;
  color: #06173a;
  font-family: Inter, Arial, sans-serif;
}

.sup-about-container {
  position: relative;
  z-index: 3;
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 620px);
  gap: 72px;
  align-items: center;
}

.sup-about-content {
  position: relative;
  z-index: 4;
  max-width: 650px;
}

.sup-about-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 82px;
  color: #06173a;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.sup-about-brand-icon {
  width: 92px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sup-about-brand-icon svg {
  width: 92px;
  height: 36px;
  display: block;
}

.sup-about-brand-icon path,
.sup-about-wave path {
  fill: none;
  stroke: #078d92;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sup-about-brand-icon path {
  stroke-width: 4;
}

.sup-about-title {
  margin: 0 0 32px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6.2vw, 88px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -2.8px;
  color: #06173a;
}

.sup-about-title span {
  color: #128f8f;
}

.sup-about-text {
  margin: 0;
  max-width: 560px;
  color: #102043;
  font-size: 24px;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.2px;
}

.sup-about-buttons {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.sup-about-btn {
  min-height: 76px;
  padding: 0 28px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-decoration: none;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.sup-about-btn-primary {
  min-width: 300px;
  color: #ffffff;
  background: linear-gradient(135deg, #079ca1 0%, #057f84 100%);
  box-shadow: 0 18px 36px rgba(0, 120, 125, 0.24);
}

.sup-about-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(0, 120, 125, 0.32);
  color: #ffffff;
}

.sup-about-whatsapp {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sup-about-whatsapp svg {
  width: 40px;
  height: 40px;
  display: block;
}

.sup-about-whatsapp svg * {
  fill: none;
  stroke: #ffffff;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sup-about-btn-secondary {
  min-width: 275px;
  color: #078d92;
  background: #ffffff;
  border: 2px solid #078d92;
}

.sup-about-btn-secondary:hover {
  background: #effcfc;
  color: #078d92;
  transform: translateY(-2px);
}

.sup-about-arrow {
  font-size: 36px;
  line-height: 1;
  font-weight: 400;
  transform: translateY(-1px);
}

.sup-about-image-wrap {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 760px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 52px;
  box-shadow: 0 34px 80px rgba(7, 24, 56, 0.16);
}

.sup-about-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.sup-who-section {
  position: relative;
  overflow: hidden;
  padding: 72px 34px 76px;
  background: #ffffff;
  font-family: Inter, Arial, sans-serif;
  color: #06173a;
}

.sup-who-container {
  position: relative;
  z-index: 3;
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.98fr 1.12fr;
  gap: 72px;
  align-items: center;
}

.sup-who-left {
  position: relative;
  z-index: 4;
  max-width: 660px;
}

.sup-who-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 42px;
  color: #06173a;
  font-size: 23px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.sup-who-brand-icon {
  width: 88px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sup-who-brand-icon svg {
  width: 88px;
  height: 36px;
  display: block;
}

.sup-who-brand-icon path,
.sup-who-wave path {
  fill: none;
  stroke: #078d92;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sup-who-brand-icon path {
  stroke-width: 4;
}

.sup-who-label {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
  color: #078d92;
  font-size: 19px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 3px;
}

.sup-who-title {
  margin: 0 0 42px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -2.4px;
  color: #06173a;
}

.sup-who-title span {
  color: #128f8f;
}

.sup-who-text-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sup-who-text-item {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 30px;
  align-items: center;
}

.sup-who-icon-circle {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: #f6efe5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sup-who-icon-circle svg {
  width: 58px;
  height: 58px;
  display: block;
}

.sup-who-icon-circle svg * {
  fill: none;
  stroke: #078d92;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sup-who-copy p {
  margin: 0;
  color: #071838;
  font-size: 19px;
  line-height: 1.42;
  font-weight: 500;
  letter-spacing: -0.2px;
}

.sup-who-divider {
  width: calc(100% - 148px);
  height: 1px;
  margin: 25px 0 25px 148px;
  background: rgba(7, 24, 56, 0.13);
}

.sup-who-right {
  position: relative;
  z-index: 4;
}

.sup-who-image-wrap {
  position: relative;
  width: 100%;
  height: 760px;
  border-radius: 46px;
  overflow: hidden;
}

.sup-who-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: 46px;
  box-shadow: 0 32px 76px rgba(7, 24, 56, 0.16);
}

.sup-who-badge {
  position: absolute;
  right: -28px;
  bottom: -18px;
  width: 184px;
  height: 184px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 20px 44px rgba(7, 24, 56, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sup-who-badge-inner {
  width: 158px;
  height: 158px;
  border-radius: 50%;
  border: 2px solid #078d92;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #078d92;
  text-align: center;
}

.sup-who-badge-inner span {
  display: block;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 5px;
}

.sup-who-badge-inner svg {
  width: 58px;
  height: 46px;
  display: block;
}

.sup-who-badge-inner svg * {
  fill: none;
  stroke: #078d92;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sup-who-bg-circle {
  position: absolute;
  z-index: 1;
  width: 690px;
  height: 690px;
  top: -105px;
  right: 120px;
  border-radius: 50%;
  background: #f6efe3;
  opacity: 0.88;
}

.sup-who-wave {
  position: absolute;
  z-index: 2;
  opacity: 0.92;
}

.sup-who-wave svg {
  display: block;
}

.sup-who-wave path {
  stroke: #078d92;
  stroke-width: 3;
}

.sup-who-wave-top {
  top: 64px;
  right: -8px;
}

.sup-who-wave-top svg {
  width: 300px;
  height: 90px;
}

.sup-who-wave-bottom {
  left: -12px;
  bottom: 16px;
}

.sup-who-wave-bottom svg {
  width: 430px;
  height: 100px;
}

@media (max-width: 1180px) {
  .sup-who-section {
    padding: 64px 26px 72px;
  }

  .sup-who-container {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .sup-who-left {
    max-width: 900px;
  }

  .sup-who-image-wrap {
    height: 650px;
  }

  .sup-who-bg-circle {
    width: 560px;
    height: 560px;
    top: 560px;
    right: -150px;
  }
}

@media (max-width: 760px) {
  .sup-who-section {
    padding: 44px 18px 60px;
  }

  .sup-who-brand {
    gap: 12px;
    margin-bottom: 34px;
    font-size: 19px;
  }

  .sup-who-brand-icon {
    width: 70px;
  }

  .sup-who-brand-icon svg {
    width: 70px;
  }

  .sup-who-label {
    font-size: 15px;
    letter-spacing: 2.5px;
    margin-bottom: 24px;
  }

  .sup-who-title {
    font-size: 43px;
    line-height: 1.05;
    letter-spacing: -1.4px;
    margin-bottom: 30px;
  }

  .sup-who-text-item {
    grid-template-columns: 76px 1fr;
    gap: 18px;
    align-items: flex-start;
  }

  .sup-who-icon-circle {
    width: 70px;
    height: 70px;
  }

  .sup-who-icon-circle svg {
    width: 42px;
    height: 42px;
  }

  .sup-who-copy p {
    font-size: 16px;
    line-height: 1.5;
  }

  .sup-who-divider {
    width: calc(100% - 94px);
    margin: 22px 0 22px 94px;
  }

  .sup-who-image-wrap {
    height: 470px;
    border-radius: 32px;
  }

  .sup-who-image {
    border-radius: 32px;
  }

  .sup-who-badge {
    width: 122px;
    height: 122px;
    right: 14px;
    bottom: -32px;
  }

  .sup-who-badge-inner {
    width: 104px;
    height: 104px;
    gap: 6px;
  }

  .sup-who-badge-inner span {
    font-size: 9px;
    letter-spacing: 3px;
  }

  .sup-who-badge-inner svg {
    width: 42px;
    height: 32px;
  }

  .sup-who-wave-top {
    top: 20px;
    right: -120px;
    opacity: 0.35;
  }

  .sup-who-wave-bottom {
    left: -190px;
    bottom: 4px;
    opacity: 0.5;
  }
}

@media (max-width: 430px) {
  .sup-who-title {
    font-size: 38px;
  }

  .sup-who-copy p {
    font-size: 15.5px;
  }

  .sup-who-image-wrap {
    height: 400px;
  }
}

.sup-about-circle {
  position: absolute;
  z-index: 1;
  width: 640px;
  height: 640px;
  top: 28px;
  right: 370px;
  border-radius: 50%;
  background: #f6efe3;
  opacity: 0.9;
}

.sup-about-wave {
  position: absolute;
  z-index: 2;
  opacity: 0.45;
}

.sup-about-wave svg {
  display: block;
}

.sup-about-wave path {
  stroke: #078d92;
  stroke-width: 2.2;
}

.sup-about-wave-top {
  top: 58px;
  right: -12px;
}

.sup-about-wave-top svg {
  width: 256px;
  height: 70px;
}

.sup-about-wave-bottom {
  left: -56px;
  bottom: 24px;
}

.sup-about-wave-bottom svg {
  width: 430px;
  height: 104px;
}

.ssv-locations-section {
  width: 100%;
  padding: 32px 16px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.9), transparent 35%),
    linear-gradient(135deg, #f6efe4 0%, #efe4d3 100%);
  box-sizing: border-box;
  overflow: hidden;
}

.ssv-locations-card {
  position: relative;
  max-width: 1420px;
  min-height: 720px;
  margin: 0 auto;
  padding: 70px 74px;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 42%, rgba(255,255,255,0.45) 57%, rgba(255,255,255,0.06) 100%),
    url("images/sup-board-tour-valencia-clear-water-cov.png") center right / cover no-repeat;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 22px 60px rgba(5, 24, 54, 0.16);
  box-sizing: border-box;
}

.ssv-content,
.ssv-top-label {
  position: relative;
  z-index: 3;
}

.ssv-content {
  max-width: 660px;
}

.ssv-top-label {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 46px;
  color: #0d7f93;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ssv-pin-gold {
  display: inline-flex;
  width: 28px;
  height: 28px;
  color: #d8a04e;
}

.ssv-pin-gold svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.ssv-content h2 {
  margin: 0;
  color: #061f4a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.1vw, 82px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.ssv-content p {
  max-width: 650px;
  margin: 0 0 26px;
  color: #092653;
  font-family: Arial, sans-serif;
  font-size: 21px;
  line-height: 1.5;
  font-weight: 400;
}

.ssv-location-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(240px, 1fr));
  gap: 12px 18px;
  max-width: 620px;
  margin-top: 34px;
}

.ssv-location-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 0 24px;
  border: 1.6px solid #092653;
  border-radius: 8px;
  background: rgba(255,255,255,0.62);
  color: #092653;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(5, 24, 54, 0.04);
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.ssv-location-btn:hover {
  background: #092653;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(5, 24, 54, 0.18);
}

.ssv-btn-pin {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.ssv-btn-pin::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  top: 5px;
  left: 5px;
  border: 2px solid currentColor;
  border-radius: 50%;
}


@media (max-width: 1024px) {
  .ssv-locations-card {
    padding: 56px 44px;
    background:
      linear-gradient(90deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 62%, rgba(255,255,255,0.45) 100%),
      url("images/sup-board-tour-valencia-clear-water-cov.png") center right / cover no-repeat;
  }

  .ssv-content {
    max-width: 620px;
  }

  }
}

@media (max-width: 767px) {
  .ssv-locations-section {
    padding: 18px 10px;
  }

  .ssv-locations-card {
    min-height: auto;
    padding: 38px 22px 44px;
    border-radius: 24px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.96) 62%, rgba(255,255,255,0.72) 100%),
      url("images/sup-board-tour-valencia-clear-water-cov.png") center bottom / cover no-repeat;
  }

  .ssv-top-label {
    margin-bottom: 30px;
    font-size: 11px;
    letter-spacing: 0.12em;
    gap: 9px;
  }

  .ssv-content h2 {
    font-size: 42px;
    line-height: 1.03;
  }

  .ssv-content p {
    font-size: 17px;
    line-height: 1.55;
  }

  .ssv-location-buttons {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .ssv-location-btn {
    min-height: 54px;
    font-size: 15px;
    padding: 0 18px;
    background: rgba(255,255,255,0.78);
  }
}

@media (max-width: 430px) {
  .ssv-content h2 {
    font-size: 38px;
  }

  .ssv-content p {
    font-size: 15px;
  }
}

@media (max-width: 1180px) {
  .sup-about-hero {
    padding: 70px 26px;
  }

  .sup-about-container {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .sup-about-content {
    max-width: 850px;
  }

  .sup-about-brand {
    margin-bottom: 52px;
  }

  .sup-about-image-wrap {
    height: 640px;
  }

  .sup-about-circle {
    width: 560px;
    height: 560px;
    top: 520px;
    right: -140px;
  }
}

@media (max-width: 760px) {
  .sup-about-hero {
    padding: 46px 18px 58px;
  }

  .sup-about-brand {
    gap: 12px;
    margin-bottom: 42px;
    font-size: 19px;
  }

  .sup-about-brand-icon {
    width: 72px;
  }

  .sup-about-brand-icon svg {
    width: 72px;
  }

  .sup-about-title {
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: -1.4px;
    margin-bottom: 22px;
  }

  .sup-about-text {
    font-size: 18px;
    line-height: 1.55;
  }

  .sup-about-buttons {
    margin-top: 30px;
    gap: 14px;
  }

  .sup-about-btn {
    width: 100%;
    min-width: 0;
    min-height: 64px;
    font-size: 19px;
  }

  .sup-about-image-wrap {
    height: 460px;
    border-radius: 34px;
  }

  .sup-about-circle {
    width: 420px;
    height: 420px;
    top: 560px;
    right: -170px;
  }

  .sup-about-wave-top {
    top: 18px;
    right: -80px;
  }

  .sup-about-wave-bottom {
    left: -160px;
    bottom: 8px;
  }
}

@media (max-width: 430px) {
  .sup-about-title {
    font-size: 40px;
  }

  .sup-about-text {
    font-size: 17px;
  }

  .sup-about-image-wrap {
    height: 390px;
  }
}

.contact-box {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  border-radius: 1.5rem;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-details a {
  color: var(--white);
}

.footer {
  padding: 1.2rem 0 2rem;
  color: var(--muted);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  border-top: 1px solid #e4e9ee;
  padding-top: 1.1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-content div {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Footer helper styles copied for the unified footer */
.footer h4 {
  margin: 0 0 0.6rem;
  color: #061b3a;
  font-size: 15px;
  font-weight: 900;
}

.ss-footer-links {
  display: grid;
  gap: 6px;
}

.ss-footer-links a {
  color: rgba(6, 27, 58, 0.78);
  font-size: 13px;
  text-decoration: none;
}

/* Rental page hero layout */
.rental-hero {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem 0;
}

.rental-hero-content {
  max-width: 760px;
}

.rental-hero-visual img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 18px 50px rgba(6,27,58,0.12);
}

@media (max-width: 900px) {
  .rental-hero {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .rental-hero-visual img {
    height: 260px;
  }
}

/* Remove default blue gradient for rental page and use neutral background */
.rental-hero-section {
  background-image: url('images/sup-board-rental-valencia-beach.png');
  background-size: cover;
  background-position: center;
  position: relative;
  color: #ffffff;
  padding: 4rem 0;
  min-height: 520px;
}

.rental-hero-section .eyebrow {
  color: rgba(255,255,255,0.95);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.rental-hero-section h1 {
  color: var(--navy);
}

.rental-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,17,36,0.56) 0%, rgba(3,17,36,0.48) 30%, rgba(3,17,36,0.12) 100%);
  z-index: 0;
}

.rental-hero {
  position: relative;
  z-index: 2;
}

.rental-hero-section h1 {
  color: #ffffff;
  font-size: 2.53rem; /* уменьшен в 1.5 раза относительно 3.8rem */
  line-height: 1.05;
  text-shadow: 0 6px 18px rgba(0,0,0,0.55);
}

.rental-hero-section p {
  color: rgba(255,255,255,0.95);
  text-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

.rental-benefits {
  padding: 2rem 0;
}

.rental-benefits-grid {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 1.25rem;
  align-items: center;
}

.benefits-left h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  color: #082f49;
}

.benefits-sub {
  margin: 0;
  color: #475a6c;
}

.rental-benefits .benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.rental-benefits .benefits-list li {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.35rem 0;
  color: #082f49;
  font-weight: 700;
}

.benefit-check {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, #159a9c, #2ec4c9);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 800;
}

.benefit-check svg {
  width: 18px;
  height: 18px;
  display: block;
}

.rental-benefits .benefit-text strong {
  color: #082f49;
}

@media (max-width: 900px) {
  .rental-benefits-grid {
    grid-template-columns: 1fr;
  }
}

.rental-hero-section .btn-primary {
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.rental-hero-section .btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
}



@media (max-width: 900px) {
  .hero-content,
  .rental-grid,
  .about-grid,
  .contact-box,
  .card-grid,
  .page-links-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

.mobile-menu-checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.mobile-menu-btn {
  display: none;
}

@media (max-width: 640px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-radius: 1.25rem;
    padding: 0.65rem 0.9rem;
  }

  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.9rem;
    background: rgba(19, 94, 125, 0.08);
    color: #0f2430;
    font-size: 1.3rem;
    cursor: pointer;
    flex-shrink: 0;
  }

  .mobile-menu-btn::before {
    content: "☰";
  }

  .mobile-menu-checkbox:checked ~ .mobile-menu-btn::before {
    content: "✕";
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    background: #ffffff;
    border: 1px solid rgba(7, 38, 58, 0.08);
    border-radius: 1.25rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    padding: 0.6rem;
  }

  .mobile-menu-checkbox:checked ~ .nav-links {
    display: flex;
  }

  .nav-links > a,
  .nav-links > .nav-item > .nav-dropdown-trigger {
    padding: 0.75rem 0.9rem;
  }

  .nav-item {
    width: 100%;
  }

  .section {
    padding: 4rem 0;
  }

  .contact-box {
    padding: 1.4rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Premium FAQ and CTA styles */
.premium-faq-section {
  background: linear-gradient(180deg, #f8fbfc 0%, #ffffff 100%);
}
.premium-faq {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(6, 27, 58, 0.06);
}
.premium-faq .premium-why-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  color: #06173a;
}
.premium-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1.25rem;
}
.faq-item h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  color: #082f49;
}
.faq-item p {
  margin: 0;
  color: #415361;
}
.premium-cta h2 {
  margin: 1.2rem 0 0.4rem;
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  color: #06173a;
}
.premium-cta p {
  margin: 0 0 0.8rem;
  color: #415361;
}
.cta-buttons .btn {
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .premium-faq-grid { grid-template-columns: 1fr; }
  .premium-faq { padding: 1rem; }
}

/* FAQ — rental style adjustments */
.faq-rental-style .muted {
  color: var(--muted);
  margin-top: 0.35rem;
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem 2rem;
  margin-top: 0.75rem;
}
.faq-item h3 {
  margin: 0 0 0.35rem;
  color: #082f49;
  font-size: 1rem;
}
.faq-item p { margin: 0; color: #475a6c; }
.center-cta { display:flex; gap:0.75rem; margin-top:1rem; align-items:center; }
.center-cta .btn { min-width: 190px; }

@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; }
  .center-cta { flex-direction:column; align-items:stretch; }
  .center-cta .btn { width:100%; }
}

/* FAQ page (faq.html) — hero photo + Style 1-5 rotation, section-specific bits */

.sup-faq-bg-faqpage {
  background-image: url("images/sup-routes-valencia-alicante-benidorm-collage.png");
}

.sup-faq-bg-prices {
  background-image: url("images/sup-tours-paddle-board-rental-valencia.png");
}

.sup-faq-bg-booking {
  background-image: url("images/paddleboarding-canyon-valencia-drone.png");
}

.sup-rental-final-bg-equipment {
  background-image: url("images/sup-board-rental-valencia-beach.png");
}

/* Style 1 groups — inline Q&A stack replacing tags/buttons */
.faq-inline-qa-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.faq-inline-qa strong {
  display: block;
  color: #06173a;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.faq-inline-qa p {
  margin: 0;
  color: #4d6b7f;
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Style 5 (Equipment group) — in-flow Q&A list, not overlaid on the photo */
.sup-rental-final-qa {
  display: grid;
  gap: 1.1rem;
  max-width: 620px;
  margin-top: 8px;
}

.sup-rental-final-qa-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.sup-rental-final-qa-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 2px solid #0e9a9f;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: #ffffff;
}

.sup-rental-final-qa-body strong {
  display: block;
  color: #061b3a;
  font-size: 17px;
  margin-bottom: 4px;
}

.sup-rental-final-qa-body p {
  margin: 0;
  color: #3a4b5c;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .sup-rental-final-qa-body strong {
    font-size: 16px;
  }
}

/* SUP Routes from Valencia (tours.html) — "Style 6": text + photo collage, route chain, bottom CTA */

.sup-local-routes-section {
  padding: 5rem 0;
  background: #ffffff;
}

.sup-local-routes-wrap {
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.sup-local-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 3rem;
}

.sup-local-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: #159a9c;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.sup-pin {
  color: #159a9c;
  font-size: 0.7rem;
}

.sup-local-left h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  line-height: 1.15;
  letter-spacing: -1px;
  color: #082f49;
}

.sup-local-left h2 span {
  color: #159a9c;
}

.sup-local-line {
  width: 5rem;
  height: 0.3rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #159a9c, rgba(21, 154, 156, 0.3));
  margin: 1.5rem 0;
}

.sup-local-left p {
  margin: 0 0 1.1rem;
  color: #4d6b7f;
  line-height: 1.85;
}

.sup-local-left p strong {
  color: #078d92;
  font-weight: 700;
}

.sup-local-right {
  display: grid;
  gap: 1rem;
}

.sup-photo-card {
  position: relative;
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(8, 47, 73, 0.12);
}

.sup-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sup-photo-valencia {
  aspect-ratio: 16 / 10;
}

.sup-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sup-photo-row .sup-photo-card {
  aspect-ratio: 1 / 1;
}

.sup-photo-label {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.9rem;
  border-radius: 1rem;
  background: rgba(6, 23, 58, 0.55);
  backdrop-filter: blur(4px);
  color: #ffffff;
}

.sup-label-icon {
  flex: 0 0 2.1rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.sup-photo-label strong {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.sup-photo-label span {
  display: block;
  font-size: 0.78rem;
  opacity: 0.85;
}

.sup-location-chain {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.6rem;
  border-radius: 1.6rem;
  background: #f7fbfc;
  border: 1px solid rgba(21, 154, 156, 0.14);
  margin-bottom: 2rem;
}

.sup-chain-item {
  display: grid;
  justify-items: center;
  gap: 0.4rem;
  min-width: 4.5rem;
  text-align: center;
}

.sup-chain-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(8, 47, 73, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #6a7f8f;
}

.sup-chain-item strong {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: #435a6c;
  line-height: 1.25;
}

.sup-chain-item.active-teal .sup-chain-icon {
  background: #159a9c;
  border-color: #159a9c;
  color: #ffffff;
}

.sup-chain-item.active-teal strong {
  color: #0d7d80;
}

.sup-chain-item.active-green .sup-chain-icon {
  background: #4caf7d;
  border-color: #4caf7d;
  color: #ffffff;
}

.sup-chain-item.active-green strong {
  color: #2f8c5f;
}

.sup-chain-item.active-orange .sup-chain-icon {
  background: #e08a3c;
  border-color: #e08a3c;
  color: #ffffff;
}

.sup-chain-item.active-orange strong {
  color: #c06e24;
}

.sup-chain-dots {
  flex: 1 1 1.2rem;
  min-width: 0.8rem;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(21, 154, 156, 0.35) 0 4px, transparent 4px 8px);
}

.sup-bottom-cta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.sup-route-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #159a9c, #0a6f78);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(21, 154, 156, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sup-route-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(21, 154, 156, 0.3);
}

.sup-route-whatsapp-btn span {
  font-size: 1.1rem;
}

.sup-hand-arrow {
  font-size: 1.8rem;
  color: #159a9c;
  transform: rotate(-8deg);
}

.sup-hand-text {
  color: #435a6c;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .sup-local-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .sup-location-chain {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .sup-bottom-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Prices page (prices.html) — Style 1-7 rotation, section-specific bits */

.sup-faq-bg-priceshero {
  background-image: url("images/sup-board-experience-valencia-coast.png");
}

.sup-faq-bg-costablanca {
  background-image: url("images/sup-tours-paddle-board-rental-valencia.png");
}

.sup-rental-final-bg-included {
  background-image: url("images/paddle-board-rental-valencia-beach.png");
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(21, 154, 156, 0.1);
  color: #078d92;
  font-weight: 800;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.price-tag small {
  font-weight: 600;
  font-size: 0.75rem;
  color: #4d6b7f;
}

.sup-rental-card-body .price-tag {
  margin-top: 0.6rem;
}

/* Contact page (contact.html) — Style 1-7 rotation, section-specific bits */

.sup-faq-bg-contacthero {
  background-image: url("images/sup-board-experience-valencia-coast.png");
}

.sup-faq-bg-contactfaq {
  background-image: url("images/guided-sup-tour-valencia.png");
}

.sup-rental-final-bg-howtobook {
  background-image: url("images/sup-board-rental-valencia-beach-single-board.png");
}

/* Find Us — map + address block */

.sup-find-us-section {
  padding: 5rem 0;
  background: #f7fbfc;
}

.sup-find-us-container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.sup-find-us-map {
  border-radius: 1.8rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(8, 47, 73, 0.1);
  aspect-ratio: 4 / 3;
}

.sup-find-us-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.sup-find-us-eyebrow {
  display: inline-flex;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: #159a9c;
  font-size: 0.85rem;
  margin: 0 0 0.75rem;
}

.sup-find-us-info h2 {
  margin: 0 0 1.1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -1px;
  color: #082f49;
}

.sup-find-us-info h2 span {
  color: #159a9c;
}

.sup-find-us-text {
  margin: 0 0 1.6rem;
  color: #4d6b7f;
  line-height: 1.8;
}

.sup-find-us-text strong {
  color: #078d92;
}

.sup-find-us-address {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid rgba(21, 154, 156, 0.14);
  border-radius: 1.2rem;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.6rem;
  box-shadow: 0 16px 36px rgba(8, 47, 73, 0.06);
}

.sup-find-us-address-icon {
  font-size: 1.4rem;
}

.sup-find-us-address strong {
  display: block;
  color: #06173a;
  margin-bottom: 0.25rem;
}

.sup-find-us-address p {
  margin: 0 0 0.25rem;
  color: #082f49;
  font-weight: 600;
}

.sup-find-us-address span {
  display: block;
  color: #6a8090;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .sup-find-us-container {
    grid-template-columns: 1fr;
  }

  .sup-find-us-map {
    aspect-ratio: 16 / 10;
  }
}

/* Route pages (route-*.html) — background-image overrides */

.sup-faq-bg-valgran {
  background-image: url("images/sup-board-rental-valencia-beach-single-board.png");
}

.sup-faq-bg-valcanyon {
  background-image: url("images/sup-board-experience-valencia-coast.png");
}

.sup-rental-final-bg-canyon {
  background-image: url("images/guided-sup-tour-valencia.png");
}

.sup-faq-bg-sunrise {
  background-image: url("images/cala-granadella-sup-excursion-javea-valencia.png");
}

.sup-rental-final-bg-sunrise {
  background-image: url("images/sup-board-rental-valencia-beach.png");
}

.sup-faq-bg-bengran {
  background-image: url("images/cortes-de-pallas-canyon-sup-excursion-valencia.png");
}

.sup-faq-bg-aligran {
  background-image: url("images/valencia-malvarrosa-beach-sunrise.png");
}

.sup-rental-final-bg-alicante {
  background-image: url("images/sup-board-tour-valencia-clear-water-cov.png");
}

/* tours.html "SUP Routes from Valencia..." block — heading gap after removing
   the divider line, and plain photos with a caption below (no overlay on the image) */

.sup-local-title-gap {
  margin-bottom: 1.5rem;
}

.sup-photo-card.tours-route-photo {
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
}

.tours-route-photo-frame {
  overflow: hidden;
}

.sup-photo-valencia.tours-route-photo .tours-route-photo-frame {
  aspect-ratio: 16 / 10;
}

.sup-photo-row .tours-route-photo .tours-route-photo-frame {
  aspect-ratio: 1 / 1;
}

.tours-route-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tours-route-photo-caption {
  padding: 0.85rem 1rem;
  background: #ffffff;
}

.tours-route-photo-caption strong {
  display: block;
  color: #06173a;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.tours-route-photo-caption span {
  display: block;
  color: #6a7f8f;
  font-size: 0.78rem;
  margin-top: 0.15rem;
}
