/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #0a0e1a;
    --dark-blue: #0d1329;
    --medium-blue: #131b3a;
    --accent-gold: #d4a843;
    --accent-gold-light: #f0d078;
    --accent-red: #c43a3a;
    --accent-red-hover: #e04545;
    --btn-gold: linear-gradient(135deg, #b8922e 0%, #d4a843 30%, #e8c55a 60%, #d4a843 100%);
    --btn-gold-hover: linear-gradient(135deg, #c8a035 0%, #e0b84e 30%, #f0d068 60%, #e0b84e 100%);
    --text-white: #f0f0f5;
    --text-muted: #9a9cb8;
    --text-yellow: #f5e6a3;
    --gradient-gold: linear-gradient(135deg, #d4a843, #f0d078, #d4a843);
    --gradient-gold-text: linear-gradient(135deg, #c8942e, #f5e6a3, #d4a843, #f0d078);
    --gradient-dark: linear-gradient(180deg, #0a0e1a 0%, #0d1329 100%);
    --gradient-blue: linear-gradient(180deg, #0d1329 0%, #131b3a 100%);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --section-padding: 100px 0;
    --container-width: 1200px;
    --border-gold: 1px solid rgba(212, 168, 67, 0.2);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    background: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== GOLD TEXT GRADIENT ===== */
.gold-text {
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: var(--section-padding);
    position: relative;
    overflow-x: clip;
}

.section--dark {
    background: var(--gradient-dark);
}

.section--blue {
    background: var(--gradient-blue);
}

.section--black {
    background: #050810;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 24px;
}

.section__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 40px;
}

/* ===== CTA BUTTON ===== */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--btn-gold);
    color: #0a0e1a;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.3px;
    text-transform: none;
    text-shadow: 0 1px 0 rgba(255,255,255,0.15);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s;
    z-index: -1;
}

.cta-btn:hover {
    background: var(--btn-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 168, 67, 0.35);
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn__pulse {
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(212, 168, 67, 0); }
}

.cta-subtext {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ===== HEADER / NAV ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(212, 168, 67, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}

.logo svg {
    width: 40px;
    height: 40px;
}

.logo-text {
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.9rem;
    border-radius: 30px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(13, 19, 41, 0.8) 0%, transparent 70%);
    pointer-events: none;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__content {
    position: relative;
    z-index: 2;
}

.hero__label {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--accent-gold-light);
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero__subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
}

.hero__image {
    position: relative;
    z-index: 2;
}

.hero__image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    max-height: 600px;
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 1px solid rgba(212, 168, 67, 0.2);
    pointer-events: none;
}

.hero__image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* Floating Enneagram symbol behind hero */
.hero__symbol {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 500px;
    height: 500px;
    opacity: 0.04;
    z-index: 0;
    animation: rotate-slow 60s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== PAIN SECTION ===== */
.pain-list {
    max-width: 700px;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    font-size: 1.15rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.pain-item__icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pain-item__icon svg,
.course-feature__icon svg,
.bento-item__icon svg {
    width: 24px;
    height: 24px;
}

/* Inline SVG icon styling */
.icon-svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.icon-svg--sm {
    width: 20px;
    height: 20px;
}

.icon-svg--gold {
    color: var(--accent-gold);
}

.pain-quote {
    margin-top: 48px;
    padding: 32px;
    border-left: 3px solid var(--accent-gold);
    background: rgba(212, 168, 67, 0.05);
    border-radius: 0 12px 12px 0;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--text-yellow);
    line-height: 1.6;
}

/* ===== WHAT IS ENNEAGRAM ===== */
.explain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.explain-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.explain-text p strong {
    color: var(--text-white);
}

.explain-points {
    margin-top: 32px;
}

.explain-point {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
}

.explain-point__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.2);
    flex-shrink: 0;
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.explain-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.enneagram-svg {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 0 30px rgba(212, 168, 67, 0.15));
}

/* ===== RECOGNITION CARDS ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.recognition-card {
    background: rgba(19, 27, 58, 0.6);
    border: 1px solid rgba(212, 168, 67, 0.1);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.recognition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.4s;
}

.recognition-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 168, 67, 0.3);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.recognition-card:hover::before {
    opacity: 1;
}

.recognition-card__number {
    font-family: var(--font-heading);
    font-size: 3rem;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 16px;
}

.recognition-card__text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.recognition-bottom {
    text-align: center;
}

.recognition-bottom__text {
    font-size: 1.2rem;
    color: var(--text-yellow);
    margin-bottom: 32px;
    font-family: var(--font-heading);
}

/* ===== RESULTS SECTION ===== */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.result-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(19, 27, 58, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: border-color 0.3s;
}

.result-item:hover {
    border-color: rgba(212, 168, 67, 0.2);
}

.result-item__check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-gold);
    font-size: 0.85rem;
}

.result-item__text {
    font-size: 1.05rem;
    color: var(--text-muted);
}

.results-quote {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--text-yellow);
    max-width: 600px;
    margin: 0 auto 40px;
    font-style: italic;
}

/* ===== COURSE SECTION ===== */
.course-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.course-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.course-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(19, 27, 58, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(212, 168, 67, 0.08);
    transition: all 0.3s;
}

.course-feature:hover {
    border-color: rgba(212, 168, 67, 0.2);
    transform: translateX(8px);
}

