/* Design Tokens */
:root {
    --primary-red: #8C0001;
    --accent-red: #B23A3B;
    --bright-red: #D33E3F;
    --gold-main: #F48F3E;
    --gold-light: #FBD360;
    --gold-gradient: linear-gradient(26deg, #F48F3E 0%, #E8BE57 22%, #FB9442 53%, #FAE066 79%, #E8BE57 99%);
    --dark-gradient: linear-gradient(154deg, black 0%, #3D3D3D 47%, #212121 59%, #6E6E6E 100%);
    
    --bg-light: #F4F5F5;
    --bg-white: #FDFDFD;
    --bg-gray: #F9F9F9;
    --bg-card: #FEFEFE;
    --text-dark: #0B0B0B;
    --text-muted: #333333;
    --text-white: #FDFDFD;
    
    --font-heading: 'Forum', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 20px;
    --border-radius-lg: 30px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    color-scheme: light;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

h1, h2, h3, .heading-font {
    font-family: var(--font-heading);
    font-weight: 400;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Scale */
h1 { font-size: clamp(40px, 8vw, 64px); line-height: 1.1; }
h2 { font-size: clamp(32px, 6vw, 48px); line-height: 1.2; }
h3 { font-size: clamp(24px, 4vw, 32px); line-height: 1.3; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #0C0C0C;
    box-shadow: 0 4px 15px rgba(244, 143, 62, 0.3);
    position: relative;
    padding: 10px 32px 10px 15px;
    min-height: 60px;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 143, 62, 0.4);
}

.btn-dark {
    background: var(--dark-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 10px 32px 10px 15px;
    min-height: 60px;
}

.btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn svg {
    margin-right: 15px;
    flex-shrink: 0;
}

.btn-header {
    width: 160px;
    height: 50px;
    min-height: 50px;
    padding: 0 0 0 25px;
    border: 0.25px solid #fdfdfd;
    border-radius: 255px;
    background: linear-gradient(154deg, #000 0%, #3d3d3d 46.62%, #212121 58.62%, #6e6e6e 100%);
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.btn-header span {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 11px;
    line-height: 120%;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.btn-header svg {
    position: absolute;
    right: 6px;
    margin: 0;
    flex-shrink: 0;
}

/* Header */
header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    background: #f9f9f9;
    border: 1px solid #fff;
    border-radius: 30px;
    width: 858px;
    height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 140%;
    color: #0b0b0b;
    transition: var(--transition);
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--primary-red);
    opacity: 1;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 246, 145, 0.65);
    border-radius: 50%;
    background: var(--gold-gradient);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
}

.mobile-menu-toggle span {
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: #0C0C0C;
    transition: var(--transition);
}

.mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1200;
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu.is-open {
    pointer-events: auto;
    visibility: visible;
}

.mobile-menu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 12, 12, 0.58);
    opacity: 0;
    transition: opacity 0.28s ease;
    backdrop-filter: blur(7px);
}

.mobile-menu.is-open .mobile-menu__backdrop {
    opacity: 1;
}

.mobile-menu__panel {
    position: absolute;
    top: 14px;
    right: 14px;
    width: min(360px, calc(100vw - 28px));
    max-height: calc(100vh - 28px);
    overflow-y: auto;
    background: #F4F5F5;
    border: 1px solid rgba(255, 246, 145, 0.46);
    border-radius: 28px;
    padding: 18px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    transform: translateX(24px) scale(0.97);
    opacity: 0;
    transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.24s ease;
}

.mobile-menu.is-open .mobile-menu__panel {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.mobile-menu__top img {
    width: 54px;
    height: 50px;
    object-fit: contain;
}

.mobile-menu__close {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(140, 0, 1, 0.14);
    border-radius: 50%;
    background: #8C0001;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.mobile-menu__close span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #FDFDFD;
    border-radius: 999px;
}

.mobile-menu__close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu__close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu__nav {
    display: grid;
    gap: 10px;
}

.mobile-menu__nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 16px;
    border-radius: 16px;
    background: #FFFFFF;
    color: #0B0B0B;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    box-shadow: inset 0 0 0 1px rgba(140, 0, 1, 0.06);
    transition: var(--transition);
}

.mobile-menu__nav a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #8C0001;
    border-right: 2px solid #8C0001;
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-left: 14px;
}

.mobile-menu__nav a:hover,
.mobile-menu__nav a:focus-visible {
    background: #8C0001;
    color: #FDFDFD;
    outline: none;
}

.mobile-menu__nav a:hover::after,
.mobile-menu__nav a:focus-visible::after {
    border-color: #FBD360;
}

.mobile-menu__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    margin-top: 18px;
    border-radius: 999px;
    background: var(--gold-gradient);
    color: #0C0C0C;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    box-shadow: 0 12px 30px rgba(244, 143, 62, 0.28);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-color: var(--primary-red);
    position: relative;
    padding-top: 100px;
    padding-bottom: 0;
    overflow: visible;
    color: #fdfdfd;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape-1 {
    position: absolute;
    width: 2200px;
    height: 500px;
    background: white;
    opacity: 0.05;
    transform: rotate(-31deg);
    top: 20%;
    left: -10%;
}

.hero::after {
    content: '';
    position: absolute;
    width: 354px;
    height: 608px;
    background: var(--bright-red);
    filter: blur(125px);
    opacity: 0.3;
    top: 20%;
    right: 5%;
    border-radius: 50%;
    pointer-events: none;
}

.hero::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: -180px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.38;
    background-image: url("data:image/svg+xml,%3Csvg width='1400' height='720' viewBox='0 0 1400 720' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 640C132 602 256 632 370 640C512 650 620 612 660 460C696 321 690 235 835 196C1010 149 1120 270 1258 120C1309 64 1346 -18 1398 -92' stroke='%23FDFDFD' stroke-opacity='0.34' stroke-width='1.4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 0;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    padding-top: 0;
}

.hero-text h1 {
    font-family: "Forum", sans-serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 100%;
    margin-bottom: 24px;
    color: #fdfdfd;
}

.hero-subtitle {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
    opacity: 0.9;
}

.hero-description {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    margin-bottom: 32px;
    opacity: 0.9;
    max-width: 500px;
    color: #fdfdfd;
}

