/* ===================================================
   Greenside Golf School — Style.css
   Theme: Emerald + White | Fonts: Raleway + Lora
=================================================== */

:root {
    --primary: #065f46;
    --primary-dark: #022c20;
    --primary-light: #047852;
    --accent: #ffffff;
    --accent2: #d1fae5;
    --highlight: #10b981;
    --highlight2: #34d399;
    --white: #ffffff;
    --light: #f0fdf4;
    --gray: #6b7280;
    --dark-text: #111827;
    --border: #d1fae5;
    --shadow: 0 4px 24px rgba(6, 95, 70, 0.10);
    --shadow-lg: 0 16px 48px rgba(6, 95, 70, 0.18);
    --radius: 14px;
    --radius-sm: 8px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--dark-text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Lora', serif;
    font-weight: 700;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 90px 0;
}

.text-center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--highlight);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 580px;
    margin: 0 auto 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 95, 70, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--accent2);
    transform: translateY(-2px);
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 95, 70, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
}

.navbar-brand span {
    color: var(--highlight2);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--highlight2);
}

.nav-cta {
    background: var(--white) !important;
    color: var(--primary) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
}

.nav-cta:hover {
    background: var(--accent2) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
    display: block;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--highlight2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.15;
}

.hero h1 span {
    color: var(--highlight2);
}

.hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-family: 'Lora', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--highlight2);
    line-height: 1;
}

.stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.hero-shape {
    position: absolute;
    right: -80px;
    top: 10%;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 100px solid rgba(255, 255, 255, 0.04);
    animation: spinSlow 30s linear infinite;
}

.hero-shape2 {
    position: absolute;
    right: 80px;
    top: 20%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 60px solid rgba(16, 185, 129, 0.08);
    animation: spinSlow 20s linear infinite reverse;
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg);
    }
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 56px;
}

.service-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    border-color: var(--highlight);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 62px;
    height: 62px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray);
    font-size: 0.93rem;
    line-height: 1.65;
}

/* BENEFITS */
.benefits {
    background: var(--light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 56px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.benefit-card-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.benefit-card h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.benefit-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* PHOTO SECTION */
.photo-row {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.photo-col {
    flex: 1;
    min-width: 280px;
}

.photo-frame {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.photo-frame::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 3px solid var(--highlight);
    border-radius: var(--radius);
    z-index: -1;
}

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    color: var(--gray);
}

.feature-list li:last-child {
    border-bottom: none;
}

.check {
    color: var(--highlight);
    font-weight: 700;
}

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 56px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--highlight);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: var(--highlight);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.author-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

.author-role {
    color: var(--gray);
    font-size: 0.82rem;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-form {
    background: var(--light);
    border-radius: var(--radius);
    padding: 40px;
    border: 2px solid var(--border);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 7px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    color: var(--dark-text);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--highlight);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 0.82rem;
    color: var(--gray);
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--highlight);
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--light);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail-text strong {
    display: block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.contact-detail-text span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* FOOTER */
.footer {
    background: var(--primary-dark);
    padding: 72px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 16px 0 24px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.9rem;
    border-radius: 50%;
}

.social-link:hover {
    background: var(--highlight);
    color: var(--white);
}

.footer-col h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--highlight2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 56px;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--highlight2);
}

/* COOKIE */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: var(--primary-dark);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius);
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 9999;
    box-shadow: var(--shadow-lg);
    transform: translateY(120%);
    opacity: 0;
    transition: var(--transition);
    flex-wrap: wrap;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-text {
    flex: 1;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
}

.cookie-text a {
    color: var(--highlight2);
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-cookie-accept {
    background: var(--highlight);
    color: var(--white);
}

.btn-cookie-decline {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* COURSES PAGE */
.filter-tabs {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 28px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: var(--white);
    color: var(--gray);
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.course-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid var(--border);
    transition: var(--transition);
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--highlight);
}

.course-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    position: relative;
    overflow: hidden;
}

.level-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-beginner {
    background: #22c55e;
    color: white;
}

.badge-intermediate {
    background: #f59e0b;
    color: white;
}

.badge-advanced {
    background: #ef4444;
    color: white;
}

.course-body {
    padding: 24px;
}

.course-price {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
}

.course-meta {
    display: flex;
    gap: 16px;
    margin: 12px 0 16px;
    color: var(--gray);
    font-size: 0.82rem;
}

/* FAQ */
.faq-item {
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    background: var(--white);
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light);
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--highlight);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 24px 20px;
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.7;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

/* BLOG */
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 56px;
    margin-top: 56px;
}