.course-feature__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(212, 168, 67, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.course-feature__text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.course-feature__text p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.course-video {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
    border: 1px solid rgba(212, 168, 67, 0.15);
}

.course-video__thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(184, 146, 46, 0.92), rgba(212, 168, 67, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
    border: 2px solid rgba(240, 208, 120, 0.3);
}

.course-video__play::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 22px;
    border-color: transparent transparent transparent #fff;
    margin-left: 4px;
}

.course-video:hover .course-video__play {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 40px rgba(212, 168, 67, 0.45);
}

.course-keynote {
    margin-top: 32px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-yellow);
    text-align: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(33.333% - 16px);
    background: rgba(19, 27, 58, 0.5);
    border: 1px solid rgba(212, 168, 67, 0.1);
    border-radius: 16px;
    padding: 32px;
    flex-shrink: 0;
}

.testimonial-card__quote {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    padding-left: 24px;
}

.testimonial-card__quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -8px;
    font-size: 2.5rem;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    opacity: 0.5;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 168, 67, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-card__name {
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-card__role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.testimonials-note {
    text-align: center;
    margin-top: 40px;
    font-size: 1rem;
    color: var(--text-muted);
}

/* ===== OBJECTIONS ===== */
.objections-list {
    max-width: 800px;
    margin: 0 auto;
}

.objection-item {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.objection-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    transition: color 0.3s;
    user-select: none;
}

.objection-question:hover {
    color: var(--accent-gold-light);
}

.objection-question__toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(212, 168, 67, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.objection-item.active .objection-question__toggle {
    transform: rotate(45deg);
}

.objection-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.objection-answer__inner {
    padding: 0 0 24px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

.objection-item.active .objection-answer {
    max-height: 200px;
}

/* ===== PRICING ===== */
.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: rgba(19, 27, 58, 0.6);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.pricing-card__label {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--accent-gold-light);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card__price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 8px;
}

.pricing-card__note {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 32px;
}

.pricing-card__limit {
    background: rgba(212, 168, 67, 0.06);
    border: 1px solid rgba(212, 168, 67, 0.15);
    border-radius: 10px;
    padding: 14px 20px;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--accent-gold-light);
}

/* ===== FINAL CTA ===== */
.final-cta {
    text-align: center;
    padding: 120px 0;
}

.final-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    line-height: 1.3;
}

.final-cta__text {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.final-cta__subtext {
    margin-top: 20px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-yellow);
    font-style: italic;
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== PARTICLES / DECORATIVE ===== */
.particles-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(212, 168, 67, 0.3);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

/* Divider */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.2), transparent);
    margin: 0 auto;
    max-width: 60%;
}

/* ===== VIDEO MODAL ===== */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.video-modal.active {
    display: flex;
}

.video-modal__inner {
    position: relative;
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-modal__close {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s;
}

.video-modal__close:hover {
    color: var(--accent-gold);
}

/* ===== COUNTER ANIMATION ===== */
.counter-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.counter-item {
    text-align: center;
}

.counter-item__number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--accent-gold);
}

.counter-item__label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.show_mobile {display: none;}

/* Gallery */
.masonry-gallery {
    column-count: 4;
    column-gap: 20px;
}

.masonry-gallery a {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
    break-inside: avoid;
}

.masonry-gallery img {
    width: 100%;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
    padding: 5px;
    background-color: #f0f0f0;
}

.masonry-gallery img:hover {
    transform: scale(1.03);
}


/* Swiper hidden on desktop */
.gallery-swiper {
    display: none;
}

/* Ensure the external pagination is visible and styled */
.swiper-custom-pagination {
    position: relative; /* Change from absolute to relative for flow */
    margin-top: 20px;   /* Add space below the slider */
    text-align: center;
}

/* RESPONSIVE GALLERY*/
@media (max-width: 1024px) {
    .masonry-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .masonry-gallery {
        display: none;
    }

    .gallery-swiper {
        display: block;
    }

    .gallery-swiper img {
        width: 100%;
        border-radius: 10px;
    }
    .swiper-custom-pagination .swiper-pagination-bullet {
        background: lightgray;
    }
    .swiper-custom-pagination .swiper-pagination-bullet-active {
        background: var(--gradient-gold-text);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .show_desktop {display: none;}
    .show_mobile {display: block;}
    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero__image {
        order: -1;
        max-width: 400px;
        margin: 0 auto 20px;
    }
    .explain-grid,
    .course-content {
        grid-template-columns: 1fr;
    }
    .explain-visual {
        order: -1;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .results-grid {
        grid-template-columns: 1fr;
    }
    .testimonial-card {
        min-width: calc(100% - 16px);
    }
    .counter-row {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 40px;
    }
    .hero__title {
        font-size: 2rem;
    }
    .cta-btn {
        padding: 14px 24px;
        font-size: .9375rem;
    }
    .pricing-card {
        padding: 32px 24px;
    }
    .pricing-card__price {
        font-size: 2.5rem;
    }
    .section__title {
        font-size: 1.8rem;
    }
    .counter-row {
        gap: 20px;
    }
    .counter-item__number {
        font-size: 1.8rem;
    }
    .nav-cta {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero__title {
        font-size: 1.7rem;
    }
    .objection-question {
        font-size: 1rem;
    }
}
