/* =========================================================
   ROGERS CONSULTANTS
   Premium Editorial Education Website
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {

    --ivory: #f7f5ef;
    --paper: #fffdf8;
    --navy: #101c2d;
    --navy-soft: #18263a;

    --orange: #e66b3d;
    --orange-light: #f3a078;

    --text: #172233;
    --muted: #687080;

    --border: #dedbd3;
    --border-dark: #303b4a;

    --white: #ffffff;

    --radius: 4px;

    --container: 1240px;

    --transition: 0.3s ease;

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--ivory);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
}

::selection {
    background: var(--orange);
    color: var(--white);
}


/* =========================================================
   GLOBAL
========================================================= */

.section {
    width: min(var(--container), calc(100% - 80px));
    margin: 0 auto;
    padding: 125px 0;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    color: var(--orange);
}

.eyebrow span {
    width: 8px;
    height: 8px;
    display: inline-block;

    background: var(--orange);
    border-radius: 50%;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 60px;
}

.section-heading .eyebrow {
    margin-bottom: 22px;
}

.section-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--navy);
}

.section-heading p {
    max-width: 570px;
    margin-top: 24px;

    font-size: 16px;
    color: var(--muted);
    line-height: 1.8;
}

.section-heading em,
.hero h1 em,
.process-section h2 em,
.final-cta h2 em {
    font-style: italic;
    font-weight: 500;
}


/* =========================================================
   BUTTONS
========================================================= */

.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    min-height: 54px;
    padding: 0 24px;

    background: var(--navy);
    color: var(--white);

    font-size: 13px;
    font-weight: 700;

    border: 1px solid var(--navy);
    border-radius: 2px;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition);
}

.primary-button span {
    font-size: 18px;
    line-height: 1;

    transition: transform var(--transition);
}

.primary-button:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.primary-button:hover span {
    transform: translateX(4px);
}

.text-button {
    display: inline-flex;
    align-items: center;

    font-size: 13px;
    font-weight: 700;

    color: var(--navy);

    border-bottom: 1px solid var(--navy);

    padding-bottom: 4px;

    transition:
        color var(--transition),
        border-color var(--transition);
}

.text-button:hover {
    color: var(--orange);
    border-color: var(--orange);
}

.light-button {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.light-button:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}


/* =========================================================
   NAVIGATION
========================================================= */

.site-header {
    position: relative;
    z-index: 100;

    background: var(--ivory);
    border-bottom: 1px solid var(--border);
}

.navbar {
    width: min(var(--container), calc(100% - 80px));
    height: 86px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.brand span {
    color: var(--orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;

    margin-left: auto;
    margin-right: 40px;
}

.nav-links a {
    position: relative;

    font-size: 12px;
    font-weight: 600;
    color: #4e5664;

    transition: color var(--transition);
}

.nav-links a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--orange);

    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--navy);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 42px;
    padding: 0 18px;

    background: var(--orange);
    color: var(--white);

    font-size: 12px;
    font-weight: 700;

    border-radius: 2px;

    transition:
        transform var(--transition),
        background var(--transition);
}

.nav-button:hover {
    background: var(--navy);
    transform: translateY(-2px);
}

.menu-button {
    display: none;

    width: 42px;
    height: 42px;

    background: transparent;
    border: 1px solid var(--border);

    color: var(--navy);
    font-size: 20px;

    cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    width: min(var(--container), calc(100% - 80px));
    min-height: 700px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 90px;

    padding: 90px 0 105px;
}

.hero-content {
    max-width: 650px;
}

.hero .eyebrow {
    margin-bottom: 28px;
}

.hero h1 {
    max-width: 690px;

    font-family: "Playfair Display", serif;
    font-size: clamp(55px, 6vw, 88px);
    font-weight: 600;

    line-height: 0.98;
    letter-spacing: -0.055em;

    color: var(--navy);
}

.hero h1 em {
    color: var(--orange);
}