.article-card {
    display: flex;
    gap: 24px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--border);
    margin-bottom: 28px;
    transition: var(--transition);
}

.article-card:hover {
    border-color: var(--highlight);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.article-card-image {
    width: 220px;
    min-width: 220px;
}

.article-card-body {
    padding: 28px;
    flex: 1;
}

.article-tag {
    display: inline-block;
    background: var(--light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.article-title {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.article-excerpt {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.article-meta {
    font-size: 0.8rem;
    color: var(--gray);
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    border: 2px solid var(--border);
    margin-bottom: 28px;
}

.sidebar-widget h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--highlight);
}

/* ARTICLE */
.article-hero {
    background: var(--primary);
    padding: 120px 0 60px;
}

.article-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.article-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 56px;
    margin-top: 56px;
}

.article-content h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin: 36px 0 16px;
}

.article-content h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin: 28px 0 12px;
}

.article-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 0.97rem;
}

.article-content ul {
    margin: 0 0 18px 20px;
    color: var(--gray);
    line-height: 1.8;
}

.author-bio {
    background: var(--light);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 48px;
    border: 2px solid var(--border);
}

.author-avatar-lg {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
}

.share-buttons {
    display: flex;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    border: none;
}

.share-fb {
    background: #1877f2;
}

.share-tw {
    background: #1da1f2;
}

.share-wa {
    background: #25d366;
}

.cta-box {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 36px;
    text-align: center;
    margin: 40px 0;
}

.cta-box h3 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
}

/* DETAIL */
.detail-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 110px 0 60px;
}

.detail-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.detail-hero-inner {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.detail-hero-content {
    flex: 1;
    min-width: 280px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    min-width: 300px;
    box-shadow: var(--shadow-lg);
}

.pricing-card .price {
    font-family: 'Lora', serif;
    font-size: 3rem;
    color: var(--primary);
    font-weight: 700;
}

.checklist {
    list-style: none;
    margin: 24px 0;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--gray);
    font-size: 0.92rem;
    border-bottom: 1px solid var(--border);
}

.checklist li:last-child {
    border-bottom: none;
}

.checklist li::before {
    content: '✓';
    color: var(--highlight);
    font-weight: 700;
    min-width: 20px;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.tier-card {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: var(--transition);
}

.tier-card.featured {
    border-color: var(--primary);
    background: var(--primary);
}

.tier-card .tier-price {
    font-family: 'Lora', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary);
}

.tier-card.featured .tier-price {
    color: var(--highlight2);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.schedule-slot {
    background: var(--light);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    text-align: center;
    font-size: 0.85rem;
    border: 2px solid var(--border);
}

.schedule-slot.available {
    border-color: var(--highlight);
    color: var(--primary);
    background: #f0fdf4;
}

.schedule-slot.full {
    border-color: #ef4444;
    color: #991b1b;
    background: #fef2f2;
}

/* THANK YOU */
.thank-you-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    text-align: center;
    padding: 40px;
}

.thank-you-card {
    background: var(--white);
    border-radius: 20px;
    padding: 56px 48px;
    max-width: 600px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 28px;
    animation: pulse 2s infinite;
    color: var(--highlight);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 36px 0;
}

.step-item {
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 12px;
}

/* LEGAL */
.legal-hero {
    background: var(--primary);
    padding: 110px 0 50px;
}

.legal-hero h1 {
    color: var(--white);
    font-size: 2.5rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.legal-content h2 {
    color: var(--primary);
    margin: 36px 0 14px;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: var(--primary);
    margin: 24px 0 10px;
    font-size: 1.2rem;
}

.legal-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.legal-content ul {
    margin: 0 0 16px 24px;
    color: var(--gray);
    line-height: 1.8;
}

/* COMPARISON TABLE */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 48px;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison-table th {
    background: var(--primary);
    color: var(--white);
    padding: 16px 20px;
    text-align: left;
    font-size: 0.88rem;
    font-weight: 700;
}

.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--gray);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background: var(--light);
}

.check-yes {
    color: #22c55e;
    font-weight: 700;
}

.check-no {
    color: #ef4444;
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* RESPONSIVE */
@media(max-width:992px) {

    .contact-grid,
    .blog-layout,
    .article-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .detail-hero-inner {
        flex-direction: column;
    }
}

@media(max-width:768px) {
    .section {
        padding: 64px 0;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        padding: 16px 0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        padding: 12px 24px;
    }

    .hamburger {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .article-card {
        flex-direction: column;
    }

    .article-card-image {
        width: 100%;
        min-width: auto;
        height: 180px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero::after {
        display: none;
    }
}