:root {
	--cream: #fbf8f2;
	--ivory: #fffdf9;
	--sand: #efe4dc;
	--sand-2: #e0cfc7;
	--blush: #c99c91;
	--blush-soft: #ead8d1;
	--slate: #2f414b;
	--slate-2: #5d6970;
	--ink: #20272c;
	--muted: #687176;
	--line: #e8ded8;
	--white: #fff;
	--color-white: #fff;
	--shadow: 0 22px 60px rgba(47, 65, 75, .13);
	--soft-shadow: 0 14px 36px rgba(47, 65, 75, .10);
	--radius: 26px;
	--radius-full: 999px;

	--condensed: 'Barlow Condensed', Arial, sans-serif;
	--serif: 'Cormorant Garamond', Georgia, serif;
	--script: 'Great Vibes', 'Brush Script MT', cursive;
	--sans: 'Poppins', Arial, sans-serif;
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	background: var(--ivory);
	font-family: var(--sans);
	color: var(--ink);
	font-size: 15px;
	line-height: 1.65;
	overflow-x: hidden
}

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

img {
	max-width: 100%;
	display: block
}

.shell {
	width: min(1180px, calc(100% - 56px));
	margin: 0 auto
}

.top-strip {
	height: 22px;
	background: #c9b3aa;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	letter-spacing: .24em;
	font-size: 10px;
	font-weight: 800
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: #5e646f;
	/* background: rgba(255, 253, 249, .84); */
	backdrop-filter: blur(18px);
	border-bottom: 1px solid rgba(232, 222, 216, .6)
}

.navbar {
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px
}

.small-script {
	font-family: var(--script);
	font-size: 32px;
	color: #ffffff;
	white-space: nowrap
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
}
.brand span {
  color: #ffffff;
}
.nav-logo {
  display: block;
  height: 42px; /* fits inside .navbar height (72px) with spacing */
  width: auto;
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 27px;
	text-transform: uppercase;
	font-weight: 800;
	font-size: 11px;
	letter-spacing: .08em
}
.nav-links a {
    color: #ffffff;
}
.nav-links a:not(.nav-cta) {
	position: relative
}

.nav-links a:not(.nav-cta)::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -8px;
	height: 1px;
	background: var(--blush);
	transform: scaleX(0);
	transition: .25s
}

.nav-links a:hover::after {
	transform: scaleX(1)
}

.nav-cta,
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .08em;
	transition: transform .25s, box-shadow .25s, background .25s
}

.nav-cta {
	background: #1f2b31;
	color: #fff;
	padding: 13px 24px;
	box-shadow: 0 9px 24px rgba(31, 43, 49, .22)
}

.btn {
	padding: 15px 25px
}

.btn-dark {
	background: #1f2b31;
	color: #fff;
	box-shadow: 0 14px 28px rgba(31, 43, 49, .22)
}

.btn-blush {
	background: #d8b9ad;
	color: #29363c;
	box-shadow: 0 14px 30px rgba(201, 156, 145, .28)
}

.btn:hover,
.nav-cta:hover {
	transform: translateY(-3px)
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
	transition: transform .35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .35s ease;
}

.menu-toggle {
	display: none;
	border: 0;
	background: transparent;
	width: 42px;
	height: 42px;
	padding: 0;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	cursor: pointer;
	color: #243139;
}

.menu-toggle.open {
	transform: none;
}

.menu-toggle.open span:nth-child(1) {
	transform: translateY(6px) scaleX(0.6);
	opacity: 0.7;
}

.menu-toggle.open span:nth-child(2) {
	opacity: 0.7;
	transform: scaleX(0.5);
}

.menu-toggle.open span:nth-child(3) {
	transform: translateY(-6px) scaleX(0.6);
	opacity: 0.7;
}

@media (max-width: 880px) {
  .menu-toggle { display: inline-flex; }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(47,65,75,0.98);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 6px 0 6px;
    z-index: 60;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform-origin: top center;
    transition: max-height .32s ease, opacity .32s ease;
    pointer-events: none;
  }

  .nav-links.open {
    max-height: 520px;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.04);
  }

  .nav-cta {
    margin-top: 6px;
    padding: 10px 20px;
  }
}

.section-bg-soft {
	background: radial-gradient(circle at 84% 22%, rgba(236, 221, 212, .86), transparent 31%), linear-gradient(180deg, #fffcf8 0%, #fbf8f2 100%)
}

.hero {
	position: relative;
	min-height: 625px;
	padding: 76px 0 92px;
	overflow: hidden
}

.hero-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 74px
}

.script-logo {
	font-family: var(--script);
	font-size: 76px;
	line-height: .9;
	margin: 0 0 12px;
	color: #34454d
}

.eyebrow {
	font-family: var(--condensed);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #526066;
	margin: 0 0 6px
}

.hero h1 {
	font-family: var(--serif);
	font-weight: 400;
	font-size: 48px;
	line-height: 1.16;
	margin: 14px 0 16px;
	color: #20262b
}

.hero h1 span {
	color: #c6958d;
	font-weight: 700
}

.hero-sub {
	font-weight: 800;
	color: #2b363b;
	margin: 0 0 26px
}

.hero-visual {
	position: relative;
	min-height: 430px;
	display: flex;
	align-items: center;
	justify-content: center
}

.hero-visual img {
	position: relative;
	z-index: 2;
	width: min(520px, 100%);
	height: auto;
	object-fit: contain;
	border-radius: 0 0 42% 42%;
	filter: drop-shadow(0 30px 35px rgba(69, 75, 78, .08))
}

.brush-blob {
	position: absolute;
	width: 470px;
	height: 370px;
	background: #ead9d1;
	border-radius: 62% 38% 45% 55%;
	right: 20px;
	top: 20px;
	opacity: .75
}

.graph-small {
	position: absolute;
	width: 190px;
	top: 38px;
	left: 55px;
	stroke: #b8aea8;
	fill: none;
	stroke-width: 1.3;
	opacity: .7
}

.doodle-left {
	position: absolute;
	left: -25px;
	bottom: 72px;
	width: 230px;
	opacity: .28;
	color: #9e9996
}

.doodle-left svg {
	stroke: currentColor;
	fill: none
}

.doodle-left text {
	font-family: var(--serif);
	fill: currentColor;
	stroke: 0;
	font-size: 20px
}

.math-note {
	position: absolute;
	color: #cbc2bc;
	font-family: var(--serif);
	opacity: .58
}

.n1 {
	top: 137px;
	left: 54%
}

.n2 {
	left: 9%;
	bottom: 122px
}

.n3 {
	left: 45%;
	top: 235px
}

.wave-bottom {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	height: 88px;
	background: var(--ivory);
	clip-path: ellipse(75% 60% at 50% 85%)
}

.intro-benefits {
	background: #fff;
	padding: 64px 0 78px;
	position: relative
}

.intro-grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr 1.1fr 1fr;
	gap: 0;
	align-items: start
}

