/* ============================================
   セールスメール塾 — firm-grass-112.css
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@400;700&display=swap');

/* === TOKENS === */
:root {
    --body-background: #fff;
    --body-color: #1a2640;
    --text-color: #1a2640;
    --text-light: #fff;
    --border-color: #d4dde8;

    --brand-navy: #1a2640;
    --brand-mint: #b8e0d4;
    --brand-mint-2: #c6eadf;
    --brand-mint-3: #e0f4ef;
    --brand-rose: #c84b6e;
    --brand-rose-hover: #a83358;
    --brand-sand: #f5efe8;
    --brand-sand-2: #ede3d8;
    --pink-section-bg: #fce8ee;

    --h1-font: 'Noto Serif JP', serif;
    --body-font: 'Noto Sans JP', sans-serif;
    --button-font: 'Noto Sans JP', sans-serif;

    --h1-size: 64px;
    --h1-size-tablet: 48px;
    --h1-size-mobile: 36px;
    --h2-size: 44px;
    --h2-size-tablet: 36px;
    --h2-size-mobile: 28px;
    --h3-size: 28px;
    --p-size: 17px;
    --p-size-mobile: 15px;

    --btn-radius: 24px;
    --btn-height: 48px;
    --btn-px: 48px;
    --card-radius: 12px;
    --input-radius: 4px;
    --input-height: 42px;

    --primary-btn-bg: #c84b6e;
    --primary-btn-border: #c84b6e;
    --primary-btn-hover: #a83358;
    --primary-btn-color: #fff;

    --secondary-btn-bg: #c6eadf;
    --secondary-btn-border: #c6eadf;
    --secondary-btn-hover: #e0f4ef;
    --secondary-btn-color: #1a2640;

    --input-border: #1a2640;
    --input-border-active: #c84b6e;
    --placeholder-color: #6b7a8d;

    --shadow: 0 2px 12px rgba(26, 38, 64, .08);
    --shadow-hover: 0 6px 24px rgba(26, 38, 64, .16);

    --page-width: 1200px;
    --section-py: 90px;
    --section-py-mobile: 50px;
}

/* === RESET / BASE === */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--p-size);
    color: var(--body-color);
    background: var(--body-background);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--h1-font);
    color: var(--brand-navy);
    line-height: 1.3;
}

h1 {
    font-size: var(--h1-size);
    font-weight: 700;
}

h2 {
    font-size: var(--h2-size);
    font-weight: 700;
}

h3 {
    font-size: var(--h3-size);
    font-weight: 400;
}

p {
    font-size: var(--p-size);
    line-height: 1.8;
}

.text--rose {
    color: var(--brand-rose);
}

.text--mint {
    color: #2a7a60;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brand-rose);
    margin-bottom: 12px;
}

/* === LAYOUT === */
.container {
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-py) 0;
}

.section--mint {
    background: var(--brand-mint-3);
}

.section--sand {
    background: var(--brand-sand);
}

.section--navy {
    background: var(--brand-navy);
    color: var(--text-light);
}

.section--pink {
    background: var(--pink-section-bg);
}

.text-center {
    text-align: center;
}

/* === ANNOUNCEMENT BAR === */
.announce-bar {
    background: var(--brand-navy);
    color: #fff;
    text-align: center;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .04em;
}

.announce-bar a {
    color: var(--brand-mint);
    text-decoration: underline;
}

/* === HEADER === */
.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    transition: box-shadow .2s;
}

.site-header.scrolled {
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 24px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-family: var(--h1-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-navy);
}

.header-logo svg {
    width: 36px;
    height: 36px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--brand-navy);
    transition: color .2s;
    white-space: nowrap;
}

.header-nav a:hover {
    color: var(--brand-rose);
}

