* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --bg: #081326;
    --bg-2: #0E1D3A;
    --navy: #16295A;
    --card: #102347;
    --electric: #2E6BFF;
    --electric-light: #5A8BFF;
    --white: #ffffff;
    --text: #D9E1F2;
    --muted: #9BA8C7;
    --border: rgba(255, 255, 255, 0.10);
    --glass: rgba(255, 255, 255, 0.04);
}

body {
    font-family: 'Inter', sans-serif;
    background: radial-gradient(circle at top left, rgba(223, 226, 234, 0.18), transparent 35%),
        radial-gradient(circle at bottom right, rgba(247, 247, 247, 0.1), transparent 25%),
        linear-gradient(135deg, #07111F 0%, #0B1630 45%, #08162f 100%);
    color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 140px 7% 140px;
}

.hero::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(46, 107, 255, 0.20), transparent 70%);
    top: -200px;
    right: -200px;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 78, 255, 0.12), transparent 70%);
    bottom: -250px;
    left: -150px;
    z-index: 0;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 7%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 7%;
    background: rgba(88, 88, 88, 0.375);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 42px;
}

.nav-links a {
    color: var(--text);
    font-size: 0.95rem;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-btn {
    background: linear-gradient(135deg, var(--electric), #174CFF);
    padding: 13px 24px;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.35s ease;
    box-shadow: 0 10px 30px rgba(46, 107, 255, 0.25);
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(46, 107, 255, 0.40);
}

/* HERO CONTENT */
.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 0.92fr;
    align-items: center;
    gap: 55px;
    min-height: 78vh;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 11px 20px;
    border: 1px solid rgba(90, 139, 255, 0.5);
    border-radius: 50px;
    background: rgba(46, 107, 255, 0.08);
    backdrop-filter: blur(10px);
    color: #AFC5FF;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.8rem;
    line-height: 0.95;
    font-weight: 600;
    margin-bottom: 14px;
    max-width: 580px;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-style: italic;
    color: #C4D3FF;
    margin-bottom: 22px;
    font-weight: 400;
}

.line {
    width: 70px;
    height: 2px;
    background: linear-gradient(to right, var(--electric), transparent);
    margin-bottom: 30px;
}

.hero-text {
    max-width: 520px;
    color: #CFD8EF;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--electric), #2153FF);
    padding: 16px 28px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    transition: 0.35s ease;
    box-shadow: 0 15px 35px rgba(46, 107, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(46, 107, 255, 0.45);
}

.btn-outline {
    padding: 16px 28px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    transition: 0.35s ease;
    font-size: 0.92rem;
}

.btn-outline:hover {
    border-color: rgba(90, 139, 255, 0.5);
    background: rgba(46, 107, 255, 0.08);
    transform: translateY(-4px);
}

.right-content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.person-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.person-wrapper::before {
    content: "";
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(46, 107, 255, 0.25), transparent 70%);
    z-index: 0;
}

.person-image {
    position: relative;
    height: 560px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    z-index: 2;
}

.person-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: contrast(1.02) brightness(0.95);
}

.quote-card {
    position: absolute;
    top: 75px;
    width: 600px;
    border-radius: 24px;
    backdrop-filter: blur(14px);
    z-index: 5;
}

.quote-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.5;
    color: white;
    font-style: italic;
}

.metrics-card {
    position: absolute;
    bottom: -95px;
    left: 20%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 10px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(18px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.28);
    z-index: 10;
}

.metric {
    flex: 1;
    text-align: center;
    position: relative;
}

.metric:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 55px;
    background: rgba(0, 0, 0, 0.08);
}

.metric h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    color: #1B3C92;
    margin-bottom: 5px;
    font-weight: 700;
}

.metric span {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #5B6783;
    line-height: 1.5;
}

/* --- SECCIÓN TRABAJO / ENFOQUE --- */
.strategy-section {
    position: relative;
    padding: 90px 7% 140px;
    overflow: hidden;
}

.strategy-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(5, 12, 26, 0.8), rgba(5, 12, 26, 0.95)), url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=2000&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    opacity: 0.55;
    z-index: 0;
}

.strategy-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(46, 107, 255, 0.10), transparent 30%),
        radial-gradient(circle at bottom left, rgba(46, 107, 255, 0.08), transparent 30%);
    z-index: 1;
}