.intro-title,
.mini-card {
	padding: 0 38px;
	border-right: 1px solid var(--line);
	min-height: 165px
}

.intro-title {
	padding-left: 0
}

.mini-card:last-child {
	border-right: 0
}

.intro-title h2,
.section-heading h2,
.about-copy h2,
.resources-copy h2,
.form-info h2 {
	font-family: var(--serif);
	font-weight: 400;
	text-transform: none;
	color: #27333a
}

.intro-title h2 {
	font-family: var(--condensed);
	font-size: 38px;
	line-height: .92;
	text-transform: uppercase;
	letter-spacing: .04em;
	margin: 0 0 22px
}

.intro-title h2 span {
	color: #c99c91
}

.intro-title p,
.mini-card p {
	font-size: 13px;
	color: #687176;
	margin: 0
}

.line-icon {
	font-size: 38px;
	color: #bd968e;
	line-height: 1;
	margin-bottom: 15px
}

.mini-card h3,
.focus-card h3,
.contact-card h3 {
	font-family: var(--condensed);
	letter-spacing: .08em;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 1.1;
	margin: 0 0 12px;
	font-weight: 800
}

.section-blush {
	background: linear-gradient(110deg, #f5eee9, #fbf7f2);
	position: relative;
	overflow: hidden
}

.about {
	padding: 88px 0 108px
}

.about-grid {
	display: grid;
	grid-template-columns: .92fr 1fr;
	gap: 86px;
	align-items: center
}

.about-photo {
	position: relative;
	display: grid;
	place-items: center
}

.paper-card {
	position: absolute;
	width: 325px;
	height: 275px;
	border-radius: 20px;
	background: rgba(255, 255, 255, .65);
	transform: rotate(-2.5deg) translate(-15px, -2px);
	box-shadow: 0 20px 45px rgba(137, 118, 106, .10)
}

.about-photo img {
	position: relative;
	z-index: 2;
	width: 345px;
	border-radius: 22px;
	box-shadow: var(--soft-shadow)
}

.about-copy {
	max-width: 570px
}

.about-copy h2 {
	font-size: 39px;
	margin: 0 0 22px
}

.about-copy p {
	color: #4f5a5f;
	margin: 0 0 20px
}

.handwritten {
	font-family: var(--script);
	font-size: 33px;
	line-height: 1.05;
	color: #c5948d!important;
	margin-top: 20px!important
}

.dot-grid {
	position: absolute;
	right: 16%;
	top: 37%;
	width: 80px;
	height: 80px;
	background-image: radial-gradient(#d2aaa2 2px, transparent 2px);
	background-size: 16px 16px;
	opacity: .65
}

.formula-bg {
	position: absolute;
	left: 8%;
	top: 30%;
	font-family: var(--serif);
	font-size: 22px;
	color: #c9c0bb;
	opacity: .55
}

.stats-wrap {
	position: relative;
	margin-top: -52px;
	z-index: 3;
	padding-bottom: 66px
}

.stats-card {
	width: min(880px, 100%);
	margin: 0 auto;
	background: linear-gradient(105deg, #5e646f, #5e646f);
	border-radius: 10px;
	box-shadow: 0 28px 55px rgba(47, 65, 75, .22);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	color: #fff;
	overflow: hidden
}

.stat {
	text-align: center;
	padding: 36px 20px;
	position: relative
}

.stat:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 30px;
	bottom: 30px;
	width: 1px;
	background: rgba(255, 255, 255, .28)
}

/* .stat-icon {
	display: block;
	color: #e1d5d0;
	font-size: 31px;
	margin-bottom: 12px
} */

.stat-icon {
	display: block;
	color: #e1d5d0;
	font-size: 38px;
	margin-bottom: 16px
}

.stat strong {
	font-family: var(--serif);
	font-size: 40px;
	display: block;
	line-height: 1
}

.stat p {
	font-family: var(--condensed);
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	font-size: 15px;
	line-height: 1.05;
	margin: 12px 0 0
}

.focus {
	background: #fffaf5;
	padding: 12px 0 85px;
	position: relative;
	overflow: hidden
}

.focus::before,
.programs::after {
	content: "";
	position: absolute;
	left: -90px;
	top: 75px;
	width: 260px;
	height: 260px;
	border: 1px solid #eadbd5;
	border-radius: 50%;
	opacity: .7;
	box-shadow: 0 0 0 22px rgba(234, 219, 213, .15), 0 0 0 45px rgba(234, 219, 213, .08)
}

.section-heading {
	text-align: center;
	margin: 0 auto 44px;
	max-width: 760px
}

.section-heading h2 {
	font-size: 52px;
	line-height: 1.1;
	margin: 2px 0 12px;
	text-transform: uppercase;
	letter-spacing: .04em;
	font-family: 'Cormorant Garamond', serif;
	font-weight: 600;
}

.section-heading p {
	margin: 0;
	color: #747c80;
	font-size: 13px
}

.focus-grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px
}

.focus-card {
	background: white;
	border: 1px solid var(--line);
	border-radius: 17px;
	padding: 28px 24px 30px;
	min-height: 240px;
	text-align: center;
	box-shadow: 0 18px 38px rgba(52, 64, 70, .07);
	transition: transform .25s, box-shadow .25s
}

.focus-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow)
}

.focus-card span {
	display: block;
	text-align: left;
	color: #c39a91;
	font-family: var(--serif);
	font-size: 17px;
	margin-bottom: 12px
}

.focus-icon {
	font-size: 34px;
	color: #bd968e;
	line-height: 1;
	margin: 5px 0 18px
}

.focus-card p {
	font-size: 13px;
	color: #697277;
	margin: 0
}

.section-off {
	background: linear-gradient(180deg, #fffaf5, #fbf6ef)
}

.programs {
	position: relative;
	padding: 74px 0 100px
}

.program-panel {
	background: white;
	border: 1px solid var(--line);
	border-radius: 26px;
	box-shadow: 0 25px 70px rgba(48, 62, 70, .11);
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	min-height: 415px
}

.program-card {
	position: relative;
	display: grid;
	align-items: center;
	gap: 20px;
	padding: 54px 44px
}

.program-left {
	grid-template-columns: 190px 1fr;
	border-right: 1px solid var(--line)
}

.program-right {
	grid-template-columns: 1fr 210px
}

.program-asset {
	filter: drop-shadow(0 18px 22px rgba(54, 48, 44, .10));
	animation: floatAsset 5.5s ease-in-out infinite
}

.laptop {
	animation-delay: 1.2s
}

.card-kicker {
	font-family: var(--condensed);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .12em;
	color: #c4978f;
	margin: 0 0 8px
}

.program-card h3 {
	font-family: var(--condensed);
	text-transform: uppercase;
	letter-spacing: .06em;
	font-size: 27px;
	line-height: 1.04;
	margin: 0
}

.program-card h4 {
	font-family: var(--condensed);
	text-transform: uppercase;
	letter-spacing: .1em;
	font-size: 15px;
	margin: 8px 0 16px
}

.program-card p,
.program-card li {
	font-size: 13px;
	color: #60696f
}

.program-card ul {
	list-style: none;
	padding: 0;
	margin: 18px 0 24px
}

.program-card li {
	position: relative;
	padding-left: 25px;
	margin: 9px 0
}

.program-card li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #ead5ce;
	color: #7c5e59;
	font-size: 10px;
	display: grid;
	place-items: center;
	font-weight: 900
}