.header-cta .btn {
    padding: 10px 28px;
    font-size: 14px;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brand-navy);
    border-radius: 2px;
    transition: .3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 1000;
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu-close {
    align-self: flex-end;
    font-size: 28px;
    line-height: 1;
    color: var(--brand-navy);
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 24px;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu nav a {
    font-size: 20px;
    font-weight: 500;
    color: var(--brand-navy);
}

.mobile-menu nav a:hover {
    color: var(--brand-rose);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: var(--btn-height);
    padding: 0 var(--btn-px);
    border-radius: var(--btn-radius);
    font-family: var(--button-font);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .06em;
    transition: background .2s, box-shadow .2s, transform .1s;
    white-space: nowrap;
    text-transform: uppercase;
}

.btn--primary {
    background: var(--primary-btn-bg);
    border: 2px solid var(--primary-btn-border);
    color: var(--primary-btn-color);
}

.btn--primary:hover {
    background: var(--primary-btn-hover);
    border-color: var(--primary-btn-hover);
    box-shadow: var(--shadow-hover);
    transform: translateY(-1px);
}

.btn--secondary {
    background: var(--secondary-btn-bg);
    border: 2px solid var(--secondary-btn-border);
    color: var(--secondary-btn-color);
}

.btn--secondary:hover {
    background: var(--secondary-btn-hover);
    border-color: var(--secondary-btn-hover);
}

.btn--outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn--outline:hover {
    background: rgba(255, 255, 255, .15);
}

.btn--large {
    height: 56px;
    padding: 0 60px;
    font-size: 16px;
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-color: #1a2640;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .55;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 38, 64, .82) 0%, rgba(26, 38, 64, .25) 60%, transparent 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0 70px;
}

.hero__card {
    background: #fff;
    border-radius: var(--card-radius);
    padding: 48px 52px;
    max-width: 560px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .2);
}

.hero__card .section-label {
    margin-bottom: 16px;
}

.hero__card h1 {
    font-size: 42px;
    line-height: 1.25;
    margin-bottom: 18px;
}

.hero__card p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 28px;
    line-height: 1.75;
}

.hero__card-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* === STATS BAR === */
.stats-bar {
    background: var(--brand-navy);
    color: #fff;
    padding: 32px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item__num {
    font-family: var(--h1-font);
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-mint);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-item__label {
    font-size: 13px;
    opacity: .8;
}

/* === SECTION HEADER === */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 16px;
    color: #5a6a7a;
    max-width: 600px;
    margin: 0 auto;
}

/* === COURSES GRID === */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.course-card {
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
    transition: box-shadow .25s, transform .25s;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.course-card__img {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--brand-mint-3);
}

.course-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.course-card:hover .course-card__img img {
    transform: scale(1.06);
}

.course-card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-card__tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    background: var(--brand-mint);
    color: var(--brand-navy);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.course-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.course-card__desc {
    font-size: 14px;
    color: #5a6a7a;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}

.course-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.course-card__price {
    font-family: var(--h1-font);
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-rose);
}

.course-card__price span {
    font-size: 13px;
    font-weight: 400;
    color: #6b7a8d;
}

/* === PODS (benefits) === */
.pods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    text-align: center;
}

.pod {
    padding: 40px 28px;
    border-radius: var(--card-radius);
    background: #fff;
    box-shadow: var(--shadow);
    transition: box-shadow .25s;
}

.pod:hover {
    box-shadow: var(--shadow-hover);
}

.pod__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--brand-mint-3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #2a7a60;
}

.pod__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pod__text {
    font-size: 14px;
    color: #5a6a7a;
    line-height: 1.8;
}

/* === CONTENT BAND === */
.content-band {
    background: var(--pink-section-bg);
    padding: var(--section-py) 0;
}

.content-band__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.content-band__text .section-label {
    margin-bottom: 16px;
}

.content-band__text h2 {
    margin-bottom: 20px;
}

.content-band__text p {
    color: #5a6a7a;
    margin-bottom: 28px;
    line-height: 1.85;
}

.content-band__list {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content-band__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
}

.content-band__list li i {
    color: var(--brand-rose);
    margin-top: 3px;
    flex-shrink: 0;
}