.strategy-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: start;
}

.strategy-card {
    position: relative;
    padding: 40px;
    border-radius: 15px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.30);
    transition: 0.45s ease;
    overflow: hidden;
    height: fit-content;
}

.strategy-card:hover {
    transform: translateY(-10px);
    border-color: rgba(90, 139, 255, 0.35);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}

.card-label {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    color: #AFC5FF;
    background: rgba(46, 107, 255, 0.08);
    border: 1px solid rgba(90, 139, 255, 0.25);
}

.strategy-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 22px;
    font-weight: 800;
    color: white;
}

.strategy-text {
    color: #D2DBF1;
    line-height: 1.9;
    font-size: 1rem;
    margin-bottom: 35px;
}

.strategy-image {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.strategy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.strategy-card:hover .strategy-image img {
    transform: scale(1.05);
}

.approach-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.approach-box {
    position: relative;
    padding: 16px;
    border-radius: 22px;
    transition: 0.35s ease;
}

.approach-box:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(90, 139, 255, 0.25);
    transform: translateX(5px);
}

.approach-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, #2E6BFF, transparent);
    margin-bottom: 18px;
}

.approach-box h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: white;
    font-weight: 600;
}

.approach-box p {
    color: #B8C4E2;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* --- METODOLOGÍA DE INTERVENCIÓN --- */
.methodology-section {
    position: relative;
    padding: 100px 7%;
    overflow: hidden;
}

.methodology-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(5, 12, 26, 0.93), rgba(5, 12, 26, 0.96)), url("https://images.unsplash.com/photo-1497366412874-3415097a27e7?q=80&w=2000&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    opacity: 0.55;
    z-index: 0;
}

.methodology-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(46, 107, 255, 0.10), transparent 30%),
        radial-gradient(circle at bottom right, rgba(46, 107, 255, 0.08), transparent 30%);
    z-index: 1;
}

.methodology-container {
    position: relative;
    z-index: 2;
}

.methodology-header {
    max-width: 700px;
    margin-bottom: 60px;
}

.methodology-label {
    display: inline-block;
    color: #8FB2FF;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.methodology-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    line-height: 1;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
}

.methodology-line {
    width: 90px;
    height: 2px;
    background: linear-gradient(to right, #2E6BFF, transparent);
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    align-items: stretch;
}

.method-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 45px;
    border-radius: 30px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.30);
    overflow: hidden;
    transition: 0.45s ease;
}

.method-card:hover {
    transform: translateY(-10px);
    border-color: rgba(90, 139, 255, 0.35);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
}

.method-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 1;
    color: rgba(90, 139, 255, 0.16);
    margin-bottom: 25px;
}

.method-title {
    font-size: 1.45rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.method-subtitle {
    display: block;
    color: #8FB2FF;
    font-size: 0.92rem;
    margin-bottom: 22px;
}

.method-text {
    color: #CFD8EF;
    line-height: 1.9;
    font-size: 0.97rem;
    margin-bottom: 28px;
}

.method-divider {
    width: 65px;
    height: 2px;
    background: linear-gradient(to right, #2E6BFF, transparent);
    margin-bottom: 28px;
}

.method-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
    list-style: none;
}

.method-list li {
    position: relative;
    padding-left: 22px;
    color: #D7E0F5;
    font-size: 0.95rem;
}

.method-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2E6BFF;
}

/* --- PRINCIPIOS SECTION --- */
.principles-section {
    position: relative;
    padding: 140px 7%;
    overflow: hidden;
    background: #F7F9FC;
}

.principles-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.95)), url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=2000&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    opacity: 0.55;
    z-index: 0;
}

.principles-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(46, 107, 255, 0.05), transparent 30%),
        radial-gradient(circle at bottom left, rgba(46, 107, 255, 0.04), transparent 30%);
    z-index: 1;
}

.principles-container {
    position: relative;
    z-index: 2;
}

.principles-header {
    max-width: 760px;
    margin-bottom: 80px;
}

.principles-label {
    display: inline-block;
    color: #2E6BFF;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
}

.principles-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    line-height: 1;
    font-weight: 600;
    color: #0E1D3A;
    margin-bottom: 24px;
}