.hero-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-cta {
    margin-top: 50px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 140%;
    color: #fdfdfd;
}

.hero-feature-item svg {
    flex-shrink: 0;
}

.hero-feature-item:nth-child(1) strong,
.hero-feature-item:nth-child(2) strong {
    font-weight: 700;
}

.hero-feature-item:nth-child(3) strong {
    font-weight: 600;
}

.hero-image {
    position: relative;
    align-self: end;
    overflow: visible;
    margin-left: -60px;
}

.hero-image::before {
    content: "";
    position: absolute;
    width: 72%;
    height: 70%;
    right: 4%;
    top: 14%;
    z-index: -1;
    border-radius: 999px;
    background: #D33E3F;
    opacity: 0.58;
    filter: blur(90px);
    transform: rotate(-10deg);
    pointer-events: none;
}

.hero-image img {
    width: 532px;
    height: 584px;
    display: block;
    object-fit: contain;
    object-position: bottom center;
    margin-bottom: 0;
}

/* Info Cards */
.info-cards-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    width: 100%;
    max-width: 1160px;
    height: 205px;
    background: #f9f9f9;
    border-radius: 30px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.info-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 348px;
    height: 128px;
    background: #b23a3b;
    border: 0.5px solid #8c0001;
    border-radius: 20px;
    padding: 16px 20px;
    flex-shrink: 0;
}

.info-card-title {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    color: #fbfbfb;
    margin: 0;
}

.info-card-text {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 140%;
    color: #fbfbfb;
    margin: 0;
}

/* Quote Section */
.quote-section {
    padding: 80px 0;
    background: var(--primary-red);
    color: white;
}

.hero + .quote-section {
    padding-top: 42px;
}

.quote-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.quote-text {
    font-family: "Inter", sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    color: #fff;
    flex: 1;
    margin: 0;
}

.quote-author {
    flex-shrink: 0;
}

.quote-author-photo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.quote-author-img {
    width: 209px;
    height: 206px;
    border-radius: 50%;
    object-fit: cover;
    background: #ccc;
}

.quote-author-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
}

.quote-author-name {
    font-family: "Inter", sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    color: #fff;
}

.quote-author-role {
    font-family: "Inter", sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 13px;
    line-height: 140%;
    color: #fff;
}

/* Grid Sections (Materials) */
.grid-section {
    padding: 100px 0;
    position: relative;
    background: #8C0001;
}

.section-bg-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--gold-main);
    top: -100px;
    right: -200px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-red);
    bottom: -100px;
    left: -150px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: "Forum", sans-serif;
    font-weight: 400;
    font-size: 64px;
    line-height: 100%;
    text-align: center;
    color: #fff;
}

.section-header p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: #fff;
    margin-top: 16px;
}

.section-tag {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-transform: uppercase;
    color: #fdfdfd;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 108px;
    height: 1px;
    background: linear-gradient(90deg, #F48F3E 0%, #ECAD4E 14%, #E8BE57 22%, #EEB150 32%, #FB9442 53%, #FAE066 79%, #E8BE57 99%);
    flex-shrink: 0;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 20px;
}

.material-item {
    background: var(--bg-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    gap: 25px;
    align-items: center;
    border: 1px solid white;
    transition: var(--transition);
}

.material-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: var(--shadow);
}

.material-number {
    font-family: "Forum", sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 140%;
    color: #000;
    flex-shrink: 0;
}

.grid-section-cta-text {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 30px;
}

.material-item strong {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 140%;
    color: #0b0b0b;
    display: block;
}

.material-item p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 140%;
    color: #0b0b0b;
    margin: 0;
}

/* Audience Cards (Target Audience) */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.audience-card {
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    height: 100%;
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.audience-image {
    width: 100%;
    height: 225px;
    object-fit: cover;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.audience-content {
    padding: 24px;
    flex-grow: 1;
}

.audience-title {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 125%;
    text-transform: uppercase;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.audience-title::before {
    content: '';
    width: 2px;
    height: 14px;
    background: var(--primary-red);
    border-radius: 4px;
}

.audience-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 125%;
    color: #333;
}

/* Founder Details */
.info-section {
    padding: 80px 20px;
}

.founder-box {
    background: var(--bg-gray);
    border-radius: var(--border-radius-lg);
    padding: 60px;
}

.about-copy-frame {
    position: relative;
    padding: 30px 34px;
    border: 0;
    background:
        linear-gradient(90deg, #F48F3E 0%, #E8BE57 28%, #FAE066 58%, rgba(250, 224, 102, 0) 100%) left bottom / 58% 1px no-repeat,
        linear-gradient(0deg, #F48F3E 0%, #E8BE57 34%, rgba(250, 224, 102, 0) 100%) left bottom / 1px 58% no-repeat,
        linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08));
}

.about-copy-frame::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 63%;
    height: 1px;
    background: linear-gradient(90deg, #F48F3E 0%, #E8BE57 28%, #FAE066 58%, rgba(250, 224, 102, 0) 100%);
    pointer-events: none;
}

.about-copy-frame::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 70%;
    background: linear-gradient(180deg, #F48F3E 0%, #E8BE57 34%, rgba(250, 224, 102, 0) 100%);
    pointer-events: none;
}

.founder-box > .quote-author {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: flex-start !important;
    margin-top: 28px !important;
    max-width: 520px;
}

.founder-box > .quote-author .quote-author-img {
    width: 146px;
    height: 146px;
    flex: 0 0 146px;
}

.founder-box > .quote-author > div {
    min-width: 0;
}

.founder-box > .quote-author > div > div:first-child {
    font-family: var(--font-heading) !important;
    font-size: 34px !important;
    line-height: 1.05 !important;
    letter-spacing: 0 !important;
}

.founder-box > .quote-author > div > div:last-child {
    margin-top: 8px;
    font-size: 14px !important;
    line-height: 1.35 !important;
}

/* Reviews */
.reviews-section {
    padding: 100px 0;
    background: #8C0001;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.student-reviews .reviews-grid-legacy,
.colleague-reviews .reviews-grid-legacy {
    display: none;
}

.reviews-slider {
    position: relative;
    padding: 0 72px 54px;
}

.reviews-viewport {
    overflow: hidden;
}

.reviews-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 60px) / 3);
    gap: 30px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
    display: none;
}