.testimonials {
	padding: 78px 0 70px;
	background: #fffaf5
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 38px
}

.testimonial {
	position: relative;
	background: white;
	border: 1px solid var(--line);
	border-radius: 15px;
	padding: 42px 30px 28px;
	box-shadow: var(--soft-shadow);
	min-height: 245px
}

.avatar {
	position: absolute;
	top: -22px;
	left: 50%;
	transform: translateX(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(#f6efe9, #e5d5cc);
	border: 5px solid #fff;
	box-shadow: 0 6px 18px rgba(66, 57, 52, .12)
}

.quote {
	position: absolute;
	top: 18px;
	left: 24px;
	color: #d7bab1;
	font-family: var(--serif);
	font-size: 52px;
	line-height: 1
}

.testimonial p {
	font-size: 13px;
	color: #4f5b61;
	margin: 12px 0 18px
}

.testimonial strong {
	font-family: var(--condensed);
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: #344047
}

.stars {
	color: #d6a253;
	letter-spacing: 3px;
	font-size: 13px;
	margin-top: 12px
}

.resources {
	position: relative;
    background: #5e646f !important;
	/* background: #2e414a; */
	color: white;
	padding: 82px 0 76px;
	overflow: hidden
}

.resources::before,
.resources::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 70px;
	background: #fffaf5
}

.resources::before {
	top: -1px;
	clip-path: ellipse(65% 100% at 50% -38%)
}

.resources::after {
	bottom: -1px;
	clip-path: ellipse(65% 100% at 50% 138%)
}

.resources-grid {
	display: grid;
	grid-template-columns: .75fr 1.5fr;
	align-items: center;
	gap: 42px;
	position: relative;
	z-index: 2
}

.resources-copy h2 {
	color: white;
	font-family: var(--serif);
	text-transform: none;
	letter-spacing: 0;
	font-size: 36px;
	line-height: 1.16;
	margin: 8px 0 20px
}

.resources-copy p {
	color: #d8e0e2;
	margin: 0;
	max-width: 330px
}

.resources .eyebrow {
	color: #d5c7c0
}

.pdf-stack {
	position: relative;
	min-height: 330px;
	display: flex;
	align-items: center;
	justify-content: center
}

.pdf-card {
	position: relative;
	width: 210px;
	height: 300px;
	background: #fbf7ef;
	color: #243139;
	border: 1px solid #e8d9d1;
	border-radius: 16px;
	padding: 28px 22px 20px;
	box-shadow: 0 25px 42px rgba(10, 19, 24, .28);
	transition: transform .3s, box-shadow .3s;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	animation: pdfFloat 5s ease-in-out infinite
}

.pdf-card:hover {
	transform: translateY(-16px) rotate(0deg)!important;
	box-shadow: 0 34px 55px rgba(10, 19, 24, .36)
}

.pdf-one {
	transform: rotate(-4deg) translateX(25px);
	z-index: 1
}

.pdf-two {
	transform: rotate(1deg);
	z-index: 3;
	animation-delay: .55s
}

.pdf-three {
	transform: rotate(4deg) translateX(-25px);
	z-index: 2;
	animation-delay: 1.1s
}

.pdf-tag {
	position: absolute;
	right: -1px;
	top: 18px;
	background: #e25f5e;
	color: #fff;
	font-size: 11px;
	font-weight: 900;
	border-radius: 0 8px 0 8px;
	padding: 8px 10px;
	letter-spacing: .08em
}

.pdf-card small {
	font-weight: 700;
	color: #6a747a
}

.pdf-card h3 {
	font-family: var(--condensed);
	text-transform: uppercase;
	letter-spacing: .05em;
	font-size: 24px;
	line-height: 1.08;
	margin: 0
}

.pdf-graphic,
.pdf-checks {
	font-family: var(--serif);
	font-size: 18px;
	color: #c8b9b0;
	min-height: 42px
}

.download {
	align-self: flex-start;
	background: #1f2b31;
	color: white;
	border-radius: 999px;
	padding: 11px 16px;
	text-transform: uppercase;
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .07em
}

.contact {
	padding: 62px 0 72px;
	background: #fffaf5;
	position: relative
}

.contact-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-bottom: 44px
}

.contact-card {
	background: white;
	border: 1px solid var(--line);
	border-radius: 15px;
	box-shadow: var(--soft-shadow);
	display: flex;
	gap: 22px;
	align-items: center;
	padding: 25px 28px;
	transition: .25s
}

.contact-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow)
}

.contact-card>span {
	font-size: 40px;
	color: #c69c93
}

.contact-card h3 {
	margin-bottom: 4px
}

.contact-card p {
	margin: 0;
	color: #243139;
	font-weight: 800;
	font-size: 13px
}

.contact-card small {
	color: #7d8589
}

.form-shell {
	background: white;
	border: 1px solid var(--line);
	border-radius: 25px;
	box-shadow: 0 24px 58px rgba(47, 65, 75, .09);
	display: grid;
	grid-template-columns: 285px 1fr;
	gap: 48px;
	padding: 44px 48px
}

.form-info h2 {
	font-size: 29px;
	text-transform: uppercase;
	margin: 0
}

.form-info p {
	margin: 4px 0 24px;
	color: #6e777c
}

.form-info ul {
	padding: 0;
	margin: 0;
	list-style: none
}

.form-info li {
	display: flex;
	gap: 14px;
	margin: 18px 0;
	color: #445158
}

.form-info li span {
	color: #c69c93;
	font-size: 25px;
	width: 30px
}

.form-info b {
	display: block;
	font-size: 13px
}

.form-info small {
	display: block;
	color: #748086
}

.contact-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 18px;
	align-content: start
}

.contact-form label span {
	position: absolute;
	clip: rect(0 0 0 0)
}

input,
textarea {
	width: 100%;
	border: 1px solid #ded7d2;
	background: #fffdfa;
	border-radius: 3px;
	padding: 14px 16px;
	font-family: var(--sans);
	font-size: 14px;
	outline: none;
	transition: border .2s, box-shadow .2s
}

input:focus,
textarea:focus {
	border-color: #c99c91;
	box-shadow: 0 0 0 4px rgba(201, 156, 145, .13)
}

.full {
	grid-column: 1/-1
}

.form-button {
	grid-column: 1/-1;
	justify-self: center;
	margin-top: 8px;
	min-width: 190px
}

.footer {
	background: #eadfd7;
	text-align: center;
	padding: 38px 20px 34px;
	color: #43535b
}

.footer .small-script {
	font-size: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #5e646f;
	margin: 0 auto 3px;
	text-align: center;
}