.principles-line {
    width: 90px;
    height: 2px;
    background: linear-gradient(to right, #2E6BFF, transparent);
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 38px 40px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(15, 35, 80, 0.06);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.05);
    transition: 0.4s ease;
}

.principle-item:hover {
    transform: translateY(-6px);
    border-color: rgba(46, 107, 255, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.principle-number {
    min-width: 90px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    line-height: 1;
    font-weight: 600;
    color: rgba(45, 92, 201, 0.61);
}

.principle-content h3 {
    font-size: 1.45rem;
    color: #102347;
    margin-bottom: 14px;
    font-weight: 600;
}

.principle-content p {
    color: #5E6B84;
    line-height: 1.9;
    font-size: 1rem;
    max-width: 780px;
}

/* --- DOMAINS SECTION --- */
.domains-section {
    position: relative;
    padding: 140px 7%;
    background: linear-gradient(180deg, #0C1730 0%, #111F3D 100%);
    overflow: hidden;
}

.domains-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(8, 19, 38, .92), rgba(8, 19, 38, .94)), url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?q=80&w=2000&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    opacity: .95;
    z-index: 0;
}

.domains-container {
    position: relative;
    z-index: 2;
}

.domains-header {
    max-width: 760px;
    margin-bottom: 90px;
}

.domains-label {
    display: inline-block;
    color: #8FB2FF;
    font-size: .78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
}

.domains-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    line-height: 1;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
}

.domains-line {
    width: 90px;
    height: 2px;
    background: linear-gradient(to right, #2E6BFF, transparent);
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 35px;
    align-items: stretch;
}

.domain-card {
    position: relative;
    padding: 75px 35px 35px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
    transition: .4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: visible;
}

.domain-card:hover {
    transform: translateY(-8px);
    border-color: rgba(90, 139, 255, .35);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
}

.domain-icon {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 65px;
    height: 65px;
    border-radius: 20px;
    background: linear-gradient(135deg, #2E6BFF, #174CFF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    box-shadow: 0 15px 35px rgba(46, 107, 255, .35);
    border: 1px solid rgba(255, 255, 255, .12);
}

.domain-card h3 {
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 600;
    text-align: center;
}

.domain-card p {
    color: #C9D5EE;
    line-height: 1.8;
    font-size: .96rem;
    margin-bottom: 28px;
    text-align: center;
}

.domain-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: auto;
}

.domain-tags span {
    padding: 10px 16px;
    border-radius: 50px;
    background: rgba(46, 107, 255, .08);
    border: 1px solid rgba(90, 139, 255, .18);
    color: #AFC5FF;
    font-size: .78rem;
}

/* --- SECCIÓN METODOLOGÍA WM --- */
.wm-meth-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: #0b1220;
}

.wm-meth-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('tu-imagen.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: saturate(0.8) contrast(1.1);
    z-index: 0;
}

.wm-meth-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #0C1629, rgba(11, 18, 32, 0.95));
    z-index: 1;
}

.wm-meth-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.wm-meth-header {
    max-width: 800px;
    margin-bottom: 70px;
}

.wm-meth-label {
    display: inline-block;
    color: #6ea8ff;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
}

.wm-meth-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.6rem;
    line-height: 1.05;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 22px;
}

.wm-meth-line {
    width: 90px;
    height: 2px;
    background: linear-gradient(to right, #2E6BFF, transparent);
}

.wm-meth-row {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.wm-meth-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: 30px 22px;
    text-align: center;
    transition: 0.35s ease;
    color: #e6eaf2;
    min-width: 0;
    opacity: 0;
    transform: translateY(40px);
    animation: wmFadeUp 0.8s ease forwards;
}

.wm-meth-card:hover {
    transform: translateY(-8px);
    border-color: rgba(110, 168, 255, 0.25);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.wm-meth-number {
    width: 54px;
    height: 54px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E6BFF, #1b3f99);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

.wm-meth-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: #ffffff;
}

.wm-meth-card-subtitle {
    font-size: 0.82rem;
    font-weight: 500;
    color: #6ea8ff;
    margin-bottom: 10px;
}

.wm-meth-card-text {
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(230, 234, 242, 0.75);
}

/* --- DIFERENCIAL COMPETITIVO SECTION --- */
.mindset-section {
    position: relative;
    padding: 140px 7%;
    background: #EEF3FA;
    overflow: hidden;
}

.mindset-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(238, 243, 250, .92), rgba(238, 243, 250, .95)), url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=2000&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    opacity: .45;
    z-index: 0;
}