.review-card {
    background: var(--accent-red);
    padding: 30px;
    border-radius: var(--border-radius);
    color: white;
}

.review-slide {
    height: 430px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.review-header {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex: 0 0 auto;
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #eee;
    flex: 0 0 auto;
    object-fit: cover;
    object-position: center;
}

.review-avatar-placeholder {
    background:
        linear-gradient(135deg, rgba(244, 143, 62, 0.7), rgba(251, 211, 96, 0.95)),
        #FBD360;
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.review-role {
    margin-top: 6px;
    font-size: 10px;
    line-height: 1.4;
    opacity: 0.8;
}

.review-text {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    padding: 0;
    font-size: 14px;
    font-style: italic;
    line-height: 1.55;
    opacity: 0.92;
}

.review-read-more {
    align-self: flex-start;
    margin-top: 22px;
    padding: 12px 20px;
    border: 1px solid rgba(255, 246, 145, 0.55);
    border-radius: 999px;
    background: var(--gold-gradient);
    color: #0B0B0B;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

.review-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
}

.reviews-arrow {
    position: absolute;
    top: 180px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 246, 145, 0.55);
    border-radius: 50%;
    background: var(--gold-gradient);
    color: #0B0B0B;
    cursor: pointer;
    transition: var(--transition);
}

.reviews-arrow:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.reviews-arrow span {
    display: block;
    margin-top: -3px;
    font-size: 42px;
    line-height: 1;
}

.reviews-arrow-prev {
    left: 0;
}

.reviews-arrow-next {
    right: 0;
}

.reviews-dots {
    position: absolute;
    left: 72px;
    right: 72px;
    bottom: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.reviews-dot {
    width: 8px;
    height: 8px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
    cursor: pointer;
    transition: var(--transition);
}

.reviews-dot.is-active {
    width: 28px;
    border-radius: 999px;
    background: #FBD360;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item {
    background: var(--accent-red);
    padding: 24px;
    border-radius: 10px;
    color: white;
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    display: block;
}

/* Founder Section */
.founder-section {
    background: #8C0001;
    padding: 60px 0 70px;
    width: 100%;
}

.founder-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.founder-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.founder-label-line {
    flex: 0 0 108px;
    height: 1px;
    background: #F48F3E;
}

.founder-label-text {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #FDFDFD;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.founder-name {
    font-family: 'Forum', 'Palatino Linotype', Georgia, serif;
    font-size: 64px;
    font-weight: 400;
    color: #FDFDFD;
    line-height: 1.05;
    margin-bottom: 36px;
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 498px;
    gap: 60px;
    align-items: start;
}

.founder-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 36px;
}

.stat-card {
    background: #B23A3B;
    border: 0.5px solid rgba(255,255,255,0.15);
    border-radius: 9px;
    padding: 18px 22px 16px;
}

.stat-num {
    font-size: 40px;
    font-weight: 600;
    color: #FBFBFB;
    line-height: 1.2;
}

.stat-num-sm {
    font-size: 30px;
}

.stat-desc {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    line-height: 1.45;
    margin-top: 4px;
}

.founder-quote {
    font-size: 18px;
    font-style: italic;
    font-weight: 700;
    color: #FBFBFB;
    line-height: 1.6;
}

.founder-quote p {
    margin-bottom: 18px;
}

.founder-quote p:last-child {
    margin-bottom: 0;
}

.founder-photo {
    width: 100%;
    height: 420px;
    border-radius: 24px;
    object-fit: cover;
    object-position: center top;
    display: block;
    background: #B23A3B;
    margin-bottom: 28px;
}

.founder-achievements {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ach-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.ach-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 2px;
}

.ach-text {
    font-size: 18px;
    font-weight: 500;
    color: #FDFDFD;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .founder-section {
        padding: 54px 0 60px;
    }

    .founder-inner {
        padding: 0 24px;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .founder-name {
        font-size: 52px;
    }

    .founder-photo {
        height: min(58vw, 420px);
    }

    .reviews-slider {
        padding: 0 58px 54px;
    }

    .reviews-track {
        grid-auto-columns: calc((100% - 24px) / 2);
        gap: 24px;
    }

    .reviews-dots {
        left: 58px;
        right: 58px;
    }
}

@media (max-width: 768px) {
    .founder-section {
        padding: 44px 0 52px;
    }

    .founder-inner {
        padding: 0 18px;
    }

    .founder-label {
        gap: 12px;
    }

    .founder-label-line {
        flex-basis: 72px;
    }

    .founder-name {
        font-size: 42px;
        margin-bottom: 28px;
    }

    .founder-stats {
        grid-template-columns: 1fr;
        margin-bottom: 28px;
    }

    .stat-card {
        padding: 16px 18px;
    }

    .stat-num {
        font-size: 34px;
    }

    .stat-num-sm {
        font-size: 30px;
    }

    .founder-quote {
        font-size: 17px;
        line-height: 1.5;
    }

    .founder-photo {
        height: min(76vw, 380px);
        border-radius: 20px;
    }

    .ach-text {
        font-size: 16px;
    }
}

/* Pricing */
.pricing-section {
    padding: 40px 0;
    background: #8C0001;
}

.pricing-shell {
    width: calc(100% - 160px);
    max-width: 1160px;
    min-height: 670px;
    background: #D9D9D9;
    border-radius: 24px;
    padding: 48px 20px 56px;
}

.pricing-header {
    margin-bottom: 26px;
}

.pricing-header .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    color: #0B0B0B;
    font-size: 16px;
    line-height: 1.4;
}

.pricing-header .section-tag::before,
.pricing-header .section-tag::after {
    content: "";
    width: 100px;
    height: 1px;
    background: #E8BE57;
}

.pricing-header h2 {
    max-width: 520px;
    margin: 10px auto 0;
    color: #0B0B0B;
    font-size: 64px;
    line-height: 1;
}

.pricing-card {
    background: #A90005;
    color: white;
    width: 360px;
    min-height: 397px;
    margin: 0 auto;
    padding: 18px 18px 22px;
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
}

