:root {
  --petrol: #2E4A59;
  --petrol-deep: #25404E;
  --petrol-soft: #3A5666;
  --taupe: #A2937D;
  --taupe-light: #B7A991;
  --ink: #26343B;
  --muted: #657078;
  --bg: #F4F6F7;
  --bg-alt: #EAEEF0;
  --line: #DDE3E5;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(38, 52, 59, .08);
  --shadow-lg: 0 20px 50px rgba(38, 52, 59, .14);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--petrol);
  color: #fff;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: 'Poppins';
  font-weight: 600;
  font-size: .95rem;
  transition: .25s;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background: var(--petrol-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn.ghost {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .5);
  color: #fff;
}
.btn.ghost:hover {
  background: rgba(255, 255, 255, .12);
}
.btn.taupe {
  background: var(--taupe);
}
.btn.taupe:hover {
  background: var(--taupe-light);
}
.eyebrow {
  font-family: 'Poppins';
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--taupe);
}
section {
  position: relative;
}
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: .3s;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.nav-logo img {
  height: 60px;
  width: auto;
}
.menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.menu > li {
  position: relative;
}
.menu > li > a {
  font-family: 'Poppins';
  font-weight: 500;
  font-size: .88rem;
  color: var(--ink);
  padding: 10px 12px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: .2s;
}
.menu > li > a:hover, .menu > li.active > a {
  color: var(--petrol);
  background: var(--bg);
}
.caret {
  width: 9px;
  height: 9px;
  opacity: .55;
}
.dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  min-width: 280px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .22s;
  list-style: none;
}
.menu > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .87rem;
  color: var(--muted);
  transition: .18s;
}
.dropdown li a:hover {
  background: var(--bg);
  color: var(--petrol);
  padding-left: 18px;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.btn-aula {
  background: var(--taupe);
  color: #fff;
  padding: 11px 20px;
  border-radius: 8px;
  font-family: 'Poppins';
  font-weight: 600;
  font-size: .82rem;
  transition: .25s;
  white-space: nowrap;
}
.btn-aula:hover {
  background: var(--petrol);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--petrol);
  border-radius: 2px;
}
.hero {
  background: linear-gradient(120deg, var(--petrol-deep) 0%, var(--petrol) 55%, var(--petrol-soft) 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 20%, rgba(162, 147, 125, .28), transparent 42%), radial-gradient(circle at 12% 85%, rgba(255, 255, 255, .06), transparent 40%);
  pointer-events: none;
}
.hero-bars {
  position: absolute;
  right: 6%;
  top: 0;
  bottom: 0;
  display: flex;
  gap: 9px;
  align-items: center;
  opacity: .22;
}
.hero-bars i {
  display: block;
  width: 3px;
  background: #fff;
  border-radius: 3px;
}
.hero-image {
  display: none;
}
@media (min-width: 1024px) {
  .hero-image {
    display: block;
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 360px;
    height: 480px;
  }
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 6px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  }
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 96px 0 104px;
  max-width: 760px;
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .hero-inner {
    max-width: 540px;
  }
}
.hero .eyebrow {
  color: var(--taupe-light);
}
.hero h1 {
  font-weight: 800;
  font-size: clamp(2.4rem, 5.4vw, 4.1rem);
  line-height: 1.05;
  margin: 20px 0 8px;
  letter-spacing: -.01em;
}
.hero h1 .accent {
  color: var(--taupe-light);
}
.hero p.lead {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, .86);
  max-width: 560px;
  margin-bottom: 34px;
  font-weight: 300;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-badge {
  margin-top: 40px;
  display: inline-flex;
  gap: 26px;
  flex-wrap: wrap;
  font-size: .82rem;
  color: rgba(255, 255, 255, .7);
}
.hero-badge b {
  color: #fff;
  font-family: 'Poppins';
  font-weight: 600;
  font-size: 1.05rem;
  display: block;
}
.intro {
  padding: 92px 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.logo-panel {
  background: linear-gradient(150deg, var(--bg) 0%, var(--bg-alt) 100%);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
}
.logo-panel::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 147, 125, .18), transparent 70%);
  top: -60px;
  right: -60px;
}
.logo-panel img {
  width: 70%;
  max-width: 280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.logo-panel .tag {
  margin-top: 26px;
  font-size: .92rem;
  color: var(--muted);
  font-style: italic;
  position: relative;
  z-index: 2;
}
.intro-copy h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--petrol);
  line-height: 1.12;
  margin-bottom: 20px;
}
.intro-copy p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.intro-copy strong {
  color: var(--ink);
  font-weight: 600;
}
.intro-copy .btn {
  margin-top: 12px;
}
.cstrip {
  background: var(--petrol);
  color: #fff;
}
.cstrip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.cstrip-item {
  padding: 34px 30px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .12);
  transition: .25s;
}
.cstrip-item:last-child {
  border-right: none;
}
.cstrip-item:hover {
  background: var(--petrol-soft);
}
.cstrip-item .ic {
  width: 34px;
  height: 34px;
  margin: 0 auto 12px;
  opacity: .85;
}
.cstrip-item .lbl {
  font-family: 'Poppins';
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--taupe-light);
  margin-bottom: 6px;
}
.cstrip-item .val {
  font-size: 1.02rem;
  font-weight: 500;
}
.cstrip-item .val small {
  display: block;
  font-size: .86rem;
  opacity: .8;
  font-weight: 400;
}
.services {
  padding: 96px 0;
  background: var(--bg);
}
.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 54px;
}
.sec-head h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--petrol);
  margin: 12px 0 14px;
  line-height: 1.1;
}
.sec-head p {
  color: var(--muted);
  font-size: 1.05rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--line);
  transition: .28s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--taupe);
  transform: scaleY(0);
  transform-origin: top;
  transition: .3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card:hover::before {
  transform: scaleY(1);
}
.card .cic {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--petrol);
}
.card:hover .cic {
  background: var(--petrol);
  color: #fff;
}
.card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--petrol);
  margin-bottom: 8px;
}
.card p {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.card ul {
  list-style: none;
  font-size: .84rem;
  color: var(--muted);
}
.card ul li {
  padding: 4px 0 4px 16px;
  position: relative;
}
.card ul li::before {
  content: "\203A";
  position: absolute;
  left: 0;
  color: var(--taupe);
  font-weight: 700;
}
.vmv {
  padding: 100px 0;
  background: #fff;
}
.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}
.vmv-card {
  background: var(--bg);
  border-radius: 18px;
  padding: 40px 34px;
  position: relative;
  overflow: hidden;
  transition: .3s;
}
.vmv-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 22px solid rgba(46, 74, 89, .05);
  right: -70px;
  bottom: -70px;
}
.vmv-card:nth-child(2) {
  transform: translateY(38px);
}
.vmv-card:nth-child(3) {
  transform: translateY(76px);
}
.vmv-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.vmv-card:nth-child(2):hover {
  transform: translateY(32px);
}
.vmv-card:nth-child(3):hover {
  transform: translateY(70px);
}
.vmv-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--petrol);
  margin-bottom: 14px;
}
.vmv-card .kicker {
  font-family: 'Poppins';
  font-weight: 600;
  font-size: .82rem;
  color: var(--taupe);
  margin-bottom: 10px;
}
.vmv-card p {
  font-size: 1.02rem;
  color: var(--ink);
  position: relative;
  z-index: 2;
  line-height: 1.65;
}
.val-list {
  list-style: none;
  position: relative;
  z-index: 2;
}
.val-list li {
  font-size: 1rem;
  padding: 7px 0 7px 24px;
  position: relative;
  color: var(--ink);
  border-bottom: 1px solid rgba(46, 74, 89, .07);
}
.val-list li:last-child {
  border-bottom: none;
}
.val-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--taupe);
}
.about {
  padding: 100px 0;
  background: var(--bg);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 56px;
  align-items: center;
}
.about-copy h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--petrol);
  line-height: 1.05;
  margin-bottom: 4px;
}
.about-copy .role {
  font-family: 'Poppins';
  font-weight: 600;
  color: var(--taupe);
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.about-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}
.about-copy .quote {
  border-left: 3px solid var(--taupe);
  padding-left: 20px;
  margin-top: 20px;
  font-style: italic;
  color: var(--ink);
}
.about-tile img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.capa {
  padding: 100px 0;
  background: #fff;
}
.capa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.capa-col {
  background: var(--bg);
  border-radius: 18px;
  padding: 40px 36px;
}
.capa-col h3 {
  font-family: 'Poppins';
  font-weight: 700;
  color: var(--petrol);
  font-size: 1.4rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.capa-col h3 .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--taupe);
}
.capa-list {
  list-style: none;
}
.capa-list li {
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.capa-list li:last-child {
  border-bottom: none;
}
.capa-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  width: 100%;
  color: inherit;
  font-size: 1rem;
  transition: .2s ease;
}
.capa-list li a:hover {
  padding-left: 8px;
  color: var(--petrol);
}
.capa-list li .num {
  font-family: 'Poppins';
  font-weight: 700;
  color: var(--taupe);
  font-size: .85rem;
  min-width: 24px;
}
.badge {
  display: inline-block;
  background: var(--taupe);
  color: #fff;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 3px 8px;
  border-radius: 20px;
  margin-left: auto;
  font-family: 'Poppins';
  text-transform: uppercase;
}
.badge.live {
  background: #c0563f;
}
.news {
  padding: 100px 0;
  background: var(--bg);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.news-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: .28s;
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.news-thumb {
  height: 170px;
  background: linear-gradient(135deg, var(--petrol) 0%, var(--petrol-soft) 100%);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.news-thumb.alt {
  background: linear-gradient(135deg, var(--taupe) 0%, var(--taupe-light) 100%);
}
.news-thumb.alt2 {
  background: linear-gradient(135deg, #3d5966 0%, #557080 100%);
}
.news-thumb .tag {
  background: rgba(255, 255, 255, .92);
  color: var(--petrol);
  font-family: 'Poppins';
  font-weight: 600;
  font-size: .66rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.news-body {
  padding: 22px 24px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-body .date {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 8px;
}
.news-body h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 10px;
}
.news-body p {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 16px;
  flex: 1;
}
.news-body a.read {
  font-family: 'Poppins';
  font-weight: 600;
  font-size: .85rem;
  color: var(--petrol);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.news-body a.read:hover {
  gap: 10px;
}
.cta-banner {
  padding: 82px 0;
  background: linear-gradient(120deg, var(--petrol-deep), var(--petrol));
  color: #fff;
  text-align: center;
}
.cta-banner h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.cta-banner p {
  color: rgba(255, 255, 255, .82);
  max-width: 560px;
  margin: 0 auto 30px;
  font-size: 1.08rem;
}
footer {
  background: var(--petrol-deep);
  color: rgba(255, 255, 255, .75);
  padding: 70px 0 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.foot-brand .foot-logo {
  height: 74px;
  width: auto;
  background: white;
  padding: 10px 14px;
  border-radius: 12px;
}
.foot-brand p {
  margin-top: 18px;
  font-size: .92rem;
  line-height: 1.7;
  max-width: 280px;
}
.foot-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}
.foot-social a {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .25s;
}
.foot-social a:hover {
  background: var(--taupe);
  transform: translateY(-3px);
}
footer h4 {
  font-family: 'Poppins';
  font-weight: 600;
  color: #fff;
  font-size: .95rem;
  margin-bottom: 20px;
  letter-spacing: .03em;
}
.foot-links {
  list-style: none;
}
.foot-links li {
  margin-bottom: 11px;
}
.foot-links a {
  font-size: .9rem;
  transition: .2s;
}
.foot-links a:hover {
  color: #fff;
  padding-left: 5px;
}
.foot-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .9rem;
  align-items: flex-start;
}
.foot-contact .ic {
  opacity: .7;
  flex: none;
  margin-top: 2px;
}
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 22px 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
}
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .45);
  z-index: 200;
  transition: .25s;
}
.wa-float:hover {
  transform: scale(1.08);
}
@media (max-width: 980px) {
  .intro-grid, .about-grid, .capa-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .cards, .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vmv-grid {
    grid-template-columns: 1fr;
  }
  .vmv-card:nth-child(2), .vmv-card:nth-child(3) {
    transform: none;
  }
  .vmv-card:nth-child(2):hover, .vmv-card:nth-child(3):hover {
    transform: translateY(-6px);
  }
  .cstrip-grid {
    grid-template-columns: 1fr;
  }
  .cstrip-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px;
  }
  .menu, .nav-cta .btn-aula {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .menu.open {
    display: flex;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    padding: 14px;
    box-shadow: var(--shadow-lg);
    align-items: stretch;
    gap: 2px;
  }
  .menu.open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 12px;
    display: none;
  }
  .menu.open > li.exp .dropdown {
    display: block;
  }
}
@media (max-width: 560px) {
  .cards, .news-grid, .foot-grid {
    grid-template-columns: 1fr;
  }
  .hero-inner {
    padding: 66px 0 74px;
  }
  .wrap {
    padding: 0 18px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
.fade {
  opacity: 0;
  transform: translateY(24px);
  transition: .7s cubic-bezier(.2, .7, .2, 1);
}
.fade.in {
  opacity: 1;
  transform: none;
}

/* Animation #1: Organic Floating Blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  -webkit-filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.28;
  mix-blend-mode: screen;
}

.blob-1 {
  width: 320px;
  height: 320px;
  background: var(--taupe);
  top: 10%;
  left: 15%;
  animation: float-blob-1 22s infinite alternate ease-in-out;
}

.blob-2 {
  width: 420px;
  height: 420px;
  background: var(--petrol-soft);
  bottom: 5%;
  right: 10%;
  animation: float-blob-2 26s infinite alternate ease-in-out;
}

@keyframes float-blob-1 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(90px, 40px) scale(1.12);
  }
  100% {
    transform: translate(-30px, 80px) scale(0.95);
  }
}

@keyframes float-blob-2 {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-90px, -50px) scale(0.92);
  }
  100% {
    transform: translate(50px, 50px) scale(1.1);
  }
}

/* Under Construction Page */
.under-construction-section {
  position: relative;
  background: linear-gradient(120deg, var(--petrol-deep) 0%, var(--petrol) 55%, var(--petrol-soft) 100%);
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.construction-card {
  position: relative;
  z-index: 5;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 60px 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.construction-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe-light);
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: pulse-icon 2s infinite alternate ease-in-out;
}

.construction-card h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.construction-lead {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 12px;
}

.construction-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 34px;
}

.construction-actions .btn {
  padding: 14px 40px;
  font-size: 1rem;
}

@keyframes pulse-icon {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
  }
  100% {
    transform: scale(1.05);
    box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
  }
}