.content-band__img {
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
    background: var(--brand-mint-3);
}

.content-band__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === PRICING === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

.price-card {
    border-radius: var(--card-radius);
    border: 2px solid var(--border-color);
    padding: 40px 32px;
    background: #fff;
    position: relative;
    transition: box-shadow .25s, border-color .25s;
}

.price-card:hover {
    box-shadow: var(--shadow-hover);
}

.price-card--featured {
    border-color: var(--brand-rose);
    box-shadow: 0 8px 40px rgba(200, 75, 110, .15);
}

.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-rose);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 4px 18px;
    border-radius: 20px;
    white-space: nowrap;
}

.price-card__name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.price-card__tagline {
    font-size: 14px;
    color: #6b7a8d;
    margin-bottom: 28px;
}

.price-card__amount {
    font-family: var(--h1-font);
    font-size: 48px;
    font-weight: 700;
    color: var(--brand-navy);
    line-height: 1;
    margin-bottom: 4px;
}

.price-card__amount span {
    font-size: 24px;
}

.price-card__period {
    font-size: 13px;
    color: #6b7a8d;
    margin-bottom: 28px;
}

.price-card__features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.price-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.price-card__features li i {
    color: #2a7a60;
    margin-top: 2px;
    flex-shrink: 0;
}

.price-card .btn {
    width: 100%;
    justify-content: center;
}

/* === FAQ === */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--card-radius);
    overflow: hidden;
    background: #fff;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--brand-navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.faq-question i {
    transition: transform .3s;
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 15px;
    color: #5a6a7a;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    display: block;
}

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    border-radius: var(--card-radius);
    padding: 28px;
    box-shadow: var(--shadow);
}

.testimonial-stars {
    color: #f5a623;
    font-size: 14px;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: 15px;
    color: #3a4a5a;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-mint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--brand-navy);
    font-size: 16px;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    font-size: 14px;
}

.testimonial-role {
    font-size: 12px;
    color: #6b7a8d;
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, #1a2640 0%, #2c4066 100%);
    color: #fff;
    text-align: center;
    padding: var(--section-py) 0;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 16px;
}

.cta-section p {
    color: rgba(255, 255, 255, .75);
    font-size: 17px;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* === FORM === */
.contact-form-wrap {
    max-width: 680px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--card-radius);
    padding: 48px 52px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 7px;
    color: var(--brand-navy);
}

.form-label .req {
    color: var(--brand-rose);
    margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    height: var(--input-height);
    padding: 0 14px;
    border: 1.5px solid var(--input-border);
    border-radius: var(--input-radius);
    font-family: inherit;
    font-size: 15px;
    color: var(--body-color);
    background: #fff;
    transition: border-color .2s;
    outline: none;
}

.form-textarea {
    height: 120px;
    padding: 12px 14px;
    resize: vertical;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--input-border-active);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--placeholder-color);
}

.form-submit {
    width: 100%;
    justify-content: center;
}

.form-note {
    font-size: 12px;
    color: #6b7a8d;
    text-align: center;
    margin-top: 12px;
}

/* === NEWSLETTER / ENROLLMENT FORM === */
.newsletter-section {
    background: var(--brand-mint-3);
    padding: var(--section-py) 0;
}

.newsletter-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-inner h2 {
    margin-bottom: 14px;
}

.newsletter-inner p {
    color: #4a5a6a;
    margin-bottom: 28px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form .form-input {
    flex: 1;
}

/* === FOOTER === */
.site-footer {
    background: var(--brand-navy);
    color: rgba(255, 255, 255, .85);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-brand__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--h1-font);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand__logo svg {
    width: 32px;
    height: 32px;
}

.footer-brand__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .75);
    font-size: 15px;
    transition: background .2s, color .2s;
}

.footer-social a:hover {
    background: var(--brand-rose);
    color: #fff;
}

.footer-col__title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

.footer-col__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col__links a {
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    transition: color .2s;
}