.price {
    color: #FBFBFB;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 6px;
    margin: 0;
}

.old-price {
    text-decoration: line-through;
    color: rgba(251, 251, 251, 0.45);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
    margin-top: 2px;
}

.pricing-note {
    color: #C37D7D;
    font-size: 12px;
    line-height: 1.4;
    margin: 8px 0 10px;
}

.pricing-list {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 14px 6px 13px;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.45;
}

.pricing-list li + li {
    margin-top: 3px;
}

.pricing-list span {
    color: #FBD360;
    font-size: 12px;
    line-height: 1.45;
    flex: 0 0 auto;
}

.pricing-subnote,
.pricing-disclaimer {
    text-align: left;
    color: #C37D7D;
    font-size: 12px;
    line-height: 1.4;
}

.pricing-subnote {
    margin: 14px 6px 0;
}

.pricing-disclaimer {
    margin: 12px 6px 18px;
}

.pricing-button {
    width: 220px;
    min-height: 44px;
    padding: 6px 20px 6px 6px;
    margin: 0 auto;
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
}

.pricing-button svg {
    width: 36px;
    height: 36px;
    margin-right: 14px;
}

body.modal-open {
    overflow: hidden;
}

.review-modal {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.review-modal.is-open {
    display: flex;
}

.review-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 11, 11, 0.78);
    backdrop-filter: blur(5px);
}

.review-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 760px);
    max-height: calc(100vh - 48px);
    display: flex;
    flex-direction: column;
    padding: 34px;
    background: #B23A3B;
    border: 1px solid rgba(255, 246, 145, 0.55);
    border-radius: 24px;
    color: #FFFFFF;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.review-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 246, 145, 0.55);
    border-radius: 50%;
    background: #8C0001;
    color: #FFFFFF;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
}

.review-modal__close:hover {
    background: #B23A3B;
    transform: scale(1.04);
}

.review-modal__header {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
    padding-right: 48px;
    margin-bottom: 24px;
}

.review-modal__avatar {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
}

.review-modal__header strong {
    display: block;
    font-size: 24px;
    line-height: 1.2;
}

.review-modal__header p {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.35;
    opacity: 0.85;
}

.review-modal__text {
    min-height: 0;
    overflow-y: auto;
    padding-right: 12px;
    font-size: 16px;
    font-style: italic;
    line-height: 1.65;
}

.review-modal__text p + p {
    margin-top: 14px;
}

.review-modal__text::-webkit-scrollbar {
    width: 6px;
}

.review-modal__text::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.review-modal__text::-webkit-scrollbar-thumb {
    background: rgba(251, 211, 96, 0.85);
    border-radius: 999px;
}

.widget-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.widget-modal.is-open {
    display: flex;
}

.widget-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 11, 11, 0.78);
    backdrop-filter: blur(5px);
}

.widget-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 800px);
    max-height: calc(100vh - 48px);
    background: #8C0001;
    border: 1px solid rgba(255, 246, 145, 0.55);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.widget-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 246, 145, 0.55);
    border-radius: 50%;
    background: #8C0001;
    color: #FFFFFF;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
}

.widget-modal__close:hover {
    background: #B23A3B;
    transform: scale(1.04);
}

.widget-modal__content {
    min-height: 620px;
    padding: 54px 0 0;
    background: #8C0001;
}

.widget-modal__content iframe {
    display: block;
    width: 100%;
    min-height: 560px;
    background: #8C0001;
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 24px 0;
    }

    .pricing-shell {
        width: calc(100% - 32px);
        min-height: auto;
        padding: 36px 14px 42px;
        border-radius: 18px;
    }

    .pricing-header .section-tag {
        gap: 12px;
        font-size: 12px;
    }

    .pricing-header .section-tag::before,
    .pricing-header .section-tag::after {
        width: 44px;
    }

    .pricing-header h2 {
        font-size: 42px;
    }

    .pricing-card {
        width: 100%;
        max-width: 360px;
    }

    .widget-modal {
        padding: 12px;
    }

    .widget-modal__dialog {
        max-height: calc(100vh - 24px);
        border-radius: 16px;
    }

    .review-modal {
        padding: 12px;
    }

    .review-modal__dialog {
        max-height: calc(100vh - 24px);
        padding: 26px 18px 22px;
        border-radius: 18px;
    }

    .review-modal__header {
        align-items: flex-start;
        padding-right: 44px;
    }

    .review-modal__avatar {
        width: 64px;
        height: 64px;
    }

    .review-modal__header strong {
        font-size: 18px;
    }

    .review-modal__text {
        font-size: 14px;
    }
}