.mindset-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(46, 107, 255, .08), transparent 25%),
        radial-gradient(circle at bottom left, rgba(46, 107, 255, .06), transparent 25%);
    z-index: 1;
}

.mindset-container {
    position: relative;
    z-index: 2;
}

.mindset-header {
    max-width: 820px;
    margin-bottom: 80px;
}

.mindset-label {
    display: inline-block;
    color: #2E6BFF;
    font-size: .78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
}

.mindset-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    line-height: 1;
    font-weight: 600;
    color: #0E1D3A;
    margin-bottom: 24px;
}

.mindset-line {
    width: 90px;
    height: 2px;
    background: linear-gradient(to right, #2E6BFF, transparent);
}

/* Quitar fondo oscuro de la tarjeta y sombras fuertes */
.mindset-card {
    position: relative;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 20px 0;
    overflow: visible;
}

/* Dividir el contenido en 2 columnas */
.mindset-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Colores de texto oscuros para fondo claro */
.timeline-content h3 {
    color: #0E1D3A;
}

.timeline-content p {
    color: #4A5568;
}

.timeline-item::after {
    background: rgba(0, 0, 0, 0.1);
}

.switch-btn {
    background: transparent;
    border: 1px solid #CBD5E0;
    color: #4A5568;
}

/* Contenedor de las imágenes dinámicas */
.mindset-image-col {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 580px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.mindset-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: 0.65s cubic-bezier(.77, 0, .175, 1);
    transform: scale(1.05);
}

.mindset-img.active-img {
    opacity: 1;
    transform: scale(1);
}

.mindset-side-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #2E6BFF, #5A8BFF);
    box-shadow: 0 0 20px rgba(46, 107, 255, .45);
}

.mindset-switcher {
    display: flex;
    gap: 18px;
    margin-bottom: 50px;
}

.switch-btn {
    padding: 14px 24px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #AFC5FF;
    border-radius: 12px;
    cursor: pointer;
    transition: .35s ease;
    font-weight: 500;
}

.switch-btn:hover {
    transform: translateY(-3px);
}

.switch-btn.active {
    background: linear-gradient(135deg, #2E6BFF, #174CFF);
    color: #fff;
    box-shadow: 0 15px 35px rgba(46, 107, 255, .35);
}

.mindset-slider {
    position: relative;
    overflow: hidden;
    min-height: 580px;
}

.mindset-panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(120px);
    transition: .65s cubic-bezier(.77, 0, .175, 1);
    pointer-events: none;
}

.mindset-panel.active-panel {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 28px;
    padding-bottom: 45px;
}

.timeline-item::after {
    content: "";
    position: absolute;
    left: 11px;
    top: 28px;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, .08);
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-dot {
    position: relative;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #5D667A;
    margin-top: 5px;
    z-index: 2;
}

.active-dot {
    background: #2E6BFF;
    box-shadow: 0 0 18px rgba(46, 107, 255, .45);
}

.timeline-content h3 {
    font-size: 1.35rem;
    color: #162a57;
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    color: #393d45a4;
    line-height: 1.9;
    font-size: 1rem;
    max-width: 760px;
}

/* ANIMACIONES GLOBALES */

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;

}


.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

.delay-4 {
    transition-delay: 0.6s;
}

.wm-meth-card:nth-child(1) {
    transition-delay: 0.1s;
}

.wm-meth-card:nth-child(2) {
    transition-delay: 0.25s;
}

.wm-meth-card:nth-child(3) {
    transition-delay: 0.4s;
}

.wm-meth-card:nth-child(4) {
    transition-delay: 0.55s;
}

.wm-meth-card:nth-child(5) {
    transition-delay: 0.7s;
}

.res-delay-1 {
    transition-delay: 0.1s;
}

.res-delay-2 {
    transition-delay: 0.2s;
}

.res-delay-3 {
    transition-delay: 0.3s;
}

.res-delay-4 {
    transition-delay: 0.4s;
}