/* Course Detail Page Styling */
.course-hero {
  position: relative;
  background: linear-gradient(120deg, var(--petrol-deep) 0%, var(--petrol) 55%, var(--petrol-soft) 100%);
  color: #fff;
  overflow: hidden;
}

.course-hero-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0 90px;
  max-width: 800px;
}

.course-hero h1 {
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.1;
  margin: 18px 0 10px;
  letter-spacing: -.01em;
}

.course-hero p.lead {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, .88);
  font-weight: 300;
  line-height: 1.6;
}

.course-body {
  padding: 80px 0 100px;
  background: #fff;
}

.course-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}

.course-main > div {
  margin-bottom: 50px;
}

.course-main > div:last-child {
  margin-bottom: 0;
}

.course-main h2 {
  font-size: 1.65rem;
  color: var(--petrol);
  margin-bottom: 22px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.course-main h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--taupe);
  border-radius: 2px;
}

.course-desc p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* Syllabus checkmark list */
.syllabus-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.syllabus-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.5;
}

.syllabus-list li .ic {
  color: var(--taupe);
  flex: none;
  margin-top: 3px;
}

/* Instructor card */
.instructor-card {
  display: flex;
  gap: 24px;
  background: var(--bg);
  border-radius: 18px;
  padding: 30px;
  border: 1px solid var(--line);
}