/* FAQ */
.faq-section {
    padding: 100px 0;
    background: var(--primary-red);
    color: white;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 0 24px;
    display: none;
    opacity: 0.8;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
footer {
    background: #D9D9D9;
    padding: 60px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-features {
        align-items: center;
    }
    
    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .materials-grid {
        grid-template-columns: 1fr;
    }

    .reviews-slider {
        padding: 0 0 88px;
    }

    .reviews-track {
        grid-auto-columns: 100%;
        gap: 16px;
    }

    .review-slide {
        height: 390px;
    }

    .reviews-arrow {
        top: auto;
        bottom: 28px;
        width: 44px;
        height: 44px;
    }

    .reviews-arrow-prev {
        left: calc(50% - 92px);
    }

    .reviews-arrow-next {
        right: calc(50% - 92px);
    }

    .reviews-dots {
        left: 88px;
        right: 88px;
        bottom: 42px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
}

/* Full responsive pass */
@media (max-width: 1280px) {
    .container {
        max-width: 100%;
        padding-left: 32px;
        padding-right: 32px;
    }

    .nav-links {
        width: min(100%, 760px);
        gap: 22px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .info-cards-wrapper {
        width: 100%;
    }

    .info-card {
        width: calc((100% - 44px) / 3);
    }

    .hero-image {
        margin-left: 0;
    }

    .hero-image img {
        width: min(44vw, 532px);
        height: auto;
        max-height: 584px;
    }

    .pricing-shell {
        width: calc(100% - 64px);
    }
}

@media (max-width: 1100px) {
    .btn-header {
        width: 148px;
    }

    .nav-links {
        width: min(100%, 620px);
        gap: 16px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .hero-text h1,
    .section-header h2 {
        font-size: clamp(42px, 5.8vw, 58px);
    }

    .quote-content {
        gap: 36px;
    }

    .quote-text {
        font-size: 21px;
    }

    .materials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    #founder > div {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }

    #founder div[style*="grid-template-columns:1fr 498px"] {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 42vw) !important;
        gap: 36px !important;
    }
}

@media (max-width: 991px) {
    header {
        top: 14px;
    }

    header .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .nav-wrapper {
        gap: 16px;
    }

    .logo img {
        height: 44px;
    }

    .btn-header {
        width: 144px;
        height: 46px;
        min-height: 46px;
    }

    .btn-header svg {
        width: 34px;
        height: 34px;
    }

    .hero {
        min-height: auto;
        padding-top: 92px;
    }

    .hero-content {
        gap: 28px;
    }

    .hero-image {
        order: 2;
        max-width: 520px;
        margin: 0 auto;
    }

    .hero-image img {
        width: 100%;
        max-height: 520px;
    }

    .hero-text {
        max-width: 720px;
        margin: 0 auto;
    }

    .hero-cta {
        margin-top: 34px;
    }

    .info-cards-wrapper {
        height: auto;
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        margin-bottom: 40px;
    }

    .info-card {
        width: 100%;
        height: auto;
        min-height: 112px;
    }

    .quote-section,
    .grid-section,
    .reviews-section,
    .faq-section {
        padding: 72px 0;
    }

    .quote-content {
        flex-direction: column;
        text-align: center;
    }

    .founder-box {
        padding: 40px;
    }

    .audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #founder div[style*="grid-template-columns:1fr 498px"] {
        grid-template-columns: 1fr !important;
    }

    #founder div[style*="display:grid; grid-template-columns:1fr 1fr"] {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    #founder img[style*="height:422px"] {
        height: min(58vw, 440px) !important;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .btn {
        max-width: 100%;
        min-height: 52px;
        padding: 10px 22px 10px 10px;
        font-size: 12px;
    }

    .btn svg {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }

    .hero {
        padding-top: 84px;
    }

    .hero-content {
        text-align: left;
    }

    .hero-text h1 {
        font-size: clamp(38px, 11vw, 50px);
        line-height: 0.98;
    }

    .hero-subtitle,
    .hero-description,
    .hero-feature-item {
        text-align: left;
    }

    .hero-features {
        align-items: stretch;
    }

    .hero-feature-item {
        align-items: flex-start;
    }

    .hero-cta {
        text-align: center;
    }

    .hero-image {
        max-width: 420px;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-header h2 {
        font-size: clamp(38px, 10vw, 52px);
    }

    .section-header p {
        font-size: 14px;
    }

    .section-tag {
        gap: 10px;
        font-size: 12px;
    }

    .section-tag::before,
    .section-tag::after {
        width: 48px;
    }

    .quote-text,
    .grid-section-cta-text {
        font-size: 18px;
    }

    .quote-author-name {
        font-size: 20px;
    }

    .materials-grid {
        grid-template-columns: 1fr;
    }

    .material-item {
        align-items: flex-start;
        padding: 22px;
        gap: 16px;
    }

    .material-number {
        font-size: 34px;
        line-height: 1;
    }

    .info-section {
        padding: 56px 18px;
    }

    .founder-box {
        padding: 28px 22px;
    }

    .about-copy-frame {
        padding: 22px 18px;
    }

    .about-copy-frame::before {
        width: 74%;
    }

    .about-copy-frame::after {
        height: 82%;
    }

    .founder-box > .quote-author {
        gap: 18px;
    }

    .founder-box > .quote-author .quote-author-img {
        width: 118px;
        height: 118px;
        flex-basis: 118px;
    }

    .founder-box > .quote-author > div > div:first-child {
        font-size: 28px !important;
    }

    .founder-box h2,
    #founder div[style*="font-size:64px"] {
        font-size: clamp(38px, 11vw, 52px) !important;
        line-height: 1 !important;
    }

    .audience-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .audience-image {
        height: min(62vw, 260px);
    }

    .reviews-section {
        overflow: hidden;
    }

    .review-card {
        padding: 24px;
    }

    .review-header {
        gap: 14px;
    }

    .review-avatar {
        width: 68px;
        height: 68px;
    }

    .review-card strong {
        font-size: 17px;
        line-height: 1.2;
    }

    .review-read-more {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    #founder {
        padding: 56px 0 !important;
    }

    #founder > div {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    #founder div[style*="display:flex; align-items:center"] {
        justify-content: center !important;
    }

    #founder div[style*="width:108px"] {
        width: 54px !important;
    }

    #founder div[style*="display:grid; grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    #founder div[style*="font-size:40px"] {
        font-size: 32px !important;
    }

    #founder div[style*="font-size:30px"] {
        font-size: 28px !important;
    }

    #founder div[style*="font-size:20px"] {
        font-size: 16px !important;
    }

    #founder img[style*="height:422px"] {
        height: min(82vw, 380px) !important;
        border-radius: 20px !important;
    }

    .pricing-shell {
        width: calc(100% - 24px);
        padding-left: 12px;
        padding-right: 12px;
    }

    .pricing-header h2 {
        font-size: clamp(38px, 10vw, 52px);
    }

    .pricing-card {
        max-width: 360px;
    }

    .faq-question {
        gap: 18px;
        font-size: 16px;
        line-height: 1.35;
    }

    .footer-content {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    header .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .logo img {
        height: 38px;
    }

    .btn-header {
        width: 126px;
        height: 42px;
        min-height: 42px;
        padding-left: 16px;
    }

    .btn-header span {
        font-size: 10px;
    }

    .btn-header svg {
        width: 30px;
        height: 30px;
        right: 5px;
    }

    .hero {
        padding-top: 76px;
    }

    .hero-text h1 {
        font-size: clamp(34px, 12vw, 44px);
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-feature-item {
        font-size: 12px;
    }

    .hero-image {
        max-width: 330px;
    }

    .info-cards-wrapper {
        border-radius: 22px;
        padding: 14px;
    }

    .info-card-title {
        font-size: 18px;
    }

    .quote-section,
    .grid-section,
    .reviews-section,
    .faq-section {
        padding: 56px 0;
    }

    .quote-author-img {
        width: 156px;
        height: 156px;
    }

    .section-tag::before,
    .section-tag::after {
        width: 28px;
    }

    .material-item {
        flex-direction: column;
    }

    .audience-content {
        padding: 20px;
    }

    .reviews-slider {
        padding-bottom: 92px;
    }

    .reviews-dots {
        left: 76px;
        right: 76px;
    }

    .review-slide {
        height: 420px;
    }

    .review-modal__header {
        flex-direction: column;
        gap: 12px;
    }

    .pricing-card {
        width: 100%;
        padding: 18px 14px 22px;
    }

    .price {
        font-size: 34px;
        letter-spacing: 4px;
    }

    .pricing-button {
        width: 100%;
    }

    .widget-modal__content {
        min-height: 560px;
        padding-top: 52px;
    }

    .widget-modal__content iframe {
        min-height: 520px;
    }

    footer {
        padding: 42px 0;
    }
}

/* Responsive stabilization: final overrides for real devices */
@media (max-width: 900px) {
    body {
        min-width: 0;
    }

    .container,
    .founder-inner {
        max-width: none;
        width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }

    .nav-links {
        display: none;
    }

    .nav-wrapper {
        min-width: 0;
        justify-content: flex-start;
        gap: 14px;
    }

    .btn-header {
        margin-left: auto;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }

    .hero {
        min-height: auto;
        padding: 92px 0 48px;
    }

    .hero-content,
    .founder-grid {
        grid-template-columns: 1fr;
    }

    .hero-text,
    .hero-image,
    .founder-media {
        min-width: 0;
    }

    .hero-image {
        max-width: 480px;
        margin: 20px auto 0;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        max-height: 520px;
    }

    .info-cards-wrapper {
        height: auto;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }

    .info-card {
        width: 100%;
        height: auto;
        min-height: 112px;
        flex-shrink: 1;
    }

    .quote-content {
        flex-direction: column;
        text-align: center;
    }

    .materials-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .reviews-slider {
        padding-left: 56px;
        padding-right: 56px;
    }

    .reviews-track {
        grid-auto-columns: 100%;
    }

    .pricing-shell {
        width: calc(100% - 32px);
    }

    .footer-content {
        flex-direction: column;
        gap: 28px;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 600px) {
    .container,
    .founder-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-text h1 {
        font-size: 38px;
        line-height: 1;
    }

    .section-header h2,
    .pricing-header h2,
    .founder-name {
        font-size: 40px;
        line-height: 1.05;
    }

    .section-tag {
        font-size: 12px;
    }

    .section-tag::before,
    .section-tag::after {
        width: 34px;
    }

    .hero-description,
    .quote-text,
    .founder-quote {
        font-size: 16px;
    }

    .btn,
    .pricing-button {
        white-space: nowrap;
    }

    .pricing-button span,
    .btn span {
        white-space: nowrap;
    }

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

    .founder-photo {
        height: 360px;
    }

    .reviews-slider {
        padding-left: 44px;
        padding-right: 44px;
        padding-bottom: 86px;
    }

    .reviews-arrow {
        width: 48px;
        height: 48px;
    }

    .reviews-arrow-prev {
        left: -4px;
    }

    .reviews-arrow-next {
        right: -4px;
    }

    .pricing-shell {
        width: calc(100% - 20px);
    }

    .pricing-card {
        width: 100%;
        max-width: 360px;
    }

    .faq-question {
        font-size: 16px;
        line-height: 1.35;
    }
}

@media (max-width: 420px) {
    .hero-text h1 {
        font-size: 34px;
    }

    .section-header h2,
    .pricing-header h2,
    .founder-name {
        font-size: 36px;
    }

    .btn-header {
        width: 118px;
        padding-left: 12px;
    }

    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
    }

    .mobile-menu__panel {
        top: 10px;
        right: 10px;
        width: calc(100vw - 20px);
        max-height: calc(100vh - 20px);
        border-radius: 24px;
        padding: 16px;
    }

    .mobile-menu__nav a {
        min-height: 50px;
        font-size: 15px;
    }

    .info-cards-wrapper,
    .founder-box,
    .pricing-card,
    .faq-item {
        border-radius: 20px;
    }

    .founder-photo {
        height: 320px;
    }

    .review-slide {
        height: 440px;
    }
}

/* Reviews framed layout */
.student-reviews,
.colleague-reviews {
    padding: 58px 0;
    background: #8C0001 !important;
}

.student-reviews > .container,
.colleague-reviews > .container {
    max-width: 1160px;
    background: #D9D9D9;
    border-radius: 30px;
    padding: 38px 24px 28px;
    overflow: hidden;
}

.student-reviews .section-header,
.colleague-reviews .section-header {
    margin-bottom: 82px;
}

.student-reviews .section-header h2,
.colleague-reviews .section-header h2 {
    color: #0B0B0B;
}

.student-reviews .section-tag,
.colleague-reviews .section-tag {
    color: #0B0B0B;
}

.student-reviews .reviews-slider,
.colleague-reviews .reviews-slider {
    padding: 0 0 62px;
}

.student-reviews .reviews-viewport,
.colleague-reviews .reviews-viewport {
    overflow: hidden;
    border-radius: 12px;
}

.student-reviews .reviews-track,
.colleague-reviews .reviews-track {
    grid-auto-columns: calc((100% - 40px) / 3);
    gap: 20px;
}

.student-reviews .review-card,
.colleague-reviews .review-card {
    border-radius: 8px;
    background: #B23A3B;
}

.student-reviews .review-slide,
.colleague-reviews .review-slide {
    height: 520px;
}

.student-reviews .reviews-arrow,
.colleague-reviews .reviews-arrow {
    top: -58px;
    width: 42px;
    height: 42px;
    border-color: rgba(255, 246, 145, 0.7);
    box-shadow: 0 8px 22px rgba(140, 0, 1, 0.18);
}

.student-reviews .reviews-arrow span,
.colleague-reviews .reviews-arrow span {
    font-size: 32px;
    margin-top: -2px;
}

.student-reviews .reviews-arrow-prev,
.colleague-reviews .reviews-arrow-prev {
    left: calc(50% - 48px);
}

.student-reviews .reviews-arrow-next,
.colleague-reviews .reviews-arrow-next {
    right: calc(50% - 48px);
}

.student-reviews .reviews-dots,
.colleague-reviews .reviews-dots {
    left: 0;
    right: 0;
    bottom: 18px;
}

.student-reviews .reviews-dot,
.colleague-reviews .reviews-dot {
    background: rgba(140, 0, 1, 0.28);
}

.student-reviews .reviews-dot.is-active,
.colleague-reviews .reviews-dot.is-active {
    background: #8C0001;
}

@media (max-width: 900px) {
    .student-reviews,
    .colleague-reviews {
        padding: 42px 0;
    }

    .student-reviews > .container,
    .colleague-reviews > .container {
        width: calc(100% - 32px);
        padding: 34px 18px 24px;
    }

    .student-reviews .reviews-track,
    .colleague-reviews .reviews-track {
        grid-auto-columns: calc((100% - 18px) / 2);
        gap: 18px;
    }
}

@media (max-width: 640px) {
    .student-reviews > .container,
    .colleague-reviews > .container {
        width: calc(100% - 20px);
        border-radius: 24px;
        padding: 30px 14px 20px;
    }

    .student-reviews .section-header,
    .colleague-reviews .section-header {
        margin-bottom: 76px;
    }

    .student-reviews .reviews-track,
    .colleague-reviews .reviews-track {
        grid-auto-columns: 100%;
    }

    .student-reviews .review-slide,
    .colleague-reviews .review-slide {
        height: 470px;
    }
}

/* Premium FAQ accordion */
.faq-section {
    padding: 96px 0 92px;
    background:
        radial-gradient(circle at 50% 0%, rgba(244, 143, 62, 0.14), transparent 34%),
        #8C0001;
    color: #FDFDFD;
}

.faq-section .section-header {
    margin-bottom: 42px;
}

.faq-section .section-header h2,
.faq-section .section-tag {
    color: #FDFDFD;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 8px;
    border: 1px solid rgba(255, 246, 145, 0.22);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
        rgba(95, 0, 1, 0.36);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 24px 80px rgba(0, 0, 0, 0.18);
    counter-reset: faq;
}

.faq-item {
    position: relative;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    counter-increment: faq;
    transition: var(--transition);
}

.faq-item:last-child {
    border-bottom: 0;
}

.faq-item::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(244, 143, 62, 0.18), rgba(251, 211, 96, 0.05) 42%, transparent 76%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.faq-item::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(251, 211, 96, 0.34), transparent);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.faq-item:hover::before,
.faq-item.active::before {
    opacity: 1;
}