.footer .footer-logo {
	height: 42px;
	width: auto;
}

.footer span {
	display: block;
	text-transform: uppercase;
	letter-spacing: .14em;
	font-size: 11px
}

.footer small {
	display: block;
	color: #bd968e;
	font-size: 19px;
	margin-top: 10px
}

.reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .7s ease, transform .7s ease
}

.reveal.is-visible {
	opacity: 1;
	transform: none
}

.delay-1 {
	transition-delay: .08s
}

.delay-2 {
	transition-delay: .15s
}

.delay-3 {
	transition-delay: .22s
}

.delay-4 {
	transition-delay: .29s
}

@keyframes floatAsset {
	0%,
	100% {
		transform: translateY(0)
	}
	50% {
		transform: translateY(-12px)
	}
}

@keyframes pdfFloat {
	0%,
	100% {
		margin-top: 0
	}
	50% {
		margin-top: -12px
	}
}

@media(max-width:980px) {
	.shell {
		width: min(100% - 34px, 760px)
	}
	.menu-toggle {
		display: block
	}
	.nav-links {
		position: absolute;
		top: 72px;
		left: 18px;
		right: 18px;
		background: #5e646f;
		border: 1px solid var(--line);
		border-radius: 18px;
		box-shadow: var(--shadow);
		padding: 10px 20px;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		pointer-events: none;
		transition: max-height .32s ease, opacity .32s ease;
	}
	.nav-links.open {
		max-height: 520px;
		opacity: 1;
		pointer-events: auto;
		pointer-events: none;
		transition: max-height .32s ease, opacity .32s ease;
	}
	.nav-links.open {
		max-height: 520px;
		opacity: 1;
		pointer-events: auto;
	}
	.hero {
		padding-top: 54px
	}
	.hero-grid,
	.about-grid,
	.resources-grid,
	.form-shell {
		grid-template-columns: 1fr
	}
	.hero-grid {
		gap: 20px
	}
	.hero h1 {
		font-size: 38px
	}
	.script-logo {
		font-size: 64px
	}
	.intro-grid {
		grid-template-columns: 1fr 1fr
	}
	.intro-title,
	.mini-card {
		border-right: 0;
		border-bottom: 1px solid var(--line);
		padding: 24px 0
	}
	.stats-card,
	.contact-cards,
	.testimonial-grid,
	.program-panel {
		grid-template-columns: 1fr
	}
	.focus-grid {
		grid-template-columns: 1fr 1fr
	}
	.program-left,
	.program-right {
		grid-template-columns: 1fr;
		border-right: 0;
		border-bottom: 1px solid var(--line)
	}
	.program-asset {
		max-width: 230px;
		margin: auto
	}
	.resources-copy {
		text-align: center
	}
	.resources-copy p {
		margin: auto
	}
	.pdf-stack {
		transform: scale(.92)
	}
	.contact-form {
		grid-template-columns: 1fr
	}
}

@media(max-width:620px) {
	body {
		font-size: 14px
	}
	.top-strip {
		font-size: 8px;
		letter-spacing: .14em
	}
	.navbar {
		height: 64px
	}
	.small-script {
		font-size: 28px
	}
	.hero {
		min-height: auto
	}
	.hero-grid {
		grid-template-columns: 1fr
	}
	.hero-copy {
		text-align: left
	}
	.hero h1 {
		font-size: 31px
	}
	.script-logo {
		font-size: 54px
	}
	.hero-visual {
		min-height: 300px
	}
	.brush-blob {
		width: 260px;
		height: 220px;
		right: 20px
	}
	.intro-grid,
	.focus-grid {
		grid-template-columns: 1fr
	}
	.intro-title h2 {
		font-size: 32px
	}
	.stats-card {
		border-radius: 16px
	}
	.stat:not(:last-child)::after {
		display: none
	}
	.stat {
		padding: 30px 14px;
		border-bottom: 1px solid rgba(255, 255, 255, .18)
	}
	.stat:last-child {
		border-bottom: 0
	}
	.program-card {
		padding: 34px 25px
	}
	.program-card h3 {
		font-size: 24px
	}
	.testimonial-grid {
		gap: 28px
	}
	.resources {
		padding-top: 90px
	}
	.pdf-stack {
		min-height: 720px;
		display: grid;
		gap: 16px
	}
	.pdf-card {
		position: relative;
		transform: none!important;
		margin: 0!important
	}
	.contact-cards {
		gap: 16px
	}
	.form-shell {
		padding: 28px 22px
	}
	.footer span {
		font-size: 9px
	}
	.section-heading h2 {
		font-size: 27px
	}
}

main{
  background:var(--ivory);
}

.hero,
.intro-benefits,
.about,
.stats-wrap,
.focus,
.programs,
.testimonials,
.resources,
.contact{
  position:relative;
}

.hero,
.intro-benefits,
.about,
.focus,
.programs,
.testimonials,
.resources{
  overflow:hidden;
  isolation:isolate;
}

.hero-grid,
.intro-grid,
.about-grid,
.stats-card,
.section-heading,
.focus-grid,
.program-panel,
.testimonial-grid,
.resources-grid,
.contact-cards,
.form-shell{
  position:relative;
  z-index:3;
}

.svg-divider{
  position:absolute;
  left:-1px;
  right:-1px;
  height:132px;
  pointer-events:none;
  line-height:0;
  z-index:2;
}

.svg-divider svg{
  display:block;
  width:100%;
  height:100%;
}

.svg-divider .wave-main{
  fill:var(--ivory);
}

.svg-divider .wave-shadow{
  fill:var(--sand);
  opacity:.45;
}