.hero-content > p {
    max-width: 560px;
    margin-top: 32px;

    font-size: 17px;
    line-height: 1.8;

    color: var(--muted);
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;

    margin-top: 38px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-top: 50px;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatars div {
    width: 36px;
    height: 36px;

    margin-left: -7px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid var(--ivory);
    border-radius: 50%;

    background: var(--navy);
    color: var(--white);

    font-size: 9px;
    font-weight: 700;
}

.avatars div:first-child {
    margin-left: 0;
}

.avatars div:nth-child(2) {
    background: #6d7480;
}

.avatars div:nth-child(3) {
    background: var(--orange);
}

.avatars div:nth-child(4) {
    background: var(--white);
    color: var(--navy);
    border-color: var(--border);
}

.hero-proof strong {
    display: block;

    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
}

.hero-proof small {
    display: block;

    margin-top: 2px;

    font-size: 11px;
    color: var(--muted);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
    position: relative;

    min-height: 510px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.main-visual {
    width: min(100%, 500px);
    height: 440px;

    padding: 32px;

    position: relative;

    background:
        linear-gradient(
            135deg,
            #14243a 0%,
            #0c1727 60%,
            #1c2b40 100%
        );

    box-shadow: 0 30px 70px rgba(16, 28, 45, 0.16);

    overflow: hidden;
}

.main-visual::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -120px;
    bottom: -130px;

    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
}

.main-visual::after {
    content: "";

    position: absolute;

    width: 210px;
    height: 210px;

    right: -70px;
    bottom: -80px;

    border: 1px solid rgba(230,107,61,0.4);
    border-radius: 50%;
}

.visual-top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    position: relative;
    z-index: 2;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: rgba(255,255,255,0.65);
}

.live-dot {
    color: var(--orange-light);
}

.visual-title {
    position: absolute;

    left: 32px;
    right: 32px;
    top: 145px;

    font-family: "Playfair Display", serif;
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: -0.04em;

    color: var(--white);
}

.visual-title strong {
    color: var(--orange-light);
    font-weight: 500;
}

.visual-lines {
    position: absolute;

    left: 32px;
    right: 32px;
    bottom: 88px;

    display: grid;
    gap: 12px;
}

.visual-lines div {
    height: 2px;

    background: rgba(255,255,255,0.1);
}

.visual-lines div:nth-child(1) span {
    width: 78%;
}

.visual-lines div:nth-child(2) span {
    width: 57%;
}

.visual-lines div:nth-child(3) span {
    width: 88%;
}

.visual-lines span {
    display: block;
    height: 100%;

    background: var(--orange);
}

.visual-bottom {
    position: absolute;

    left: 32px;
    right: 32px;
    bottom: 28px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;

    color: rgba(255,255,255,0.55);
}

.visual-bottom strong {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    color: var(--white);
}

.floating-note {
    position: absolute;

    min-width: 135px;
    padding: 16px 18px;

    background: var(--paper);
    border: 1px solid var(--border);

    box-shadow: 0 18px 45px rgba(16, 28, 45, 0.1);
}

.floating-note strong {
    display: block;

    font-family: "Playfair Display", serif;
    font-size: 22px;
    line-height: 1;

    color: var(--navy);
}

.floating-note span {
    display: block;

    margin-top: 5px;

    font-size: 10px;
    color: var(--muted);
}

.note-one {
    left: -15px;
    top: 80px;
}

.note-two {
    right: -15px;
    bottom: 65px;
}


/* =========================================================
   TRUST STRIP
========================================================= */

.trust-strip {
    min-height: 100px;

    padding: 25px max(40px, calc((100vw - 1240px) / 2));

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: var(--paper);
}

.trust-strip p {
    font-size: 12px;
    font-weight: 700;

    color: var(--navy);
}

.trust-items {
    display: flex;
    align-items: center;
    gap: 42px;
}

.trust-items span {
    font-size: 11px;
    color: var(--muted);
}

.trust-items span::before {
    content: "—";
    margin-right: 9px;
    color: var(--orange);
}


/* =========================================================
   WHY US
========================================================= */