.res-delay-5 {
    transition-delay: 0.5s;
}

.res-delay-6 {
    transition-delay: 0.6s;
}

/* RESULTADOS SECTION */
.results-section {
    position: relative;
    padding: 140px 7%;
    background: #081326;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.results-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(8, 19, 38, 0.88), rgba(8, 19, 38, 0.95)),
        url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2000&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.results-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center left, rgba(46, 107, 255, 0.08), transparent 45%),
        radial-gradient(circle at center right, rgba(46, 107, 255, 0.05), transparent 45%);
    z-index: 1;
}

.results-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
}

.results-header {
    max-width: 800px;
    margin-bottom: 70px;
    text-align: left;
}

.results-label {
    display: inline-block;
    color: #2E6BFF;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
}

.results-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    line-height: 1.05;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
}

.results-line {
    width: 90px;
    height: 2px;
    background: linear-gradient(to right, #2E6BFF, transparent);
}

.results-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.results-left {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-circle {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(46, 107, 255, 0.25);
    box-shadow: 0 0 50px rgba(46, 107, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    position: relative;
    z-index: 2;
}

.main-circle::before {
    content: "";
    position: absolute;
    inset: -20px;
    border: 1px dashed rgba(90, 139, 255, 0.3);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

.circle-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.05);
}

.results-arc {
    position: absolute;
    right: -80px;
    top: 5%;
    bottom: 5%;
    width: 150px;
    border: 1px solid rgba(46, 107, 255, 0.3);
    border-radius: 0 250px 250px 0;
    border-left: none;
    z-index: 1;
}

.results-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 14px 28px 14px 14px;
    transition: 0.3s ease;
    opacity: 0;
    animation: slideInRight 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.result-item:hover {
    border-color: rgba(90, 139, 255, 0.4);
    background: rgba(46, 107, 255, 0.08);
    transform: translateX(5px) !important;
}

.result-item.pos-1 {
    margin-left: 0px;
}

.result-item.pos-2 {
    margin-left: 35px;
}

.result-item.pos-3 {
    margin-left: 55px;
}

.result-item.pos-4 {
    margin-left: 55px;
}

.result-item.pos-5 {
    margin-left: 35px;
}

.result-item.pos-6 {
    margin-left: 0px;
}

.result-icon {
    min-width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E6BFF, #174CFF);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Cormorant Garamond', serif;
    box-shadow: 0 0 15px rgba(46, 107, 255, 0.4);
}

.result-text {
    color: #CFD8EF;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 400;
}

.res-delay-1 {
    animation-delay: 0.1s;
}

.res-delay-2 {
    animation-delay: 0.3s;
}

.res-delay-3 {
    animation-delay: 0.5s;
}

.res-delay-4 {
    animation-delay: 0.7s;
}

.res-delay-5 {
    animation-delay: 0.9s;
}

.res-delay-6 {
    animation-delay: 1.1s;
}

/* SECCIÓN CRITERIOS DE SELECCIÓN */
.criteria-section {
    position: relative;
    padding: 140px 7%;
    background: #081326;
    overflow: hidden;
}

.criteria-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(8, 19, 38, 9.80), rgba(8, 19, 38, 0.94)),
        url("https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2000&auto=format&fit=crop");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.criteria-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(46, 107, 255, 0.08), transparent 40%),
        radial-gradient(circle at bottom left, rgba(46, 107, 255, 0.05), transparent 40%);
    z-index: 1;
}

.criteria-container {
    position: relative;
    z-index: 2;
    max-width: 1250px;
    margin: 0 auto;
}

.criteria-header {
    text-align: left;
    max-width: 850px;
    margin: 0 0 75px 0;
    padding: 0;
}

.criteria-label {
    display: inline-block;
    color: #2E6BFF;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-weight: 600;
}

.criteria-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    line-height: 1.1;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
}

.criteria-desc {
    color: #CFD8EF;
    font-size: 1.05rem;
    line-height: 1.8;
}