.faq-item.active {
    margin: 8px 0;
    background: rgba(255, 255, 255, 0.045);
    border-color: rgba(251, 211, 96, 0.22);
    box-shadow:
        inset 0 0 0 1px rgba(251, 211, 96, 0.14),
        0 18px 46px rgba(0, 0, 0, 0.12);
}

.faq-item.active::after {
    opacity: 1;
}

.faq-question {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 86px;
    padding: 26px 24px 26px 78px;
    background: transparent;
    border: 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
    text-align: left;
    cursor: pointer;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 24px;
    align-items: center;
}

.faq-question::before {
    content: counter(faq, decimal-leading-zero);
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
    color: rgba(251, 211, 96, 0.88);
}

.faq-question span {
    position: relative;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(251, 211, 96, 0.44);
    border-radius: 50%;
    color: transparent;
    background: rgba(255, 255, 255, 0.035);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-question span::before,
.faq-question span::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 2px;
    border-radius: 999px;
    background: #FBD360;
    transition: var(--transition);
}

.faq-question span::after {
    transform: rotate(90deg);
}

.faq-question:hover span,
.faq-item.active .faq-question span {
    background: var(--gold-gradient);
    border-color: rgba(255, 246, 145, 0.72);
    box-shadow: 0 10px 26px rgba(244, 143, 62, 0.24);
}