.footer-col__links a:hover {
    color: var(--brand-mint);
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 12px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--brand-mint);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, .45);
    transition: color .2s;
}

.footer-bottom-links a:hover {
    color: rgba(255, 255, 255, .8);
}

/* === PAGE HEADER (service pages) === */
.page-header {
    background: linear-gradient(135deg, #1a2640 0%, #2c4066 100%);
    color: #fff;
    padding: 70px 0;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    font-size: 44px;
    margin-bottom: 14px;
}

.page-header p {
    color: rgba(255, 255, 255, .75);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto;
}

/* === CONTENT PAGE === */
.content-page {
    padding: var(--section-py) 0;
}

.content-page__inner {
    max-width: 800px;
    margin: 0 auto;
}

.content-page__inner h2 {
    font-size: 26px;
    margin: 40px 0 14px;
}

.content-page__inner h3 {
    font-size: 20px;
    margin: 28px 0 12px;
}

.content-page__inner p {
    margin-bottom: 16px;
    color: #4a5a6a;
}

.content-page__inner ul {
    margin: 0 0 16px 24px;
    list-style: disc;
}

.content-page__inner ul li {
    font-size: 15px;
    color: #4a5a6a;
    margin-bottom: 8px;
    line-height: 1.7;
}

/* === ABOUT PAGE === */
.about-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
    padding: var(--section-py) 0;
}

.about-intro__img {
    border-radius: var(--card-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--brand-mint-3);
    box-shadow: var(--shadow);
}

.about-intro__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-intro__text .section-label {
    margin-bottom: 12px;
}

.about-intro__text h2 {
    margin-bottom: 18px;
}

.about-intro__text p {
    color: #5a6a7a;
    margin-bottom: 16px;
}

/* === MAP SECTION === */
.map-section {
    padding: var(--section-py) 0;
}

.map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.map-placeholder {
    border-radius: var(--card-radius);
    overflow: hidden;
    background: var(--brand-mint-3);
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5a6a;
    font-size: 18px;
    gap: 12px;
    border: 2px dashed var(--brand-mint);
}

.map-info__title {
    font-size: 26px;
    margin-bottom: 28px;
}

.map-info__item {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.map-info__item-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-mint-3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a7a60;
    font-size: 18px;
    flex-shrink: 0;
}

.map-info__item-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.map-info__item-text span {
    font-size: 14px;
    color: #5a6a7a;
    line-height: 1.6;
}

/* === COOKIES GDPR === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--brand-navy);
    color: rgba(255, 255, 255, .9);
    z-index: 9999;
    padding: 18px 24px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, .2);
}

.cookie-banner.visible {
    display: flex;
}

.cookie-banner__text {
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
    min-width: 240px;
}

.cookie-banner__text a {
    color: var(--brand-mint);
    text-decoration: underline;
}

.cookie-banner__btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-banner__btns .btn {
    height: 38px;
    padding: 0 22px;
    font-size: 13px;
}

/* === RESPONSIVE === */
@media (max-width: 989px) {
    :root {
        --section-py: 70px;
    }

    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pods-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .content-band__inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .map-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    :root {
        --section-py: 50px;
        --h2-size: 28px;
    }

    h1 {
        font-size: var(--h1-size-mobile);
    }

    h2 {
        font-size: var(--h2-size-mobile);
    }

    .header-nav {
        display: none;
    }

    .header-cta {
        display: none;
    }

    .burger {
        display: flex;
    }

    .hero {
        min-height: 520px;
    }

    .hero__card {
        padding: 32px 24px;
    }

    .hero__card h1 {
        font-size: 28px;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .pods-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .contact-form-wrap {
        padding: 28px 20px;
    }

    .page-header h1 {
        font-size: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .pricing-grid {
        max-width: 100%;
    }

    .hero__card-btns {
        flex-direction: column;
    }

    .hero__card-btns .btn {
        width: 100%;
        justify-content: center;
    }
}

/* === UTILITY === */
.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}