/* ========================================
   БУЛОЧКА - ПОЛНАЯ ВЕРСИЯ ИЗ FIGMA
   ВСЕ 9 КРИТИЧЕСКИХ ФИКСОВ ПРИМЕНЕНЫ
   ======================================== */

:root {
    --bg: #fef6e4;
    --text: #001858;
    --pink: #f582ae;
    --yellow: #ffc803;
    --cyan: #8bd3dd;
    --coral: #ff8966;
    --purple: #b185db;
    --green: #00ebc7;
    --orange: #ff5470;
    --border: 3px;
    --shadow: 6px 6px 0 #001858;
    --shadow-sm: 3px 3px 0 #001858;
    --radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HEADER */
.header {
    background: var(--pink);
    border-bottom: 4px solid var(--text);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 900;
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-icons {
    display: flex;
    gap: 12px;
}

.icon-btn {
    width: 44px;
    height: 44px;
    background: white;
    border: var(--border) solid var(--text);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.2s;
}

.icon-btn:hover {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0 var(--text);
}

/* Telegram button - official blue */
.telegram-btn {
    background: #0088cc;
    color: white;
}

/* WhatsApp button - official green */
.whatsapp-btn {
    background: #25D366;
    color: white;
}

.btn-join {
    background: var(--yellow);
    border: var(--border) solid var(--text);
    padding: 6px 20px;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
    color: var(--text);
}

/* HERO */
.hero {
    background: var(--bg);
    padding: 32px 0 24px;
    border-bottom: 4px solid var(--text);
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: var(--pink);
    border: var(--border) solid var(--text);
    padding: 8px 24px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: 37px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.text-pink {
    color: var(--pink);
}

.hero-subtitle {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.hero-description {
    font-size: 16px;
    margin-bottom: 20px;
}

.hero-stat {
    display: inline-block;
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.hero-image {
    width: 100%;
    aspect-ratio: 1;
    background: url('http://womanclub.blog/wp-content/uploads/2026/01/hero-image.jpg') center/cover no-repeat;
    border: var(--border) solid var(--text);
    border-radius: var(--radius);
    box-shadow: 8px 8px 0 var(--text);
}

/* BUTTONS */
.btn {
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 900;
    border: var(--border) solid var(--text);
    border-radius: var(--radius);
    cursor: pointer;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    color: var(--text);
}

.btn-primary {
    background: var(--yellow);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translate(-1px, -1px);
    box-shadow: 6px 6px 0 var(--text);
}

.btn-secondary {
    background: white;
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    transform: translate(-1px, -1px);
    box-shadow: 6px 6px 0 var(--text);
}

.btn-large {
    padding: 15px 36px;
    font-size: 15px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 11px;
}

/* LAST MEMBER - FIXED: teal background */
.last-member {
    background: var(--green);
    padding: 20px 0;
    border-bottom: 4px solid var(--text);
}

.member-card {
    background: white;
    border: var(--border) solid var(--text);
    padding: 10px 28px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.only-girls {
    display: inline-block;
    background: var(--yellow);
    border: var(--border) solid var(--text);
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 11px;
    color: var(--text);
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}

/* SECTIONS */
section {
    padding: 24px 0;
}

.section-label {
    text-align: center;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-size: 22px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 6px;
    text-transform: uppercase;
}



.section-subtitle {
    font-size: 15px;
    text-align: center;
    margin-bottom: 48px;
    font-weight: 600;
}

/* PAIN POINTS */
.pain-points {
    background: var(--bg);
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 50px 0 !important;
}

.cards-grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.card {
    border: var(--border) solid var(--text);
    border-radius: var(--radius);
    padding: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.card-cyan {
    background: var(--cyan);
}

.card-coral {
    background: var(--coral);
}

.card-yellow {
    background: var(--yellow);
}

.card-purple {
    background: var(--purple);
}

.card-green {
    background: var(--green);
}

.card-pink {
    background: var(--pink);
}

.card-orange {
    background: var(--orange);
}

.card-emoji {
    font-size: 28px;
    margin-bottom: 6px;
}

.card h3 {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}



.cta-message {
    background: var(--cyan);
    border: var(--border) solid var(--text);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}

/* STATS */
.stats {
    background: var(--pink);
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 50px 0 !important;
}

.stats-wrapper {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-card {
    background: var(--yellow);
    border: var(--border) solid var(--text);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-emoji {
    font-size: 20px;
    margin-bottom: 4px;
}

.stat-number {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 4px;
}

.stat-card h3 {
    font-size: 10px;
    font-weight: 900;
    margin-bottom: 3px;
    text-transform: uppercase;
}

/* GALLERY - FIXED: 8 items in 2 rows */
.gallery {
    background: var(--bg);
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 50px 0 !important;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.gallery-item {
    width: 250px;
    height: 250px;
    background: var(--cyan);
    border: var(--border) solid var(--text);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* ABOUT - FIXED: yellow background as per Figma */
.about {
    background: var(--yellow);
    padding: 60px 0;
}

.about-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border: var(--border) solid var(--text);
    padding: 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.about-quote {
    font-size: 48px;
    color: var(--pink);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 16px;
}

/* COMBINED BENEFITS - All in one slide */
.combined-benefits {
    background: var(--bg);
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 50px 0 !important;
}

.benefits-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-icon-card {
    background: white;
    border: var(--border) solid var(--text);
    padding: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.benefit-image {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.benefit-content {
    padding: 12px;
    flex: 1;
    text-align: center;
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.benefit-icon-card h3 {
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 6px;
}

.benefits-box {
    background: var(--cyan);
    border: var(--border) solid var(--text);
    padding: 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.benefits-box h3 {
    font-size: 23px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 18px;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.benefits-list li {
    font-size: 16px;
    font-weight: 600;
    padding-left: 24px;
    position: relative;
}

.benefits-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 900;
}

/* EVENTS - FIXED: all 9 events with colors */
.events {
    background: var(--green);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.event-card {
    background: white;
    border: var(--border) solid var(--text);
    padding: 14px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}



.event-type {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 12px;
    border: 2px solid var(--text);
}

.event-type.pink {
    background: var(--pink);
}

.event-type.yellow {
    background: var(--yellow);
}

.event-type.cyan {
    background: var(--cyan);
}

.event-type.purple {
    background: var(--purple);
}

.event-date {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.event-time {
    font-size: 14px;
    color: var(--purple);
    font-weight: 700;
    margin-bottom: 12px;
}

.event-card h4 {
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 12px;
}

.event-author {
    font-size: 14px;
    margin-bottom: 16px;
    font-weight: 600;
}

/* STEPS */
.steps {
    background: var(--green);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    background: white;
    border: var(--border) solid var(--text);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -24px;
    left: 24px;
    width: 48px;
    height: 48px;
    background: var(--yellow);
    border: var(--border) solid var(--text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    box-shadow: var(--shadow-sm);
}

.step-icon {
    font-size: 52px;
    margin-bottom: 12px;
}

.step-card h3 {
    font-size: 17px;
    font-weight: 900;
    margin-bottom: 10px;
}

/* FOUNDER */
.founder {
    background: var(--bg);
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 50px 0 !important;
}

.founder-subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 48px;
}

.founder-card {
    background: white;
    border: var(--border) solid var(--text);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: 8px 8px 0 var(--text);
    display: flex;
    gap: 40px;
}

.founder-photo {
    width: 300px;
    height: 300px;
    background: url('../images/founder-photo.jpg') center/cover no-repeat;
    border: var(--border) solid var(--text);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.founder-content h2 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 8px;
}

.founder-role {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.founder-quote {
    background: var(--yellow);
    border: var(--border) solid var(--text);
    padding: 18px;
    border-radius: var(--radius);
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 700;
}

.founder-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.founder-stat {
    background: var(--cyan);
    border: var(--border) solid var(--text);
    padding: 12px;
    border-radius: var(--radius);
    text-align: center;
    flex: 1;
    box-shadow: var(--shadow-sm);
}

.stat-icon {
    font-size: 22px;
}

.stat-value {
    font-size: 16px;
    font-weight: 900;
}

.stat-label {
    font-size: 12px;
    font-weight: 700;
}

/* TEAM */
.team {
    background: var(--bg);
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 50px 0 !important;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    background: white;
    border: var(--border) solid var(--text);
    padding: 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.team-photo {
    width: 100%;
    aspect-ratio: 1;
    background: var(--cyan);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: var(--border) solid var(--text);
    border-radius: var(--radius);
    margin-bottom: 12px;
}

.team-card h3 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 8px;
}

.team-role {
    color: var(--pink);
    font-weight: 700;
    margin-bottom: 12px;
}

.team-info {
    background: var(--cyan);
    border: var(--border) solid var(--text);
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

/* SUPPORT SYSTEM */
.support-system-section {
    background: var(--bg);
}

.support-diagram {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.support-card {
    background: white;
    border: var(--border) solid var(--text);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 190px;
    text-align: center;
}

.support-card.center {
    width: 180px;
    height: 180px;
    background: var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
}

.support-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.support-card h4 {
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 8px;
}

.support-message {
    background: var(--yellow);
    border: var(--border) solid var(--text);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

/* EMERGENCY */
.emergency {
    background: var(--bg);
    padding: 60px 0;
}

.emergency-card {
    max-width: 650px;
    margin: 0 auto;
    background: var(--coral);
    border: var(--border) solid var(--text);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 8px 8px 0 var(--text);
    text-align: center;
}

.emergency-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.emergency-card h2 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 12px;
}

.audio-player {
    background: white;
    border: var(--border) solid var(--text);
    padding: 24px;
    border-radius: var(--radius);
    margin-top: 24px;
}

.audio-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.audio-player h3 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 8px;
}

.player-controls {
    margin: 24px 0;
}

.play-btn {
    background: var(--cyan);
    border: var(--border) solid var(--text);
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 900;
    cursor: pointer;
    margin-right: 16px;
}

.audio-note {
    font-size: 14px;
    font-weight: 600;
}

/* PRICING */
.pricing {
    background: var(--yellow);
    padding: 60px 0;
}

.pricing-card {
    max-width: 780px;
    margin: 0 auto;
    background: white;
    border: var(--border) solid var(--text);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 8px 8px 0 var(--text);
    text-align: center;
}

.pricing-badge {
    display: inline-block;
    background: var(--pink);
    border: var(--border) solid var(--text);
    padding: 6px 18px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 12px;
    margin-bottom: 16px;
}

.pricing-card h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 8px;
}

.pricing-price {
    margin-bottom: 14px;
}

.price-amount {
    font-size: 42px;
    font-weight: 900;
}

.price-period {
    font-size: 20px;
    font-weight: 700;
}

.pricing-desc {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 12px;
}

.pricing-features li {
    padding: 6px 0;
    font-size: 12px;
    font-weight: 600;
    border-bottom: none;
}

.pricing-features li:before {
    content: '✓ ';
    font-weight: 900;
    color: var(--pink);
}

.pricing-footer {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid rgba(0, 24, 88, 0.1);
    display: flex;
    gap: 16px;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-wrap: wrap;
}

/* VIDEO SUCCESS - FIXED: all details */
.video-success {
    background: var(--bg);
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 50px 0 !important;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.video-card {
    background: white;
    border: var(--border) solid var(--text);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.video-preview {
    aspect-ratio: 16/9;
    background: var(--yellow);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--cyan);
    border: 2px solid var(--text);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 900;
}

.play-button {
    width: 56px;
    height: 56px;
    background: var(--coral);
    border: var(--border) solid var(--text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: var(--shadow);
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--text);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

.video-info {
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-author {
    width: 36px;
    height: 36px;
    background: var(--cyan);
    border: 2px solid var(--text);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
    font-size: 12px;
}

.video-card h4 {
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 3px;
}

.video-role {
    font-size: 10px;
    color: var(--purple);
    font-weight: 700;
}

.video-text {
    padding: 0 12px 12px;
    font-size: 11px;
    line-height: 1.5;
}

.video-card .btn-sm {
    margin: 0 12px 12px;
    width: calc(100% - 24px);
}

/* CHARITY - FIXED: yellow quote box */
.charity {
    background: var(--pink);
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 50px 0 !important;
}

.charity-card {
    max-width: 520px;
    margin: 0 auto;
    background: white;
    border: var(--border) solid var(--text);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.charity-icon {
    font-size: 38px;
    margin-bottom: 10px;
}

.charity-card h2 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 14px;
}

.charity-percent {
    font-size: 43px;
    font-weight: 900;
    margin-bottom: 10px;
}

.charity-text {
    font-size: 13px;
    margin-bottom: 18px;
}

.charity-quote {
    background: var(--yellow);
    border: var(--border) solid var(--text);
    padding: 14px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 700;
}

.quote-author {
    margin-top: 12px;
    font-size: 12px;
}

/* FAQ */
.faq {
    background: var(--bg);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: white;
    border: var(--border) solid var(--text);
    padding: 16px 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    cursor: pointer;
}

.faq-question {
    font-weight: 900;
    font-size: 14px;
    margin-bottom: 8px;
}

.faq-answer {
    font-weight: 600;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text);
}

.faq-cta {
    max-width: 700px;
    margin: 0 auto;
    background: var(--cyan);
    border: var(--border) solid var(--text);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.faq-cta h3 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
}

/* FOOTER */
.footer {
    background: var(--pink);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 16px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: white;
    border: var(--border) solid var(--text);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: var(--border) solid var(--text);
    font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid-8 {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .founder-card {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hero-title {
        font-size: 40px;
    }

    .cards-grid-8 {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}