/* HERO -> BENEFICIOS */
.hero{
  min-height:650px;
  padding:82px 0 158px;
  background:
    radial-gradient(circle at 86% 18%, rgba(232,214,205,.9), transparent 31%),
    radial-gradient(circle at 12% 86%, rgba(239,228,220,.72), transparent 28%),
    linear-gradient(180deg,#fffcf8 0%,#fbf7f1 100%);
}

.hero-bottom-wave{
  bottom:-2px;
  height:150px;
}

.hero-bottom-wave .wave-main{ fill:#fffdf9; }
.hero-bottom-wave .wave-shadow{ fill:#efe4dc; opacity:.55; }

/* BENEFICIOS -> SOBRE MI */
.intro-benefits{
  padding:62px 0 144px;
  background:#fffdf9;
}

.intro-benefits::before{
  content:"";
  position:absolute;
  left:-120px;
  top:28px;
  width:290px;
  height:290px;
  border:1px solid rgba(224,207,199,.55);
  border-radius:50%;
  box-shadow:
    0 0 0 24px rgba(239,228,220,.16),
    0 0 0 52px rgba(239,228,220,.08);
  z-index:1;
}

.intro-bottom-wave{
  bottom:-2px;
  height:138px;
}

.intro-bottom-wave .wave-main{ fill:#f5eee9; }
.intro-bottom-wave .wave-shadow{ fill:#ead8d1; opacity:.46; }

/* SOBRE MI -> ESTADISTICAS / ENFOQUE */
.about{
  padding:120px 0 170px;
  background:
    radial-gradient(circle at 86% 45%, rgba(255,255,255,.55), transparent 25%),
    linear-gradient(112deg,#f4ebe6 0%,#fbf7f2 74%);
}

.about::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 9% 22%, rgba(232,214,205,.42), transparent 18%),
    radial-gradient(circle at 84% 73%, rgba(234,216,209,.36), transparent 17%);
  z-index:1;
}

.about-bottom-wave{
  bottom:-2px;
  height:140px;
}

.about-bottom-wave .wave-main{ fill:#fffaf5; }
.about-bottom-wave .wave-shadow{ fill:#ead8d1; opacity:.4; }

.stats-wrap{
  margin-top:-92px;
  padding:0 0 62px;
  background:#fffaf5;
  z-index:5;
}

.stats-card{
  border-radius:12px;
  overflow:hidden;
}

/* ENFOQUE -> CURSOS */
.focus{
  padding:28px 0 150px;
  background:#fffaf5;
}

.focus::before{
  left:-85px;
  top:62px;
  z-index:1;
}

.focus::after{
  content:"";
  position:absolute;
  right:-92px;
  bottom:118px;
  width:260px;
  height:260px;
  border:1px solid rgba(234,219,213,.8);
  border-radius:50%;
  box-shadow:
    0 0 0 22px rgba(234,219,213,.16),
    0 0 0 48px rgba(234,219,213,.08);
  z-index:1;
}

.focus-bottom-wave{
  bottom:-2px;
  height:134px;
}

.focus-bottom-wave .wave-main{ fill:#fbf6ef; }
.focus-bottom-wave .wave-shadow{ fill:#ead8d1; opacity:.38; }

/* CURSOS -> TESTIMONIOS */
.programs{
  padding:92px 0 148px;
  background:
    radial-gradient(circle at 18% 32%, rgba(239,228,220,.58), transparent 24%),
    linear-gradient(180deg,#fbf6ef 0%,#fffaf5 100%);
}

.programs::before{
  content:"";
  position:absolute;
  left:-120px;
  top:95px;
  width:310px;
  height:310px;
  border:1px solid rgba(234,219,213,.76);
  border-radius:50%;
  box-shadow:
    0 0 0 26px rgba(234,219,213,.15),
    0 0 0 58px rgba(234,219,213,.08);
  z-index:1;
}

.programs::after{
  content:"";
  position:absolute;
  right:-150px;
  bottom:82px;
  width:310px;
  height:310px;
  border:1px solid rgba(234,219,213,.62);
  border-radius:50%;
  box-shadow:0 0 0 38px rgba(234,219,213,.08);
  opacity:.65;
  z-index:1;
}

.program-panel{
  border-radius:30px;
  box-shadow:0 30px 78px rgba(48,62,70,.12);
}

.programs-bottom-wave{
  bottom:-2px;
  height:130px;
}

.programs-bottom-wave .wave-main{ fill:#fffaf5; }
.programs-bottom-wave .wave-shadow{ fill:#ead8d1; opacity:.36; }

/* TESTIMONIOS -> RECURSOS */
.testimonials{
  padding:76px 0 142px;
  background:#fffaf5;
}

.testimonials::before{
  content:"";
  position:absolute;
  left:7%;
  top:52px;
  width:82px;
  height:82px;
  background-image:radial-gradient(#d8b5ad 2px, transparent 2px);
  background-size:16px 16px;
  opacity:.38;
  z-index:1;
}

.testimonials-bottom-wave{
  bottom:-2px;
  height:138px;
}

.testimonials-bottom-wave .wave-main{ fill:#2e414a; }
.testimonials-bottom-wave .wave-shadow{ fill:#415762; opacity:.52; }

/* RECURSOS -> CONTACTO */
.resources{
  margin-top:-1px;
  padding:108px 0 142px;
  background:
    radial-gradient(circle at 94% 72%, rgba(255,255,255,.08), transparent 19%),
    linear-gradient(112deg,#2f444d 0%,#263942 100%);
}

.resources::before,
.resources::after{
  display:none;
}

.resources-top-wave{
  top:-2px;
  height:82px;
  opacity:.98;
}

.resources-top-wave .wave-main{ fill:#fffaf5; }
.resources-top-wave .wave-shadow{ fill:#efe4dc; opacity:.28; }

.resources-bottom-wave{
  bottom:-2px;
  height:126px;
}

.resources-bottom-wave .wave-main{ fill:#fffaf5; }
.resources-bottom-wave .wave-shadow{ fill:#405660; opacity:.25; }

.resources-grid{
  margin-top:10px;
}

.contact{
  padding:72px 0 80px;
  background:#fffaf5;
}

/* Un poco más de respiro vertical en títulos, como la referencia */
.section-heading{
  margin-bottom:48px;
}

.section-heading h2{
  margin-top:4px;
}

/* Responsive: las ondas se reducen para que no roben espacio en mobile */
@media(max-width:980px){
  .svg-divider{height:100px;}
  .hero{padding-bottom:118px;}
  .intro-benefits{padding-bottom:112px;}
  .about{padding-top:104px;padding-bottom:138px;}
  .stats-wrap{margin-top:-74px;}
  .focus{padding-bottom:116px;}
  .programs{padding-top:78px;padding-bottom:122px;}
  .testimonials{padding-bottom:120px;}
  .resources{padding-top:100px;padding-bottom:122px;}
}

@media(max-width:620px){
  .svg-divider{height:74px;}
  .hero-bottom-wave{height:86px;}
  .intro-bottom-wave,
  .about-bottom-wave,
  .nav-logo { height: 34px; }
  .focus-bottom-wave,
  .programs-bottom-wave,
  .testimonials-bottom-wave,
  .resources-bottom-wave{height:82px;}
  .resources-top-wave{height:58px;}
  .hero{padding-top:46px;padding-bottom:88px;}
  .intro-benefits{padding:42px 0 86px;}
  .about{padding:86px 0 116px;}
  .stats-wrap{margin-top:-64px;padding-bottom:46px;}
  .focus{padding:12px 0 92px;}
  .programs{padding:62px 0 96px;}
  .testimonials{padding:60px 0 92px;}
  .resources{padding:82px 0 98px;}
  .contact{padding-top:58px;}
}


/* ================================
   FIX TRANSICIÓN BENEFICIOS -> SOBRE MÍ
================================ */

.intro-benefits {
  padding: 62px 0 144px;
  background:
    linear-gradient(
      180deg,
      #fffdf9 0%,
      #fffdf9 48%,
      #f8f2ee 78%,
      #f5eee9 100%
    );
}

/* La onda ahora usa el mismo color con el que inicia Sobre mí */
.intro-bottom-wave {
  bottom: -1px;
  height: 138px;
}

.intro-bottom-wave .wave-main {
  fill: #f5eee9;
}

/* Bajamos la sombra para que no parezca otra franja */
.intro-bottom-wave .wave-shadow {
  fill: #f5eee9;
  opacity: .22;
}

/* Sobre mí parte desde el mismo tono de la onda */
.about {
  padding: 120px 0 170px;
  background:
    radial-gradient(circle at 86% 45%, rgba(255,255,255,.48), transparent 25%),
    linear-gradient(
      180deg,
      #f5eee9 0%,
      #f7f1ed 42%,
      #fbf7f2 100%
    );
}

/* Dejamos los brillos decorativos más suaves para que no formen bandas */
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 9% 22%, rgba(232,214,205,.22), transparent 18%),
    radial-gradient(circle at 84% 73%, rgba(234,216,209,.24), transparent 17%);
  z-index: 1;
}

/* Página dinámica de detalle de programas */
.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 92px;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 3;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate-2);
}

.detail-badge {
  display: inline-flex;
  width: max-content;
  margin: 6px 0 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--blush-soft);
  color: #6f504b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.detail-copy h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--ink);
}

.detail-copy h2 {
  font-family: var(--condensed);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: #c6958d;
}

.detail-copy p {
  max-width: 620px;
  color: var(--slate-2);
  margin: 0 0 26px;
}

.detail-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.detail-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}

.detail-visual img {
  position: relative;
  z-index: 2;
  max-width: min(390px, 92%);
  filter: drop-shadow(0 28px 28px rgba(69, 75, 78, .12));
  animation: floatAsset 5.5s ease-in-out infinite;
}

.detail-blob {
  position: absolute;
  width: 410px;
  height: 310px;
  background: #ead9d1;
  border-radius: 62% 38% 45% 55%;
  opacity: .8;
}

.detail-section {
  padding: 58px 0;
  background: var(--ivory);
}

.detail-summary {
  padding-top: 42px;
  padding-bottom: 28px;
}

.detail-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.detail-stat {
  background: #5e646f;
  color: white;
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--soft-shadow);
}

.detail-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
  margin-bottom: 10px;
}

.detail-stat span {
  display: block;
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.1;
  text-transform: uppercase;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.detail-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px 34px 32px;
  box-shadow: var(--soft-shadow);
}

.detail-card-wide {
  grid-column: 1 / -1;
}

.detail-card-number {
  display: block;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 18px;
  color: #c39a91;
}

.detail-card h3 {
  margin: 0 0 18px;
  font-family: var(--condensed);
  font-size: 23px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.detail-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-card li {
  position: relative;

/* ================================
   Preloader and contact quick actions
   ================================ */
.preloader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  z-index: 9999;
  transition: opacity .28s ease, visibility .28s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner { text-align: center; }
.preloader-logo-img { width: 110px; height: auto; margin-bottom: 12px; }
.preloader-text { font-weight: 700; color: var(--slate-2); margin-bottom: 10px; }

/*.contact-banner {
  position: fixed;
  right: 18px;
  bottom: 90px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9998;
}
.contact-icon-bottom {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  background: #fff;
  color: #243139;
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
  text-decoration: none;
  padding: 0;
}
.contact-icon-bottom i { line-height: 1; font-size: 20px; }
.contact-icon-bottom i.fab.fa-whatsapp { font-size: 24px; color: #25D366; }*/

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  box-shadow: var(--soft-shadow);
  z-index: 9999;
}
  padding-left: 28px;
  margin: 13px 0;
  color: var(--slate-2);
}

.detail-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #ead5ce;
  color: #7c5e59;
  font-size: 11px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.detail-final {
  padding: 68px 0 86px;
  background: #fffaf5;
}

.detail-final-card,
.detail-empty-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 46px;
  text-align: center;
}

.detail-final-card h2,
.detail-empty-card h1 {
  max-width: 760px;
  margin: 0 auto 26px;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  color: var(--ink);
}

.detail-empty {
  min-height: 560px;
  display: flex;
  align-items: center;
}

.detail-empty-card p {
  color: var(--slate-2);
  margin-bottom: 24px;
}

@media(max-width:980px) {
  .detail-hero-grid,
  .detail-content-grid {
    grid-template-columns: 1fr;
  }

  .detail-hero-grid {
    gap: 24px;
  }

  .detail-stats-grid {
    grid-template-columns: 1fr;
  }

  .detail-copy {
    text-align: left;
  }
}

@media(max-width:620px) {
  .detail-hero {
    padding: 52px 0 70px;
  }

  .detail-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .detail-actions .btn {
    width: 100%;
  }

  .detail-card,
  .detail-final-card,
  .detail-empty-card {
    padding: 28px 22px;
  }
}

/* ================================
   AJUSTE VISUAL DETALLE PROGRAMAS
   Misma línea gráfica que el home
================================ */

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 118px;
  background:
    radial-gradient(circle at 86% 18%, rgba(232,214,205,.78), transparent 31%),
    radial-gradient(circle at 12% 86%, rgba(239,228,220,.58), transparent 28%),
    linear-gradient(180deg, #fffcf8 0%, #fbf7f1 100%);
}

.detail-copy .eyebrow {
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #526066;
}

.detail-copy h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.06;
  margin: 0 0 18px;
  color: #20272c;
}

.detail-copy h2 {
  font-family: var(--condensed);
  font-size: 24px;
  line-height: 1.08;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 20px;
  color: #c6958d;
}

.detail-copy p {
  font-family: var(--sans);
  max-width: 620px;
  color: #4f5a5f;
  font-size: 15px;
  line-height: 1.85;
  margin: 0 0 28px;
}

.back-link {
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #5e646f;
}

.detail-badge {
  font-family: var(--condensed);
  background: #ead8d1;
  color: #6f504b;
  letter-spacing: .12em;
}

.detail-section {
  background: #fffaf5;
}

.detail-summary {
  margin-top: -48px;
  position: relative;
  z-index: 5;
  background: transparent;
}

.detail-stat {
  background: #5e646f;
  border-radius: 14px;
  box-shadow: 0 28px 55px rgba(47, 65, 75, .18);
}

.detail-stat strong {
  font-family: var(--serif);
  font-weight: 600;
}

.detail-stat span {
  font-family: var(--condensed);
}

.detail-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.detail-card-number {
  font-family: var(--serif);
  color: #c39a91;
}

.detail-card h3 {
  font-family: var(--condensed);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #27333a;
}

.detail-card li {
  font-family: var(--sans);
  color: #60696f;
  line-height: 1.65;
}

.detail-final {
  background:
    radial-gradient(circle at 18% 32%, rgba(239,228,220,.46), transparent 24%),
    linear-gradient(180deg, #fffaf5 0%, #fbf6ef 100%);
}

.detail-final-card,
.detail-empty-card {
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.detail-final-card h2,
.detail-empty-card h1 {
  font-family: var(--serif);
  font-weight: 400;
  color: #27333a;
}

/* ================================
   TARJETAS CON MÁS VOLUMEN
================================ */

/* Tarjetas generales */
.mini-card,
.focus-card,
.testimonial,
.detail-card {
  background: linear-gradient(180deg, #ffffff 0%, #fffdfa 100%);
  border: 1px solid rgba(232, 222, 216, .9);
  box-shadow:
    0 18px 35px rgba(47, 65, 75, .08),
    0 35px 80px rgba(47, 65, 75, .08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

/* Hover más premium */
.mini-card:hover,
.focus-card:hover,
.testimonial:hover,
.detail-card:hover {
  transform: translateY(-10px);
  border-color: rgba(201, 156, 145, .42);
  box-shadow:
    0 24px 45px rgba(47, 65, 75, .12),
    0 42px 90px rgba(47, 65, 75, .12);
}

/* Iconos con contenedor para que destaquen más */
.line-icon,
.focus-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 22px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #f4e6df, #fff8f4);
  color: #bd968e;
  font-size: 28px;
  box-shadow: 0 14px 26px rgba(201, 156, 145, .18);
}

/* Mejora tarjetas de beneficios */
.mini-card {
  padding: 34px 30px 36px;
  border-right: 0;
  border-radius: 22px;
  min-height: 230px;
}

.intro-grid {
  gap: 22px;
  align-items: stretch;
}

.intro-title {
  padding-right: 34px;
  min-height: 230px;
}

/* ================================
   MI ENFOQUE: MÁS ESPACIO
   3 tarjetas arriba + 2 abajo centradas
================================ */

.focus-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
}

.focus-card {
  grid-column: span 2;
  min-height: 285px;
  padding: 36px 30px 38px;
  border-radius: 24px;
}

/* Centrar las 2 tarjetas de la segunda fila */
.focus-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.focus-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.focus-card span {
  text-align: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.focus-card h3 {
  font-size: 18px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.focus-card p {
  font-size: 14px;
  line-height: 1.7;
}

/* ================================
   TARJETAS DE PROGRAMAS
================================ */

.program-panel {
  border-radius: 34px;
  box-shadow:
    0 28px 60px rgba(47, 65, 75, .11),
    0 45px 100px rgba(47, 65, 75, .10);
}

.program-card {
  padding: 64px 54px;
}

.program-card h3 {
  font-size: 32px;
}

.program-card p,
.program-card li {
  font-size: 14px;
  line-height: 1.7;
}

/* ================================
   DETALLE DE PROGRAMAS
================================ */

.detail-card {
  padding: 42px 42px 40px;
  border-radius: 28px;
}

.detail-card h3 {
  font-size: 26px;
}

.detail-card li {
  font-size: 15px;
  line-height: 1.75;
}

.detail-stat {
  border-radius: 22px;
  padding: 38px 28px;
  box-shadow:
    0 22px 45px rgba(47, 65, 75, .16),
    0 35px 85px rgba(47, 65, 75, .14);
}

.detail-stat strong {
  font-size: 46px;
}

/* Responsive */
@media(max-width: 980px) {
  .intro-grid,
  .focus-grid {
    grid-template-columns: 1fr 1fr;
  }

  .focus-card,
  .focus-card:nth-child(4),
  .focus-card:nth-child(5) {
    grid-column: auto;
  }

  .program-card {
    padding: 46px 34px;
  }
}

@media(max-width: 620px) {
  .intro-grid,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .mini-card,
  .focus-card,
  .detail-card {
    padding: 30px 24px;
    min-height: auto;
  }

  .line-icon,
  .focus-icon {
    width: 56px;
    height: 56px;
    font-size: 25px;
  }

  .program-card {
    padding: 36px 26px;
  }
}

/* ================================
   ESTADÍSTICAS CON MÁS VOLUMEN
================================ */

.stats-wrap {
  padding: 8px 0 86px;
  background:
    radial-gradient(circle at 50% 0%, rgba(234, 216, 209, .28), transparent 34%),
    linear-gradient(180deg, #fffaf5 0%, #fff7f0 100%);
}

.stats-card {
  width: min(1040px, calc(100% - 40px));
  padding: 16px;
  gap: 0;
  border-radius: 24px;
  background:
    linear-gradient(135deg, #707986 0%, #5e646f 48%, #4f5965 100%);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 28px 55px rgba(47, 65, 75, .20),
    0 48px 95px rgba(47, 65, 75, .18),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  position: relative;
  overflow: hidden;
}

/* Brillo superior sutil */
.stats-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, .14) 0%,
      rgba(255, 255, 255, .04) 35%,
      rgba(255, 255, 255, 0) 100%
    );
  pointer-events: none;
  z-index: 1;
}

/* Hace que el contenido quede sobre el brillo */
.stat {
  position: relative;
  z-index: 2;
  padding: 42px 24px 38px;
  border-radius: 18px;
}

/* Separadores más finos */
.stat:not(:last-child)::after {
  top: 22px;
  bottom: 22px;
  background: rgba(255, 255, 255, .22);
}

/* Iconos con más presencia */
.stat-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #f1ded8;
  background: rgba(255, 255, 255, .08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .16),
    0 14px 24px rgba(31, 43, 49, .16);
  font-size: 30px;
}

/* Números más protagonistas */
.stat strong {
  font-size: 44px;
  text-shadow: 0 8px 20px rgba(31, 43, 49, .18);
}

/* Texto más claro */
.stat p {
  color: #ffffff;
  opacity: .96;
}

/* Pequeño efecto hover */
.stat:hover {
  background: rgba(255, 255, 255, .025);
}

.stat:hover .stat-icon {
  transform: translateY(-3px);
}

.stat-icon {
  transition: transform .25s ease;
}

/* ================================
   CORRECCIÓN POSICIÓN ICONOS STATS
================================ */

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  border-radius: 18px;

  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  font-size: 29px;
  line-height: 1;
  color: #f1ded8;

  background: rgba(255, 255, 255, .08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .16),
    0 14px 24px rgba(31, 43, 49, .16);

  vertical-align: middle;
}

/* Font Awesome genera el dibujo aquí */
.stat-icon::before {
  display: block;
  line-height: 1;
  margin: 0;
  transform: translateY(0);
}

/* Ajuste óptico por tipo de icono */
.stat-icon.fa-graduation-cap::before {
  transform: translateY(1px);
}

.stat-icon.fa-award::before {
  transform: translateY(0);
}

.stat-icon.fa-star::before {
  transform: translateY(0);
}

/* ================================
   SOBRE MÍ CON MÁS VOLUMEN
================================ */

.about {
  padding: 130px 0 190px;
  background:
    radial-gradient(circle at 15% 42%, rgba(201, 156, 145, .16), transparent 26%),
    radial-gradient(circle at 82% 32%, rgba(255, 255, 255, .76), transparent 28%),
    radial-gradient(circle at 72% 82%, rgba(234, 216, 209, .42), transparent 24%),
    linear-gradient(180deg, #f5eee9 0%, #f8f2ee 48%, #fbf7f2 100%);
}

/* Decoración suave de fondo */
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 28%, rgba(255, 255, 255, .42), transparent 20%),
    radial-gradient(circle at 88% 58%, rgba(201, 156, 145, .10), transparent 18%);
  z-index: 1;
  pointer-events: none;
}

/* Más presencia del contenido */
.about-grid {
  position: relative;
  z-index: 3;
  gap: 96px;
}

/* Foto con más profundidad */
.about-photo {
  position: relative;
}

.paper-card {
  width: 365px;
  height: 305px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.78), rgba(255,250,245,.52));
  transform: rotate(-3deg) translate(-18px, 8px);
  box-shadow:
    0 24px 50px rgba(137, 118, 106, .14),
    inset 0 1px 0 rgba(255,255,255,.7);
}

.about-photo::after {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(234, 216, 209, .42);
  filter: blur(26px);
  z-index: 0;
  transform: translate(-28px, 28px);
}

.about-photo img {
  width: 370px;
  border-radius: 28px;
  box-shadow:
    0 26px 55px rgba(47, 65, 75, .16),
    0 48px 95px rgba(47, 65, 75, .12);
}

/* Texto como tarjeta suave */
.about-copy {
  position: relative;
  max-width: 610px;
  padding: 42px 46px;
  border-radius: 30px;
  background: rgba(255, 253, 249, .54);
  border: 1px solid rgba(232, 222, 216, .72);
  box-shadow:
    0 20px 45px rgba(47, 65, 75, .07),
    inset 0 1px 0 rgba(255,255,255,.65);
  backdrop-filter: blur(8px);
}

/* Pequeña línea decorativa superior */
.about-copy::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 46px;
  width: 54px;
  height: 2px;
  border-radius: 999px;
  background: #c99c91;
  opacity: .55;
}

/* Ajuste visual de textos */
.about-copy .eyebrow {
  margin-top: 12px;
  margin-bottom: 18px;
  color: #5e646f;
}

.about-copy h2 {
  font-size: clamp(44px, 4vw, 58px);
  line-height: 1.04;
  margin-bottom: 26px;
  color: #20272c;
}

.about-copy p {
  font-size: 16px;
  line-height: 1.85;
  color: #3f4b51;
}

.handwritten {
  font-size: clamp(40px, 3.4vw, 52px);
  margin-top: 26px !important;
  color: #c5948d !important;
}

/* Mejorar los elementos decorativos */
.dot-grid {
  right: 14%;
  top: 42%;
  opacity: .48;
}

.formula-bg {
  left: 9%;
  top: 34%;
  opacity: .34;
}

/* Responsive */
@media(max-width: 980px) {
  .about-grid {
    gap: 48px;
  }

  .about-copy {
    padding: 36px 34px;
  }

  .about-photo img {
    width: min(370px, 100%);
  }
}

@media(max-width: 620px) {
  .about {
    padding: 88px 0 130px;
  }

  .about-copy {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .about-copy::before {
    left: 24px;
  }

  .about-copy h2 {
    font-size: 38px;
  }

  .about-copy p {
    font-size: 14px;
  }

  .handwritten {
    font-size: 36px;
  }
}

/* ================================
   FIRMA SOBRE MÍ MÁS PROTAGONISTA
================================ */

.about-copy .handwritten {
  display: inline-block;
  margin-top: 30px !important;
  font-family: var(--script);
  font-size: clamp(42px, 3.8vw, 58px) !important;
  line-height: .95 !important;
  color: #c5948d !important;
  letter-spacing: .01em;
  transform: rotate(-1deg);
}

.about-copy .handwritten::before {
  content: "";
  display: block;
  width: 58px;
  height: 1px;
  margin: 0 0 18px;
  /* background: #d6b0a8; */
  opacity: .65;
}



/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 86% 18%, rgba(232, 214, 205, .9), transparent 31%),
        radial-gradient(circle at 12% 86%, rgba(239, 228, 220, .72), transparent 28%),
        linear-gradient(180deg, #fffcf8 0%, #fbf7f1 100%);
    color: var(--slate);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.7s ease, visibility 0.7s ease, backdrop-filter 0.7s ease;
    backdrop-filter: blur(0px);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(8px);
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
    max-width: 280px;
    width: 100%;
    padding: 24px 12px;
}

.preloader-logo {
    width: 140px;
    height: 140px;
    margin: 0 auto 18px;
    border-radius: 24px;
    background: rgba(201, 156, 145, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 18px rgba(94, 100, 111, 0.25);
    animation: logoIn 0.95s cubic-bezier(0.35, 0, 0.25, 1) forwards;
}

.preloader-logo-img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(201, 156, 145, 0.6));
}

.preloader-text {
    font-size: 0.92rem;
    color: #5e646f;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 14px;
    opacity: 0;
    animation: textFade 0.8s 0.7s ease forwards;
}

.preloader-bar {
    position: relative;
    width: 100%;
    height: 5px;
    background: rgba(201, 156, 145, 0.28);
    border-radius: var(--radius-full);
    overflow: hidden;
    box-shadow: 0 0 16px rgba(94, 100, 111, 0.22);
}

.preloader-bar::before {
    content: '';
    position: absolute;
    left: -15%;
    top: 0;
    height: 100%;
    width: 15%;
    background: linear-gradient(90deg, rgba(201, 156, 145, 0), rgba(201, 156, 145, 0.9), rgba(201, 156, 145, 0));
    animation: barShine 1.7s ease-in-out infinite;
}

.preloader-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(135deg, #c9b3aa, #5e646f);
    border-radius: var(--radius-full);
    animation: barProgress 2s ease-in-out forwards;
    animation-delay: 0.2s;
}

@keyframes logoIn {
    from {
        opacity: 0;
        transform: scale(0.84);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes textFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes barShine {
    0% {
        left: -15%;
    }
    50% {
        left: 105%;
    }
    100% {
        left: -15%;
    }
}

@keyframes barProgress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}



/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 2;
}

.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #25D366;
    border-radius: 50%;
    animation: whatsappPulse 2s ease-out infinite;
}

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

@media (max-width: 1024px) {
    .whatsapp-float {
        display: none !important;
    }
}


/* botones accesibilidad movil */
.contact-banner {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(30, 30, 30, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.18);
    padding: 5px 0 calc(6px + env(safe-area-inset-bottom));
}

body.preloader-active .contact-banner {
    display: none !important;
}

@media (min-width: 1025px) {
    .contact-banner {
        display: none !important;
    }
}

.contact-icon-bottom {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    min-height: 58px;
    position: relative;
}

.contact-icon-bottom:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.contact-icon-bottom i {
    width: 48px;
    height: 48px;
    min-width: 48px;
    padding: 0;
    line-height: 1;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    color: #ffffff;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.contact-icon-bottom i.fab.fa-whatsapp {
    font-size: 24px;
}

.contact-icon-bottom i.fa-phone {
    font-size: 20px;
}

.contact-icon-bottom:hover i,
.contact-icon-bottom:focus i {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.08);
}

.preloader:not(.hidden) + .contact-banner {
    display: none;
}