.criteria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.criteria-card {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 35px;
    transition: 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.criteria-card:hover {
    transform: translateY(-8px);
    border-color: rgba(46, 107, 255, 0.3);
    background: rgba(46, 107, 255, 0.06);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.criteria-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    line-height: 0.8;
    font-weight: 700;
    color: rgba(46, 107, 255, 0.6);
    min-width: 60px;
}

.criteria-content h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.criteria-content p {
    color: #9BA8C7;
    font-size: 0.95rem;
    line-height: 1.7;
}

.criteria-card:nth-child(odd) {
    animation-delay: 0.2s;
}

.criteria-card:nth-child(even) {
    animation-delay: 0.4s;
}

/* SMART PARTNER SECTION */
.smart-section {
    position: relative;
    padding: 140px 7%;
    background: #F8FAFC;
    overflow: hidden;
}

.smart-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(46, 107, 255, 0.04), transparent 40%),
        radial-gradient(circle at bottom right, rgba(46, 107, 255, 0.03), transparent 40%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 244, 248, 0.5) 100%);
    z-index: 0;
}

.smart-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.smart-left {
    display: flex;
    flex-direction: column;
}

.smart-label {
    display: inline-block;
    color: #2E6BFF;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
}

.smart-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    line-height: 1.05;
    font-weight: 700;
    color: #0E1D3A;
    margin-bottom: 25px;
}

.smart-intro {
    color: #4A5568;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 35px;
}

.smart-quote {
    position: relative;
    padding: 20px 25px;
    margin: 25px 0;
    background: #fff;
    border-left: 4px solid #2E6BFF;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: #16295A;
    line-height: 1.5;
}

.smart-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding-left: 10px;
}

.smart-list::before {
    content: "";
    position: absolute;
    left: 32px;
    top: 10px;
    bottom: 20px;
    width: 2px;
    background: #E2E8F0;
    z-index: 0;
}

.smart-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.smart-icon {
    min-width: 46px;
    height: 46px;
    background: #fff;
    border: 2px solid #2E6BFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2E6BFF;
    box-shadow: 0 5px 15px rgba(46, 107, 255, 0.15);
    transition: 0.3s ease;
}

.smart-item:hover .smart-icon {
    background: #2E6BFF;
    color: #fff;
    transform: scale(1.1);
}

.smart-item-text h4 {
    font-size: 1.15rem;
    color: #0E1D3A;
    margin-bottom: 6px;
    font-weight: 600;
}

.smart-item-text p {
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.5;
}

.smart-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.smart-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.smart-shape-bg {
    position: absolute;
    inset: -20px -30px 20px 30px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    z-index: 0;
}

.smart-image-wrapper img {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 16px;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(14, 29, 58, 0.15);
}

.smart-decor-blue {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: #2E6BFF;
    border-radius: 16px;
    z-index: 1;
}

.smart-floating-badge {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: #fff;
    padding: 18px 25px;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
    animation: floatUpDown 4s ease-in-out infinite;
}

.badge-icon-wrap {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2E6BFF, #174CFF);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.badge-info h3 {
    color: #0E1D3A;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.badge-info span {
    color: #64748B;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ===== SECCIÓN CONTACTO ===== */
.contact-section {
    position: relative;
    padding: 140px 7%;
    background: #F8FAFC;
    overflow: hidden;
}

.contact-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1250px;
    margin: 0 auto;
}

.contact-left {
    display: flex;
    flex-direction: column;
}

.contact-label {
    color: #2E6BFF;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: #0E1D3A;
    margin-bottom: 25px;
}

.contact-text {
    color: #4A5568;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.contact-quote {
    padding: 15px 0 15px 25px;
    margin: 10px 0 25px 0;
    border-left: 3px solid #2E6BFF;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: #16295A;
    line-height: 1.5;
}

.contact-email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0E1D3A;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 15px;
    transition: 0.3s ease;
}

.contact-email-link:hover {
    color: #2E6BFF;
}

.contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 20px 50px rgba(14, 29, 58, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contact-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: #0E1D3A;
    margin-bottom: 30px;
    font-weight: 600;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    background: #fff;
    color: #0E1D3A;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2E6BFF;
    box-shadow: 0 0 0 3px rgba(46, 107, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E1D3A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    background: #0E1D3A;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s ease;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #2E6BFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(46, 107, 255, 0.2);
}

/* ===== FOOTER ===== */
.site-footer {
    background: #0C1629;
    padding: 35px 7%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    color: #D9E1F2;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
}

.footer-right {
    color: #64748B;
    font-size: 0.85rem;
}

/* ANIMACIONES COMPLEMENTARIAS */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes wmFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* --- MEDIA QUERIES CONSOLIDADAS --- */
@media(max-width:1100px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .person-wrapper {
        margin: auto;
    }

    .quote-card {
        left: -30px;
    }

    .strategy-container {
        grid-template-columns: 1fr;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
    }

    .methodology-title {
        font-size: 3.2rem;
    }

    .domains-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wm-meth-row {
        flex-wrap: wrap;
    }

    .wm-meth-card {
        flex: 1 1 calc(50% - 20px);
    }

    .smart-container {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .smart-right {
        order: -1;
    }

    .smart-floating-badge {
        left: 20px;
    }

    .mindset-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mindset-image-col {
        min-height: 400px;
    }
}

@media(max-width:1000px) {
    .results-content-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .results-arc {
        display: none;
    }

    .main-circle {
        width: 300px;
        height: 300px;
    }

    .results-title {
        font-size: 2.8rem;
    }

    .result-item.pos-1,
    .result-item.pos-2,
    .result-item.pos-3,
    .result-item.pos-4,
    .result-item.pos-5,
    .result-item.pos-6 {
        margin-left: 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media(max-width:900px) {
    .principles-title {
        font-size: 3rem;
    }

    .principle-item {
        flex-direction: column;
        gap: 20px;
    }

    .principle-number {
        font-size: 3.2rem;
    }

    .criteria-grid {
        grid-template-columns: 1fr;
    }

    .criteria-title {
        font-size: 3rem;
    }

    .criteria-card:nth-child(odd),
    .criteria-card:nth-child(even) {
        animation-delay: 0.2s;
    }
}

@media(max-width:768px) {
    .navbar {
        flex-direction: column;
        gap: 25px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero {
        padding: 20px 5% 130px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .quote-card {
        position: relative;
        width: 100%;
        left: auto;
        top: auto;
        margin-bottom: 20px;
    }

    .person-image {
        height: 480px;
    }

    .metrics-card {
        width: 100%;
        bottom: -70px;
        flex-direction: column;
        gap: 20px;
        padding: 28px;
    }

    .metric:not(:last-child)::after {
        display: none;
    }

    .strategy-section {
        padding: 120px 5% 100px;
    }

    .strategy-card {
        padding: 35px;
    }

    .strategy-title {
        font-size: 2.6rem;
    }

    .strategy-image {
        height: 220px;
    }

    .methodology-section {
        padding: 110px 5%;
    }

    .method-card {
        padding: 35px;
    }

    .methodology-title {
        font-size: 2.6rem;
    }

    .method-number {
        font-size: 3.8rem;
    }

    .principles-section {
        padding: 110px 5%;
    }

    .principles-title {
        font-size: 2.5rem;
    }

    .principle-item {
        padding: 30px;
    }

    .domains-section {
        padding: 110px 5%;
    }

    .domains-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .domains-title {
        font-size: 2.7rem;
    }

    .mindset-section {
        padding: 110px 5%;
    }

    .mindset-title {
        font-size: 2.8rem;
    }

    .mindset-card {
        padding: 35px 28px;
    }

    .mindset-slider {
        min-height: 760px;
    }

    .mindset-switcher {
        flex-wrap: wrap;
    }

    .results-title {
        font-size: 2.4rem;
    }

    .results-section {
        padding: 110px 5%;
    }

    .criteria-section {
        padding: 110px 5%;
    }

    .criteria-title {
        font-size: 2.5rem;
    }

    .criteria-card {
        padding: 25px;
        flex-direction: column;
        gap: 15px;
    }

    .smart-section {
        padding: 100px 5%;
    }

    .smart-title {
        font-size: 2.6rem;
    }

    .smart-quote {
        font-size: 1.15rem;
        padding: 15px 20px;
    }

    .smart-shape-bg {
        inset: -10px;
    }

    .contact-section {
        padding: 100px 5%;
    }

    .contact-title {
        font-size: 2.8rem;
    }

    .contact-card {
        padding: 35px 25px;
    }

    .footer-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .wm-meth-title {
        font-size: 2.4rem;
    }

    .wm-meth-card {
        flex: 1 1 100%;
    }
}