/*
Theme Name: Hipo Child
Template: twentytwentyfive
Version: 1.0
*/

:root {
  --hipo-primary: #2e7d7d;
  --hipo-secondary: #44a6b5;
  --hipo-accent: #2d4d7a;
  --hipo-dark: #1a1f2e;
  --hipo-light: #f5f2ed;
  --hipo-surface: #ffffff;
  --hipo-text: #2d3e50;
  --hipo-text-soft: #5a6c7d;
  --hipo-border: rgba(46, 125, 125, 0.16);
  --hipo-shadow: 0 18px 40px rgba(26, 31, 46, 0.08);
  --hipo-radius: 22px;
  --hipo-width: 1200px;
}

html {
  scroll-behavior: smooth;
}

body.hipo-academia-page {
  margin: 0;
  background: linear-gradient(180deg, #fbf7f2 0%, #f4f8f7 100%);
  color: var(--hipo-text);
  font-family: "Inter", sans-serif;
}

.hipo-site-shell {
  min-height: 100vh;
}

.hipo-container {
  width: min(calc(100% - 32px), var(--hipo-width));
  margin: 0 auto;
}

.hipo-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(46, 125, 125, 0.1);
  backdrop-filter: blur(12px);
}

.hipo-brand,
.hipo-nav a {
  text-decoration: none;
}

.hipo-brand__image {
  display: block;
  height: 86px;
  width: auto;
}

.hipo-nav__menu {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hipo-nav__menu a {
  color: var(--hipo-text);
  font-size: 0.96rem;
}

.hipo-nav__menu a:hover {
  color: var(--hipo-primary);
}

.hipo-nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hipo-border);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.hipo-nav__toggle-icon,
.hipo-nav__toggle-icon::before,
.hipo-nav__toggle-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--hipo-primary);
  margin: 0 auto;
  content: "";
}

.hipo-nav__toggle-icon::before {
  transform: translateY(-6px);
}

.hipo-nav__toggle-icon::after {
  transform: translateY(4px);
}

.hipo-hero {
  position: relative;
  overflow: hidden;
}

.hipo-hero--academy {
  min-height: 88vh;
}

.hipo-hero__media,
.hipo-hero__media video,
.hipo-hero__overlay {
  position: absolute;
  inset: 0;
}

.hipo-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hipo-hero__overlay {
  background:
    linear-gradient(90deg, rgba(17, 27, 39, 0.76) 0%, rgba(17, 27, 39, 0.48) 45%, rgba(17, 27, 39, 0.18) 100%),
    linear-gradient(180deg, rgba(245, 242, 237, 0.12) 0%, rgba(245, 242, 237, 0.04) 100%);
}

.hipo-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: center;
  min-height: 88vh;
  padding: 72px 0;
}

.hipo-hero__content,
.hipo-hero__panel,
.hipo-card,
.hipo-level-card,
.hipo-side-panel,
.hipo-form-card {
  border-radius: var(--hipo-radius);
  box-shadow: var(--hipo-shadow);
}

.hipo-hero__content {
  max-width: 760px;
  padding: 36px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  color: #fff;
}

.hipo-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(68, 166, 181, 0.15);
  border: 1px solid rgba(68, 166, 181, 0.22);
  color: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hipo-hero__content h1,
.hipo-section__heading h2,
.hipo-side-panel h3,
.hipo-form-card h3,
.hipo-hero__panel h2 {
  margin: 16px 0;
  font-family: "DM Sans", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: inherit;
}

.hipo-hero__content h1 {
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
}

.hipo-hero__content p,
.hipo-section__heading p,
.hipo-card p,
.hipo-level-card p,
.hipo-side-panel p,
.hipo-form-note,
.hipo-contact-list a,
.hipo-check-item {
  color: inherit;
  line-height: 1.75;
}

.hipo-hero__actions,
.hipo-side-panel__actions,
.hipo-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hipo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.hipo-button:hover {
  transform: translateY(-1px);
}

.hipo-button--primary {
  background: var(--hipo-primary);
  color: #fff;
}

.hipo-button--secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
  color: inherit;
}

.hipo-inline-points,
.hipo-step-list,
.hipo-card ul {
  margin: 20px 0 0;
  padding-left: 18px;
}

.hipo-inline-points li,
.hipo-step-list li,
.hipo-card li {
  margin-bottom: 10px;
}

.hipo-hero__panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--hipo-text);
}

.hipo-section {
  padding: 88px 0;
}

.hipo-section--soft {
  background: linear-gradient(180deg, rgba(68, 166, 181, 0.07) 0%, rgba(46, 125, 125, 0.03) 100%);
}

.hipo-section__heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.hipo-section__heading--left {
  margin-left: 0;
  text-align: left;
}