.about-section {
    padding-bottom: 130px;
}

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

    background: var(--border);

    border: 1px solid var(--border);
}

.feature-card {
    position: relative;

    min-height: 310px;
    padding: 35px;

    background: var(--ivory);

    transition:
        background var(--transition),
        transform var(--transition);
}

.feature-card:hover {
    background: var(--paper);
    transform: translateY(-4px);
    z-index: 2;
}

.feature-card.featured {
    background: var(--navy);
    color: var(--white);
}

.feature-card.featured:hover {
    background: var(--navy-soft);
}

.feature-number {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;

    color: var(--orange);
}

.feature-card h3 {
    margin-top: 80px;

    font-family: "Playfair Display", serif;
    font-size: 31px;
    line-height: 1.1;

    letter-spacing: -0.025em;
}

.feature-card p {
    max-width: 300px;

    margin-top: 16px;

    font-size: 13px;
    line-height: 1.75;

    color: var(--muted);
}

.featured p {
    color: rgba(255,255,255,0.65);
}

.feature-arrow {
    position: absolute;

    right: 30px;
    bottom: 30px;

    font-size: 20px;
    color: var(--orange);
}


/* =========================================================
   COURSES
========================================================= */

.courses-section {
    padding-top: 130px;
    padding-bottom: 140px;
}

.course-heading {
    max-width: none;

    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 50px;
}

.course-heading > p {
    width: 330px;
    margin: 0 0 4px;
}

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

.course-card {
    background: var(--paper);
    border: 1px solid var(--border);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.course-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 25px 55px rgba(16, 28, 45, 0.09);
}

.course-image {
    position: relative;

    height: 245px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.course-one {
    background:
        linear-gradient(
            135deg,
            #1c2c42,
            #0d1828
        );
}

.course-two {
    background:
        linear-gradient(
            135deg,
            #e7e1d4,
            #c9c2b4
        );
}

.course-three {
    background:
        linear-gradient(
            135deg,
            #e66b3d,
            #bd4e2b
        );
}

.course-image::before,
.course-image::after {
    content: "";

    position: absolute;

    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
}

.course-image::before {
    width: 240px;
    height: 240px;
}

.course-image::after {
    width: 150px;
    height: 150px;
}

.course-tag {
    position: absolute;

    left: 18px;
    top: 18px;

    padding: 7px 10px;

    background: rgba(255,255,255,0.9);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;

    color: var(--navy);
}

.course-symbol {
    position: relative;
    z-index: 2;

    font-family: "Playfair Display", serif;
    font-size: 67px;
    font-weight: 600;
    letter-spacing: -0.06em;

    color: var(--white);
}

.course-two .course-symbol {
    color: var(--navy);
}

.course-content {
    padding: 30px;
}

.course-meta {
    display: flex;
    justify-content: space-between;

    padding-bottom: 17px;

    border-bottom: 1px solid var(--border);

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;

    color: var(--muted);
}

.course-content h3 {
    margin-top: 25px;

    font-family: "Playfair Display", serif;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.025em;

    color: var(--navy);
}

.course-content > p {
    min-height: 80px;

    margin-top: 14px;

    font-size: 13px;
    line-height: 1.75;

    color: var(--muted);
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 25px;
    padding-top: 20px;

    border-top: 1px solid var(--border);
}

.course-footer strong {
    font-family: "Playfair Display", serif;
    font-size: 25px;
    color: var(--navy);
}

.course-footer a {
    font-size: 11px;
    font-weight: 700;

    color: var(--orange);

    transition: color var(--transition);
}

.course-footer a:hover {
    color: var(--navy);
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    padding: 125px 0;

    background: var(--navy);
    color: var(--white);
}

.process-inner {
    width: min(var(--container), calc(100% - 80px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 120px;
}

.light-heading h2 {
    color: var(--white);
}

.light-heading .eyebrow {
    color: var(--orange-light);
}

.process-list {
    border-top: 1px solid var(--border-dark);
}

.process-item {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 25px;

    padding: 32px 0;

    border-bottom: 1px solid var(--border-dark);
}

.process-item > span {
    font-size: 10px;
    font-weight: 700;
    color: var(--orange-light);
}

.process-item h3 {
    font-family: "Playfair Display", serif;
    font-size: 27px;
    font-weight: 500;

    color: var(--white);
}

.process-item p {
    max-width: 470px;

    margin-top: 8px;

    font-size: 13px;
    line-height: 1.75;

    color: rgba(255,255,255,0.55);
}


/* =========================================================
   STATS
========================================================= */

.stats-section {
    width: min(var(--container), calc(100% - 80px));
    margin: 0 auto;

    padding: 95px 0;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-bottom: 1px solid var(--border);
}

.stat {
    min-height: 120px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 0 35px;

    border-left: 1px solid var(--border);
}

.stat:first-child {
    border-left: 0;
    padding-left: 0;
}

.stat strong {
    font-family: "Playfair Display", serif;
    font-size: 52px;
    line-height: 1;

    color: var(--navy);
}

.stat span {
    margin-top: 10px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: var(--muted);
}


/* =========================================================
   REVIEWS
========================================================= */

.reviews-section {
    padding-top: 130px;
}

.review-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
}

.review-main {
    min-height: 430px;

    padding: 50px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background: var(--navy);
    color: var(--white);
}

.stars {
    color: var(--orange);
    font-size: 15px;
    letter-spacing: 0.12em;
}

.review-main blockquote {
    max-width: 730px;

    font-family: "Playfair Display", serif;
    font-size: clamp(30px, 4vw, 47px);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--orange);

    font-size: 10px;
    font-weight: 700;
}

.review-author strong,
.review-author span {
    display: block;
}

.review-author strong {
    font-size: 12px;
}

.review-author span {
    margin-top: 2px;

    font-size: 10px;
    color: rgba(255,255,255,0.5);
}

.review-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
}