.faq-question:hover span::before,
.faq-question:hover span::after,
.faq-item.active .faq-question span::before,
.faq-item.active .faq-question span::after {
    background: #0C0C0C;
}

.faq-item.active .faq-question span::after {
    transform: rotate(0deg);
    opacity: 0;
}

.faq-answer {
    position: relative;
    z-index: 1;
    display: block;
    max-width: 780px;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    color: rgba(253, 253, 253, 0.82);
    font-size: 16px;
    line-height: 1.62;
    opacity: 0;
    transform: translateY(-6px);
    transition:
        max-height 0.36s ease,
        padding 0.36s ease,
        opacity 0.24s ease,
        transform 0.24s ease;
}

.faq-item.active .faq-answer {
    max-height: 260px;
    padding: 0 92px 30px 78px;
    opacity: 1;
    transform: translateY(0);
}

.faq-section .btn-gold {
    margin-top: 2px;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 66px 0 70px;
    }

    .faq-section .section-header {
        margin-bottom: 30px;
    }

    .faq-container {
        padding: 6px;
        border-radius: 24px;
    }

    .faq-question {
        min-height: 76px;
        padding: 20px 16px 20px 60px;
        grid-template-columns: minmax(0, 1fr) 34px;
        gap: 16px;
        font-size: 16px;
    }

    .faq-question::before {
        left: 16px;
        font-size: 22px;
    }

    .faq-question span {
        width: 34px;
        height: 34px;
    }

    .faq-answer {
        font-size: 14px;
        line-height: 1.55;
    }

    .faq-item.active .faq-answer {
        max-height: 360px;
        padding: 0 54px 24px 60px;
    }
}

@media (max-width: 480px) {
    .faq-container {
        border-top-color: rgba(255, 255, 255, 0.2);
        border-radius: 20px;
    }

    .faq-question {
        min-height: 72px;
        padding-left: 50px;
        font-size: 15px;
        grid-template-columns: minmax(0, 1fr) 32px;
    }

    .faq-question::before {
        left: 14px;
        font-size: 20px;
    }

    .faq-question span {
        width: 32px;
        height: 32px;
    }

    .faq-item.active .faq-answer {
        padding: 0 12px 22px 50px;
    }
}