.hipo-section__heading h2 {
  color: var(--hipo-dark);
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.hipo-card-grid,
.hipo-level-grid {
  display: grid;
  gap: 20px;
}

.hipo-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hipo-card-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hipo-card,
.hipo-level-card,
.hipo-side-panel,
.hipo-form-card {
  background: #fff;
  border: 1px solid var(--hipo-border);
}

.hipo-card,
.hipo-level-card {
  padding: 26px;
}

.hipo-card h3,
.hipo-level-card h3,
.hipo-side-panel h3 {
  margin: 0 0 10px;
  font-family: "DM Sans", sans-serif;
  color: var(--hipo-dark);
  font-size: 1.38rem;
}

.hipo-card p,
.hipo-level-card p,
.hipo-card li,
.hipo-check-item,
.hipo-side-panel p,
.hipo-form-note {
  color: var(--hipo-text-soft);
}

.hipo-level-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hipo-level-card__tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(46, 125, 125, 0.1);
  color: var(--hipo-primary);
  font-size: 0.82rem;
  font-weight: 700;
}

.hipo-feature-layout,
.hipo-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 26px;
  align-items: start;
}

.hipo-check-list {
  display: grid;
  gap: 14px;
}

.hipo-check-item {
  position: relative;
  padding: 18px 18px 18px 52px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--hipo-border);
}

.hipo-check-item::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hipo-primary) 0%, var(--hipo-secondary) 100%);
}

.hipo-side-panel,
.hipo-form-card {
  padding: 28px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hipo-footer {
  padding: 30px 20px 40px;
  text-align: center;
  color: var(--hipo-text-soft);
}

body.hipo-academia-page .cta-section {
  background: linear-gradient(135deg, var(--hipo-primary) 0%, var(--hipo-secondary) 100%);
  color: white;
  padding: 3.2rem 0;
}

body.hipo-academia-page .cta-wrap {
  width: min(calc(100% - 32px), 980px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 2rem;
  align-items: start;
}

body.hipo-academia-page .cta-section h2 {
  color: white;
  font-size: 2.1rem;
  margin-bottom: 0.9rem;
  letter-spacing: -0.02em;
  font-family: "DM Sans", sans-serif;
}

body.hipo-academia-page .cta-section p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.07rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

body.hipo-academia-page .contact-info h2 {
  color: white;
  font-size: 2.1rem;
  margin: 1.6rem 0 0.9rem;
  letter-spacing: -0.02em;
  font-family: "DM Sans", sans-serif;
}

body.hipo-academia-page .cta-note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

body.hipo-academia-page .form-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  padding: 1.4rem;
  backdrop-filter: blur(10px);
}

body.hipo-academia-page .form-row {
  display: grid;
  gap: 0.9rem;
}

body.hipo-academia-page .form-row label {
  font-weight: 600;
  font-size: 0.95rem;
}

body.hipo-academia-page .form-row input,
body.hipo-academia-page .form-row textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.16);
  color: white;
  outline: none;
  font-family: "Inter", sans-serif;
}

body.hipo-academia-page .form-row input::placeholder,
body.hipo-academia-page .form-row textarea::placeholder {
  color: rgba(255,255,255,0.7);
}

body.hipo-academia-page .form-row textarea {
  min-height: 110px;
  resize: vertical;
}

body.hipo-academia-page .form-actions {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

body.hipo-academia-page .cta-button {
  display: inline-block;
  padding: 1rem 2.2rem;
  background-color: var(--hipo-primary);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(46, 125, 125, 0.14);
}

body.hipo-academia-page .cta-button:hover {
  background-color: var(--hipo-secondary);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(46, 125, 125, 0.18);
}

body.hipo-academia-page .cta-button-outline {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: none;
}

body.hipo-academia-page .cta-button-outline:hover {
  color: white;
  border-color: transparent;
}

body.hipo-academia-page .cta-button-white {
  background-color: white;
  color: var(--hipo-primary);
  box-shadow: none;
}

body.hipo-academia-page .cta-button-white:hover {
  background-color: #f0e8e0;
}

body.hipo-academia-page .contact-info a {
  color: rgba(255,255,255,0.95);
  text-decoration: none;
}

body.hipo-academia-page .contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
}

body.hipo-academia-page .contact-info ul {
  margin: 0;
  padding: 0;
}

body.hipo-academia-page .form-status {
  min-height: 1.2em;
}

body.hipo-academia-page .hipo-footer--landing {
  background-color: var(--hipo-dark);
  color: rgba(255,255,255,0.9);
  padding: 2rem 2rem;
  text-align: center;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .hipo-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hipo-nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 16px 20px 22px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--hipo-border);
    box-shadow: 0 18px 30px rgba(26, 31, 46, 0.08);
    flex-direction: column;
    align-items: flex-start;
  }

  .hipo-nav__menu.is-open {
    display: flex;
  }

  .hipo-hero__grid,
  .hipo-feature-layout,
  .hipo-cta-grid,
  .hipo-card-grid,
  .hipo-card-grid--three,
  .hipo-level-grid {
    grid-template-columns: 1fr;
  }

  body.hipo-academia-page .cta-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hipo-brand__image {
    height: 72px;
  }

  .hipo-hero__content,
  .hipo-hero__panel,
  .hipo-card,
  .hipo-level-card,
  .hipo-side-panel,
  .hipo-form-card {
    padding: 22px;
  }

  .hipo-section {
    padding: 68px 0;
  }
}