.small-review {
    padding: 35px;

    background: var(--paper);
    border: 1px solid var(--border);
}

.small-review p {
    margin-top: 25px;

    font-family: "Playfair Display", serif;
    font-size: 23px;
    line-height: 1.3;

    color: var(--navy);
}

.small-review strong {
    display: block;

    margin-top: 22px;

    font-size: 10px;
    color: var(--muted);
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;

    padding-top: 120px;
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;

    min-height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: transparent;
    border: 0;

    text-align: left;

    font-family: "Playfair Display", serif;
    font-size: 20px;

    color: var(--navy);

    cursor: pointer;
}

.faq-question span {
    font-family: "DM Sans", sans-serif;
    font-size: 22px;
    font-weight: 400;

    transition: transform var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;

    transition: max-height 0.4s ease;
}

.faq-answer p {
    max-width: 650px;

    padding: 0 45px 25px 0;

    font-size: 13px;
    line-height: 1.8;

    color: var(--muted);
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {
    margin-top: 30px;

    padding: 120px max(40px, calc((100vw - 1240px) / 2));

    background:
        linear-gradient(
            115deg,
            var(--orange),
            #d95b30
        );

    color: var(--white);
}

.final-cta .eyebrow {
    color: rgba(255,255,255,0.7);
}

.final-cta h2 {
    max-width: 800px;

    margin-top: 20px;

    font-family: "Playfair Display", serif;
    font-size: clamp(50px, 6vw, 82px);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.final-cta p {
    max-width: 480px;

    margin-top: 25px;

    font-size: 15px;
    line-height: 1.75;

    color: rgba(255,255,255,0.75);
}

.final-cta .primary-button {
    margin-top: 32px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: var(--navy);
    color: var(--white);
}

.footer-main {
    width: min(var(--container), calc(100% - 80px));
    margin: 0 auto;

    padding: 75px 0;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 70px;
}

.footer-logo {
    color: var(--white);
}

.footer-brand p {
    max-width: 310px;

    margin-top: 20px;

    font-size: 12px;
    line-height: 1.8;

    color: rgba(255,255,255,0.5);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h4 {
    margin-bottom: 20px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.13em;
    text-transform: uppercase;

    color: var(--orange-light);
}

.footer-column a,
.footer-column span {
    margin-bottom: 11px;

    font-size: 11px;

    color: rgba(255,255,255,0.58);

    transition: color var(--transition);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-column span {
    margin-bottom: 5px;
}

.footer-bottom {
    width: min(var(--container), calc(100% - 80px));
    margin: 0 auto;

    min-height: 70px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-top: 1px solid var(--border-dark);

    font-size: 9px;
    color: rgba(255,255,255,0.38);
}


/* =========================================================
   SCROLL ANIMATION
========================================================= */

.section,
.process-section,
.stats-section,
.final-cta {
    opacity: 1;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .navbar,
    .hero,
    .section,
    .process-inner,
    .stats-section,
    .footer-main,
    .footer-bottom {
        width: min(100% - 50px, var(--container));
    }

    .nav-links {
        gap: 20px;
        margin-right: 25px;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 70px;
        padding-top: 70px;
    }

    .hero-content {
        max-width: 750px;
    }

    .hero-visual {
        min-height: 500px;
    }

    .main-visual {
        width: min(100%, 600px);
    }

    .feature-grid,
    .course-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 260px;
    }

    .feature-card h3 {
        margin-top: 50px;
    }

    .course-image {
        height: 280px;
    }

    .process-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .stat {
        padding: 30px;
        border-bottom: 1px solid var(--border);
    }

    .stat:nth-child(3),
    .stat:nth-child(4) {
        border-bottom: 0;
    }

    .stat:nth-child(3) {
        border-left: 0;
    }

    .review-layout {
        grid-template-columns: 1fr;
    }

    .review-main {
        min-height: 400px;
    }

    .faq-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {

    .section {
        padding: 85px 0;
    }

    .navbar,
    .hero,
    .section,
    .process-inner,
    .stats-section,
    .footer-main,
    .footer-bottom {
        width: calc(100% - 36px);
    }


    /* NAV */

    .navbar {
        height: 72px;
    }

    .brand {
        font-size: 21px;
    }

    .nav-links,
    .nav-button {
        display: none;
    }

    .menu-button {
        display: flex;
        align-items: center;
        justify-content: center;
    }


    /* HERO */

    .hero {
        min-height: auto;

        padding: 65px 0 80px;

        gap: 55px;
    }

    .hero h1 {
        font-size: clamp(48px, 14vw, 70px);
    }

    .hero-content > p {
        margin-top: 25px;

        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;

        gap: 20px;
        margin-top: 30px;
    }

    .hero-proof {
        margin-top: 35px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .main-visual {
        width: calc(100% - 20px);
        height: 350px;

        padding: 24px;
    }

    .visual-title {
        left: 24px;
        right: 24px;
        top: 115px;

        font-size: 36px;
    }

    .visual-lines {
        left: 24px;
        right: 24px;
        bottom: 70px;
    }

    .visual-bottom {
        left: 24px;
        right: 24px;
        bottom: 22px;
    }

    .note-one {
        left: -5px;
        top: 30px;
    }

    .note-two {
        right: -5px;
        bottom: 25px;
    }

    .floating-note {
        min-width: 110px;
        padding: 12px 14px;
    }

    .floating-note strong {
        font-size: 18px;
    }


    /* TRUST */

    .trust-strip {
        width: 100%;

        padding: 28px 18px;

        flex-direction: column;
        align-items: flex-start;
    }

    .trust-items {
        width: 100%;

        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px 20px;
    }


    /* SECTION HEADINGS */

    .section-heading {
        margin-bottom: 42px;
    }

    .section-heading h2 {
        font-size: 43px;
    }

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

    .course-heading {
        display: block;
    }

    .course-heading > p {
        width: auto;
        margin-top: 20px;
    }


    /* FEATURES */

    .feature-card {
        min-height: 245px;
        padding: 27px;
    }

    .feature-card h3 {
        margin-top: 45px;
        font-size: 27px;
    }


    /* COURSES */

    .course-grid {
        gap: 18px;
    }

    .course-image {
        height: 220px;
    }

    .course-symbol {
        font-size: 55px;
    }

    .course-content {
        padding: 25px;
    }

    .course-content h3 {
        font-size: 27px;
    }

    .course-content > p {
        min-height: auto;
    }


    /* PROCESS */

    .process-section {
        padding: 85px 0;
    }

    .process-inner {
        gap: 45px;
    }

    .process-item {
        grid-template-columns: 35px 1fr;
        gap: 15px;

        padding: 26px 0;
    }

    .process-item h3 {
        font-size: 23px;
    }


    /* STATS */

    .stats-section {
        padding: 55px 0;
    }

    .stat {
        min-height: 105px;
        padding: 25px 20px;
    }

    .stat strong {
        font-size: 40px;
    }


    /* REVIEWS */

    .review-main {
        min-height: 370px;
        padding: 30px;
    }

    .review-main blockquote {
        font-size: 31px;
    }

    .small-review {
        padding: 28px;
    }

    .small-review p {
        font-size: 20px;
    }


    /* FAQ */

    .faq-question {
        min-height: 72px;
        font-size: 17px;
    }

    .faq-answer p {
        font-size: 12px;
    }


    /* CTA */

    .final-cta {
        margin-top: 10px;

        padding: 85px 18px;
    }

    .final-cta h2 {
        font-size: 50px;
    }


    /* FOOTER */

    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 45px 30px;

        padding: 60px 0;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        min-height: 90px;

        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        gap: 5px;
    }

}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 400px) {

    .hero h1 {
        font-size: 45px;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    .hero-visual {
        min-height: 350px;
    }

    .main-visual {
        height: 320px;
    }

    .visual-title {
        font-size: 31px;
    }

    .floating-note {
        display: none;
    }

    .trust-items {
        grid-template-columns: 1fr;
    }

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

    .stat,
    .stat:nth-child(3) {
        border-left: 0;
        border-bottom: 1px solid var(--border);
    }

    .stat:last-child {
        border-bottom: 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

}


/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-hero {
    padding: 115px 0 110px;

    border-bottom: 1px solid var(--border);
}

.contact-hero-inner {
    width: min(var(--container), calc(100% - 80px));
    margin: 0 auto;
}

.contact-hero .eyebrow {
    margin-bottom: 25px;
}

.contact-hero h1 {
    max-width: 900px;

    font-family: "Playfair Display", serif;
    font-size: clamp(58px, 7vw, 92px);
    line-height: 0.98;
    letter-spacing: -0.055em;

    color: var(--navy);
}

.contact-hero h1 em {
    color: var(--orange);
    font-style: italic;
    font-weight: 500;
}

.contact-hero p {
    max-width: 600px;

    margin-top: 30px;

    font-size: 16px;
    line-height: 1.8;

    color: var(--muted);
}


/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    width: min(var(--container), calc(100% - 80px));
    margin: 0 auto;

    padding: 115px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
    align-items: start;
}

.contact-information .eyebrow {
    margin-bottom: 22px;
}

.contact-information h2 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    line-height: 1.05;
    letter-spacing: -0.035em;

    color: var(--navy);
}

.contact-information > p {
    max-width: 440px;

    margin-top: 22px;

    font-size: 14px;
    line-height: 1.8;

    color: var(--muted);
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-details {
    margin-top: 55px;

    border-top: 1px solid var(--border);
}

.contact-detail {
    display: flex;
    flex-direction: column;

    padding: 25px 0;

    border-bottom: 1px solid var(--border);
}

.contact-label {
    margin-bottom: 8px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;

    color: var(--orange);
}

.contact-detail a {
    width: fit-content;

    font-family: "Playfair Display", serif;
    font-size: 21px;

    color: var(--navy);

    border-bottom: 1px solid transparent;

    transition:
        color var(--transition),
        border-color var(--transition);
}

.contact-detail a:hover {
    color: var(--orange);
    border-color: var(--orange);
}

.contact-detail strong {
    font-family: "Playfair Display", serif;
    font-size: 19px;
    font-weight: 500;

    color: var(--navy);
}

.contact-detail > span:not(.contact-label) {
    margin-top: 4px;

    font-size: 11px;

    color: var(--muted);
}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form-wrapper {
    padding: 45px;

    background: var(--paper);
    border: 1px solid var(--border);
}

.contact-form {
    display: flex;
    flex-direction: column;

    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 9px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 15px 16px;

    background: var(--ivory);

    border: 1px solid var(--border);
    border-radius: 2px;

    outline: none;

    font-family: "DM Sans", sans-serif;
    font-size: 13px;

    color: var(--navy);

    transition:
        border-color var(--transition),
        background var(--transition),
        box-shadow var(--transition);
}

.form-group input,
.form-group select {
    height: 52px;
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9a9da4;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: var(--white);
    border-color: var(--orange);

    box-shadow: 0 0 0 3px rgba(230, 107, 61, 0.08);
}

.form-submit {
    width: fit-content;

    margin-top: 4px;

    cursor: pointer;
}

.form-note {
    max-width: 550px;

    font-size: 10px;
    line-height: 1.7;

    color: #8a8e97;
}


/* =========================================================
   CONTACT QUICK LINKS
========================================================= */

.contact-links-section {
    padding: 105px 0;

    background: var(--navy);
    color: var(--white);
}

.contact-links-inner {
    width: min(var(--container), calc(100% - 80px));
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 100px;
    align-items: start;
}

.contact-links-inner h2 {
    margin-top: 20px;

    font-family: "Playfair Display", serif;
    font-size: 50px;
    line-height: 1;

    letter-spacing: -0.04em;

    color: var(--white);
}

.contact-links-inner .eyebrow {
    color: var(--orange-light);
}

.contact-link-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;

    background: var(--border-dark);

    border: 1px solid var(--border-dark);
}

.contact-link-card {
    min-height: 210px;

    padding: 25px;

    display: flex;
    flex-direction: column;

    background: var(--navy);

    transition:
        background var(--transition),
        transform var(--transition);
}

.contact-link-card:hover {
    background: var(--navy-soft);
    transform: translateY(-4px);
}

.contact-link-card > span {
    font-size: 10px;
    font-weight: 700;

    color: var(--orange-light);
}

.contact-link-card strong {
    margin-top: auto;

    font-family: "Playfair Display", serif;
    font-size: 21px;
    line-height: 1.2;

    color: var(--white);
}

.contact-link-card small {
    margin-top: 10px;

    font-size: 10px;

    color: rgba(255,255,255,0.5);
}


/* =========================================================
   CONTACT PAGE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .contact-hero-inner,
    .contact-section,
    .contact-links-inner {
        width: min(100% - 50px, var(--container));
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .contact-information {
        max-width: 700px;
    }

    .contact-links-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

}


/* =========================================================
   CONTACT PAGE — MOBILE
========================================================= */

@media (max-width: 700px) {

    .contact-hero {
        padding: 75px 0 70px;
    }

    .contact-hero-inner,
    .contact-section,
    .contact-links-inner {
        width: calc(100% - 36px);
    }

    .contact-hero h1 {
        font-size: 52px;
    }

    .contact-hero p {
        font-size: 14px;
    }

    .contact-section {
        padding: 75px 0;
    }

    .contact-information h2 {
        font-size: 40px;
    }

    .contact-details {
        margin-top: 40px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .form-submit {
        width: 100%;
    }

    .contact-links-section {
        padding: 75px 0;
    }

    .contact-links-inner h2 {
        font-size: 42px;
    }

    .contact-link-grid {
        grid-template-columns: 1fr;
    }

    .contact-link-card {
        min-height: 160px;
    }

}

/* =========================================================
   LEGAL PAGES
========================================================= */

.legal-hero {
    padding: 110px 0 100px;
    border-bottom: 1px solid var(--border);
}

.legal-hero-inner {
    width: min(var(--container), calc(100% - 80px));
    margin: 0 auto;
}

.legal-hero .eyebrow {
    margin-bottom: 25px;
}

.legal-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(58px, 7vw, 90px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    color: var(--navy);
}

.legal-hero h1 em {
    color: var(--orange);
    font-style: italic;
    font-weight: 500;
}

.legal-hero p {
    max-width: 610px;
    margin-top: 28px;

    font-size: 16px;
    line-height: 1.8;

    color: var(--muted);
}

.legal-updated {
    display: block;
    margin-top: 25px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #8b8f98;
}


/* =========================================================
   LEGAL LAYOUT
========================================================= */

.legal-section {
    width: min(var(--container), calc(100% - 80px));
    margin: 0 auto;

    padding: 110px 0 130px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 100px;
    align-items: start;
}


/* =========================================================
   LEGAL SIDEBAR
========================================================= */

.legal-sidebar {
    position: sticky;
    top: 110px;

    display: flex;
    flex-direction: column;

    border-top: 1px solid var(--border);
}

.legal-sidebar > span {
    padding: 18px 0 15px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;

    color: var(--orange);
}

.legal-sidebar a {
    padding: 11px 0;

    border-top: 1px solid var(--border);

    font-size: 11px;
    color: var(--muted);

    transition:
        color var(--transition),
        padding-left var(--transition);
}

.legal-sidebar a:hover {
    padding-left: 5px;
    color: var(--navy);
}


/* =========================================================
   LEGAL CONTENT
========================================================= */

.legal-content {
    max-width: 760px;
}

.legal-intro {
    margin-bottom: 70px;

    font-family: "Playfair Display", serif;
    font-size: 25px;
    line-height: 1.45;

    color: var(--navy);
}

.legal-content section {
    scroll-margin-top: 110px;

    margin-bottom: 70px;
}

.legal-number {
    display: block;

    margin-bottom: 15px;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;

    color: var(--orange);
}

.legal-content h2 {
    margin-bottom: 22px;

    font-family: "Playfair Display", serif;
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -0.025em;

    color: var(--navy);
}

.legal-content p {
    margin-bottom: 18px;

    font-size: 14px;
    line-height: 1.85;

    color: var(--muted);
}

.legal-content p:last-child {
    margin-bottom: 0;
}

.legal-content ul {
    margin: 25px 0 0;
    padding-left: 22px;
}

.legal-content li {
    margin-bottom: 12px;

    font-size: 14px;
    line-height: 1.7;

    color: var(--muted);
}

.legal-email {
    color: var(--orange);
    font-weight: 600;

    border-bottom: 1px solid transparent;

    transition:
        color var(--transition),
        border-color var(--transition);
}

.legal-email:hover {
    color: var(--navy);
    border-color: var(--navy);
}


/* =========================================================
   LEGAL — TABLET
========================================================= */

@media (max-width: 1000px) {

    .legal-hero-inner,
    .legal-section {
        width: min(100% - 50px, var(--container));
    }

    .legal-layout {
        grid-template-columns: 200px 1fr;
        gap: 55px;
    }

}


/* =========================================================
   LEGAL — MOBILE
========================================================= */

@media (max-width: 700px) {

    .legal-hero {
        padding: 75px 0 70px;
    }

    .legal-hero-inner,
    .legal-section {
        width: calc(100% - 36px);
    }

    .legal-hero h1 {
        font-size: 55px;
    }

    .legal-hero p {
        font-size: 14px;
    }

    .legal-section {
        padding: 75px 0 90px;
    }

    .legal-layout {
        display: block;
    }

    .legal-sidebar {
        position: static;

        margin-bottom: 65px;
    }

    .legal-sidebar a {
        padding: 13px 0;
    }

    .legal-intro {
        margin-bottom: 55px;

        font-size: 21px;
    }

    .legal-content section {
        margin-bottom: 55px;
        scroll-margin-top: 85px;
    }

    .legal-content h2 {
        font-size: 29px;
    }

    .legal-content p,
    .legal-content li {
        font-size: 13px;
    }

}