/* Founder reference layout */
.founder-section {
    padding: 38px 0 44px;
    background: #8C0001;
}

.founder-inner {
    max-width: 1120px;
    padding: 0 20px;
}

.founder-label {
    width: fit-content;
    margin-bottom: 18px;
    gap: 10px;
}

.founder-label-line {
    flex-basis: 56px;
    background: linear-gradient(90deg, rgba(244, 143, 62, 0.15), #F48F3E);
}

.founder-label::after {
    content: "";
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, #F48F3E, rgba(244, 143, 62, 0.15));
}

.founder-label-text {
    font-size: 11px;
    letter-spacing: 0.02em;
}

.founder-name {
    font-size: 42px;
    line-height: 1;
    margin-bottom: 28px;
}

.founder-grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 530px);
    gap: 56px;
    align-items: start;
}

.founder-stats {
    max-width: 390px;
    gap: 10px;
    margin-bottom: 34px;
}

.stat-card {
    min-height: 68px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(178, 58, 59, 0.96);
    padding: 12px 18px;
}

.stat-num {
    font-size: 32px;
    line-height: 1;
    letter-spacing: 0.02em;
}

.stat-num-sm {
    font-size: 32px;
}

.stat-desc {
    font-size: 11px;
    line-height: 1.25;
    margin-top: 7px;
}

.founder-quote {
    max-width: 520px;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
}

.founder-photo {
    height: 330px;
    border-radius: 18px;
    margin-bottom: 20px;
}

.founder-media {
    margin-top: -58px;
}

.founder-achievements {
    gap: 11px;
}

.ach-item {
    gap: 12px;
    align-items: flex-start;
}

.ach-icon {
    width: 17px;
    height: 17px;
    margin-top: 2px;
}

.ach-text {
    font-size: 16px;
    line-height: 1.25;
}

@media (max-width: 900px) {
    .founder-section {
        padding: 48px 0 54px;
    }

    .founder-inner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .founder-stats,
    .founder-quote {
        max-width: none;
    }

    .founder-photo {
        height: min(58vw, 430px);
    }

    .founder-media {
        margin-top: 0;
    }
}

@media (max-width: 560px) {
    .founder-section {
        padding: 40px 0 46px;
    }

    .founder-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .founder-label {
        margin-left: auto;
        margin-right: auto;
    }

    .founder-label-line,
    .founder-label::after {
        width: 44px;
        flex-basis: 44px;
    }

    .founder-name {
        font-size: 36px;
        text-align: center;
    }

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

    .stat-card {
        min-height: 74px;
        padding: 12px 14px;
    }

    .stat-num,
    .stat-num-sm {
        font-size: 28px;
    }

    .founder-photo {
        height: min(74vw, 340px);
        border-radius: 16px;
    }

    .founder-quote {
        font-size: 14px;
    }

    .ach-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .founder-box > .quote-author {
        flex-direction: row;
        align-items: center;
        gap: 14px;
    }

    .founder-box > .quote-author .quote-author-img {
        width: 96px;
        height: 96px;
        flex: 0 0 96px;
    }

    .founder-box > .quote-author > div > div:first-child {
        font-size: 24px !important;
    }

    .founder-box > .quote-author > div > div:last-child {
        font-size: 12px !important;
    }
}

/* Tablet hero spacing fix */
@media (min-width: 901px) and (max-width: 1180px) {
    .hero {
        min-height: auto;
        padding-top: 96px;
        padding-bottom: 34px;
    }

    .hero-content {
        min-height: auto;
        align-items: end;
    }

    .hero-image img {
        max-height: 500px;
    }

    .hero-cta {
        margin-bottom: 34px;
    }

    .info-cards-wrapper {
        height: auto;
        min-height: 0;
        align-items: stretch;
        padding: 24px 32px;
        margin-bottom: 0;
    }

    .info-card {
        height: auto;
        min-height: 120px;
    }

    .quote-section {
        padding: 40px 0 56px;
    }

    .quote-content {
        align-items: center;
    }
}

@media (max-width: 900px) {
    .hero {
        padding-bottom: 28px;
    }

    .hero::before {
        opacity: 0.22;
        background-size: 160% auto;
        background-position: 40% 40px;
    }

    .info-cards-wrapper {
        margin-bottom: 24px;
    }

    .quote-section {
        padding-top: 42px;
    }
}

/* Scroll reveal motion */
.reveal-init {
    --reveal-x: 0;
    --reveal-y: 34px;
    --reveal-delay: 0ms;
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(0.985);
    transition:
        opacity 0.78s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.92s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 0.92s cubic-bezier(0.2, 0.8, 0.2, 1);
    transition-delay: var(--reveal-delay);
    will-change: opacity, transform, filter;
}

.reveal-left {
    --reveal-x: -28px;
    --reveal-y: 20px;
}

.reveal-right {
    --reveal-x: 32px;
    --reveal-y: 18px;
}

.info-card.reveal-init,
.material-item.reveal-init,
.audience-card.reveal-init,
.stat-card.reveal-init,
.faq-item.reveal-init {
    --reveal-y: 26px;
}

.reveal-init.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-init {
        opacity: 1;
        filter: none;
        transform: none;
        transition: none;
    }
}

/* Info cards height cleanup */
.info-cards-wrapper {
    height: auto;
    min-height: 0;
    align-items: stretch;
    padding: 24px 32px;
    margin-bottom: 0;
}

.info-card {
    width: auto;
    flex: 1 1 0;
    height: auto;
    min-height: 128px;
}

@media (max-width: 900px) {
    .info-cards-wrapper {
        flex-direction: column;
        padding: 20px;
        margin-bottom: 0;
    }

    .info-card {
        width: 100%;
        min-height: 112px;
    }
}

@media (max-width: 480px) {
    .info-cards-wrapper {
        padding: 14px;
    }
}

/* Gap between hero cards and quote block */
.hero {
    padding-bottom: 34px;
}

.hero + .quote-section {
    padding-top: 52px !important;
}