.instructor-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: var(--shadow);
  flex: none;
}

.instructor-info h3 {
  font-size: 1.15rem;
  color: var(--petrol);
  margin-bottom: 2px;
  font-weight: 600;
}

.instructor-role {
  display: block;
  font-family: 'Poppins';
  font-weight: 600;
  color: var(--taupe);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}

.instructor-info p {
  font-size: .92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Sidebar Glass Card */
.course-meta-card {
  position: sticky;
  top: 110px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 38px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.course-meta-card h3 {
  font-family: 'Poppins';
  font-weight: 700;
  color: var(--petrol);
  font-size: 1.25rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.meta-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.meta-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ink);
}

.meta-list li svg {
  color: var(--taupe);
  flex: none;
}

.meta-list li div {
  display: flex;
  flex-direction: column;
}

.meta-list li strong {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  font-weight: 500;
}

.meta-list li span {
  font-size: .98rem;
  font-weight: 600;
  color: var(--petrol-deep);
}

.price-box {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--line);
  text-align: center;
}

.price-label {
  display: block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 4px;
}

.price-val {
  display: block;
  font-family: 'Poppins';
  font-weight: 800;
  font-size: 2.1rem;
  color: var(--petrol);
  line-height: 1.1;
  margin-bottom: 4px;
}

.price-installments {
  display: block;
  font-size: .84rem;
  color: var(--taupe);
  font-weight: 500;
}

.signup-btn {
  width: 100%;
  justify-content: center;
  padding: 14px 20px !important;
}

@media (max-width: 980px) {
  .course-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .course-meta-card {
    position: static;
    padding: 30px 24px;
  }
}

@media (max-width: 560px) {
  .course-hero-inner {
    padding: 50px 0 60px;
  }
  .instructor-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
}

/* Course Image Layout Styles (Sidebar Portrait Flyer) */
.course-image-container {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.course-sidebar-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Button Shine Spotlight Effect */
.btn-shine {
  position: absolute;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 1;
}

/* Footer Waves Style Integration */
.footer-waves {
  position: relative;
  width: 100%;
  height: 60px;
  min-height: 40px;
  max-height: 80px;
  margin-top: -60px;
  z-index: 5;
  overflow: hidden;
}

.waves {
  position: relative;
  width: 100%;
  height: 60px;
  margin-bottom: -7px;
  min-height: 40px;
  max-height: 80px;
}

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}

@media (max-width: 768px) {
  .waves {
    height: 40px;
    min-height: 40px;
  }
  .footer-waves {
    height: 40px;
    margin-top: -40px;
  }
}



