:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --accent-green: #4ade80;
    --accent-yellow: #facc15;
    --accent-purple: #d946ef;
    --card-bg: #171717;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    perspective: 1000px;
    /* Global perspective */
}

.site-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 150px;
    /* Adjust size as needed */
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
.text-warning {
    color: var(--accent-yellow);
}

.text-success {
    color: var(--accent-green);
}

.highlight {
    color: var(--accent-green);
    font-weight: 700;
}

/* Placeholders */
.image-placeholder {
    width: 100%;
    height: 300px;
    background: #222;
    border: 2px dashed #444;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.image-placeholder::after {
    content: attr(data-label);
    color: #666;
    font-weight: 600;
}

.feature-image {
    width: 100%;
    height: 340px;
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    /* Deeper shadow */
    transition: transform 0.3s ease;
    margin-top: -34px;
}

.feature-image:hover {
    transform: scale(1.02);
}

.caption {
    font-size: 1.8rem;
    /* Increased font size */
    font-weight: 700;
    margin-top: 1rem;
    color: #fff;
    text-align: center;
    letter-spacing: 1px;
}



.hero-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    margin-top: 2rem;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* Hero Section */
.hero-section {
    padding: 4rem 0 0;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.sub-headline {
    font-size: 2.8rem;
    /* Equal size */
    font-weight: 900;
    letter-spacing: 2px;
    color: #FF5F1F;
    /* Neon Orange */
    text-shadow: 0 0 20px rgba(255, 95, 31, 0.5);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.sub-headline-2 {
    font-size: 2.8rem;
    /* Equal size */
    font-weight: 900;
    color: #fff;
    margin: 0.5rem 0;
    text-transform: uppercase;
}

.main-headline {
    font-size: 2.8rem;
    /* Equal size */
    font-weight: 900;
    /*line-height: 1.1;*/
    margin-bottom: 2rem;
    text-transform: uppercase;
    color: var(--accent-green);
    /* Neon Green */
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
}

.main-headline .highlight {
    color: inherit;
    /* Ensure span matches the parent color */
    text-shadow: inherit;
}

.hero-cta-badge {
    background: #fff;
    color: #000;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 8rem;
    /* Stretched even more horizontally */
    border-radius: 80px;
    gap: 2rem;
    box-shadow: 0 0 30px var(--accent-purple), 0 0 60px rgba(217, 70, 239, 0.4);
    /* Neon purple glow */
    border: 3px solid var(--accent-purple);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-cta-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px var(--accent-purple), 0 0 80px rgba(217, 70, 239, 0.6);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bigger brain */
.badge-text {
    text-align: left;
    line-height: 1.2;
    font-size: 1.4rem;
}

/* Bigger text */
.badge-text strong {
    color: var(--accent-purple);
    font-weight: 900;
    font-size: 1.8rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.3rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 800;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse>* {
    direction: ltr;
}

.content-heading {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.problem-section .content-heading {
    font-size: 2rem;
    /* Larger font */
    color: var(--accent-yellow);
    /* Golden Yellow */
    text-shadow: 0 0 20px rgba(250, 204, 21, 0.3);
    font-weight: 800;
}

.closing-statement {
    font-size: 1.4rem;
    /* 20% bigger than standard */
    color: var(--accent-purple);
    /* Neon Purple */
    text-align: center;
    margin-top: 2rem;
    font-weight: 600;
    line-height: 1.5;
    text-shadow: 0 0 10px rgba(217, 70, 239, 0.5);
    /* Purple Glow */
}

.bullet-list {
    list-style: none;
}

.bullet-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 2rem;
}

.problem-section .bullet-list li {
    font-size: 1.4rem;
    /* Increased font size */
    margin-bottom: 1.2rem;
}

.bullet-list li::before {
    content: "•";
    color: var(--accent-green);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

/* Transformation Section Specific List Styles */
.transformation-section .section-title {
    color: var(--accent-yellow);
    text-shadow: 0 0 20px rgba(250, 204, 21, 0.3);
    text-align: center;
    /* Center alignment */
}

.transformation-section .bullet-list li {
    font-size: 1.4rem;
    color: var(--text-color);
    /* Golden Yellow */
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.transformation-section .bullet-list li::before {
    content: "•";
    color: #fff;
    /* White bullets for contrast */
}

.moment-headline {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-top: 3rem;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(250, 204, 21, 0.4);
}

/* Brain Power */
/* Brain Power */
.highlight-box {
    border: 1px solid var(--accent-yellow);
    color: var(--accent-yellow);
    padding: 1rem;
    margin-top: 2rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
}

.neon-purple-btn {
    background: transparent;
    border: 2px solid var(--accent-purple);
    color: #fff;
    padding: 1rem 2rem;
    margin-top: 2rem;
    text-align: center;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 0 15px var(--accent-purple), inset 0 0 10px rgba(217, 70, 239, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    /* Make it behave like a button */
    text-transform: uppercase;
}

.neon-purple-btn:hover {
    background: var(--accent-purple);
    color: #000;
    box-shadow: 0 0 30px var(--accent-purple), 0 0 60px rgba(217, 70, 239, 0.6);
    transform: scale(1.05);
}

/* Features */
.features-section {
    text-align: center;
    background: #111;
}

.feature-intro {
    font-size: 2.2rem;
    /* ~50% bigger than standard h3 */
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 700;
}

.feature-list {
    list-style: none;
    max-width: 100%;
    margin: 2rem 0;
    text-align: left;
}

.feature-list li {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    border-bottom: 1px solid #222;
    padding-bottom: 0.5rem;
}

.feature-tagline {
    font-size: 1.5rem;
    color: var(--accent-yellow);
    margin-top: 2rem;
}

/* Authority */
.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    /* Large gap to prevent overlap */
    margin-bottom: 5rem;
    align-items: center;
}

/* Swap order: Text Left, Image Right */
.auth-text {
    order: -1;
    text-align: left;
}

.full-height-img {
    height: 100%;
    min-height: 400px;
    /* Ensure minimum height */
    object-fit: cover;
    /* Crop to fit */
    width: 100%;
    border-radius: 12px;
}

.auth-image {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #333;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease;
}

.auth-image:hover {
    transform: scale(1.02) rotateY(2deg);
}

.stat {
    font-size: 3rem;
    /* Much bigger font */
    color: var(--accent-green);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 500;
}

.legacy-note {
    font-size: 1.2rem;
    color: var(--accent-yellow);
    margin-top: 1.5rem;
    border-left: 4px solid var(--accent-yellow);
    padding-left: 1rem;
}

.testimonial {
    font-style: italic;
    color: #ccc;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    /* Increased by ~20% */
}

/* Urgency */
.urgency-section {
    background: linear-gradient(45deg, #1a1a1a, #000);
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    overflow: hidden;
    /* Prevent image overflow */
}

.urgency-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Equal width for two images */
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.urgency-text-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    /* Optional: Add shadow or style if needed to match */
}

.urgency-section h3 {
    font-size: 2.5rem;
    /* Large font */
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 100%;
    /* Ensure it fits in column */
    text-align: left;
    /* Ensure text aligns left in its column */
}

.clock-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(250, 204, 21, 0.2);
    /* Stronger glow/shadow */
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.clock-image:hover {
    transform: scale(1.01) translateY(-5px);
}

.clock-image.full-width {
    width: 100%;
    max-width: 100%;
    transform: none;
    /* Remove previous transform */
}

.cta-button {
    background: var(--accent-yellow);
    color: black;
    border: none;
    border-bottom: 5px solid #ca8a04;
    /* Darker yellow for 3D */
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    cursor: pointer;
    margin-top: 2rem;
    border-radius: 8px;
    transition: transform 0.1s, border-bottom-width 0.1s;
    box-shadow: 0 10px 20px rgba(250, 204, 21, 0.3);
    display: inline-block;
}

.cta-button:active {
    transform: translateY(3px);
    border-bottom-width: 2px;
    box-shadow: 0 5px 10px rgba(250, 204, 21, 0.2);
}

/* Product */
.product-section {
    text-align: center;
}

.pre-heading-text {
    font-size: 1.3rem;
    /* Little bit bigger */
    color: var(--accent-yellow);
    /* Golden yellow */
    margin-bottom: 1.5rem;
    font-weight: 600;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.pricing-cards.new-layout {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.course-card {
    background: #fff;
    color: #333;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2.5rem 1.5rem 2rem;
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 20px 40px rgba(0, 0, 0, 0.2);
    /* Deep shadow */
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    /* Bouncy transition */
    transform-style: preserve-3d;
}

.course-card:hover {
    transform: translateY(-15px) rotateX(5deg);
    /* Lift and tilt */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 20px rgba(74, 222, 128, 0.2);
    border-color: var(--accent-green);
}

.course-card.popular {
    border: 3px solid var(--accent-yellow);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 20px 50px rgba(250, 204, 21, 0.2);
}

.course-card.popular:hover {
    transform: scale(1.08);
}

.popular-badge {
    position: absolute;
    top: -15px;
    background: var(--accent-yellow);
    color: black;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-header {
    background: #0f172a;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    width: 100%;
    text-align: center;
}

.card-price {
    font-size: 3rem;
    font-weight: 800;
    color: #111;
    margin: 0.5rem 0;
}

.card-details {
    margin: 1rem 0 2rem;
    text-align: center;
    width: 100%;
}

.card-details p {
    margin: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
}

.card-details strong {
    color: #000;
    font-size: 1.1rem;
}

.savings {
    color: var(--accent-green) !important;
    font-weight: 700;
    font-size: 0.9rem !important;
}

.buy-btn {
    background: transparent;
    border: 2px solid #000;
    border-bottom: 4px solid #000;
    /* 3D thickness */
    color: #000;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.1s;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    top: 0;
}

.buy-btn:active {
    transform: translateY(2px);
    border-bottom-width: 2px;
    /* Press effect */
}

.buy-btn:hover {
    background: #000;
    color: white;
}

.primary-btn {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: #000;
    box-shadow: 0 5px 15px rgba(74, 222, 128, 0.4);
}

.primary-btn:hover {
    background: #22c55e;
    border-color: #22c55e;
    color: white;
    transform: translateY(-2px);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    width: 300px;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.green-card {
    border-top: 4px solid var(--accent-green);
}

.blue-card {
    border-top: 4px solid #3b82f6;
}

.price-tag {
    margin-top: 1.5rem;
    background: #222;
    padding: 1rem;
    border-radius: 8px;
}

.price-tag .days {
    display: block;
    font-size: 0.9rem;
    color: #888;
}

.price-tag .amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

/* Footer */
footer {
    background: #050505;
    padding: 4rem 0;
    border-top: 1px solid #222;
    text-align: center;
    position: relative;
    /* For absolute positioning of logo */
}

.buzan-footer-container {
    position: absolute;
    bottom: 30px;
    right: 30px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center align text and logo relative to each other */
}

.buzan-logo-footer {
    width: 180px;
    /* Adjust size */
    opacity: 0.9;
    background: white;
    padding: 10px;
    border-radius: 8px;
}

.atg-footer-container {
    position: absolute;
    bottom: 30px;
    left: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center align text and logo */
}

.footer-label {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
}

.footer-brand-name {
    color: var(--accent-purple);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.atg-logo-footer {
    width: 180px;
    /* Match Buzan logo size */
    opacity: 0.9;
    background: white;
    padding: 10px;
    border-radius: 50%;
}

.footer-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.brand h3,
.powered h3 {
    color: var(--accent-purple);
    margin-top: 0.5rem;
}

.action-buttons {
    display: none;
    /* Hide old buttons if any remain */
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.step-card {
    background: #111;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.step-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-green);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(74, 222, 128, 0.1);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step-card h4 {
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.step-card p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
}

.final-cta {
    text-align: center;
}

.final-cta h2 {
    color: var(--accent-yellow);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 0 0 20px rgba(250, 204, 21, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid #444;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .content-grid,
    .authority-grid,
    .urgency-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .main-headline {
        font-size: 2.5rem;
    }

    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
}

/* Social Media Icons */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    /* Bigger size */
    height: 70px;
    /* Bigger size */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: white;
    font-size: 2.5rem;
    /* Bigger icon */
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    color: white;
}

/* Brand Colors */
.social-icon.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    border-color: #d6249f;
    box-shadow: 0 0 20px rgba(214, 36, 159, 0.6);
}

.social-icon.facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.6);
}

.social-icon.linkedin:hover {
    background: #0A66C2;
    border-color: #0A66C2;
    box-shadow: 0 0 20px rgba(10, 102, 194, 0.6);
}

.social-icon.website:hover {
    background: #00C2CB;
    /* Cyan/Teal */
    border-color: #00C2CB;
    box-shadow: 0 0 20px rgba(0, 194, 203, 0.6);
}

.social-icon.android:hover {
    background: #3DDC84;
    border-color: #3DDC84;
    box-shadow: 0 0 20px rgba(61, 220, 132, 0.6);
}

.social-icon.ios:hover {
    background: #A2AAAD;
    /* Silver */
    border-color: #A2AAAD;
    box-shadow: 0 0 20px rgba(162, 170, 173, 0.6);
}

.txt-color-1{
    color: #4ade80;
}

.txt-color-2{
    color: #ffffff;
}

.txt-color-3{
    color: #facc15;
}

.txt-color-4{
    color: #889145;
}

.link-style{
    text-decoration: none;
    color: #687ce5;
}

.yt-link-1{
    position: absolute;
    z-index: 99;
    width: 36%;
    margin: 9% 33%;
}

.card-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.old-price {
    color: #ff4d4d;              /* red */
    text-decoration: line-through;
    font-size: 1.2rem;
    font-weight: 600;
}

.new-price {
    color: #2CFF05;              /* or your highlight color */
    font-size: 2.2rem;
    font-weight: 1800;
}


/* =========================
   MOBILE OPTIMIZATION PATCH
   Paste at the END of style.css
   ========================= */

/* Avoid fixed background jank on phones */
@media (max-width: 1024px) {
  .hero-section { background-attachment: scroll; }
}

/* Better default scaling + avoid random zoom */
html { -webkit-text-size-adjust: 100%; }

/* Make media never overflow */
img, iframe, video { max-width: 100%; height: auto; display: block; }

/* If any element causes horizontal scroll, this helps */
body { overflow-x: hidden; }

/* -------------------------
   Phones (<= 768px)
   ------------------------- */
@media (max-width: 768px) {

  /* Layout spacing */
  section { padding: 2.2rem 0; }
  .container { padding: 0 14px; }

  /* Headings scale down */
  .sub-headline,
  .sub-headline-2,
  .main-headline {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
  }

  .section-title {
    font-size: clamp(1.4rem, 5.5vw, 2rem);
    margin-bottom: 1.2rem;
  }

  .content-heading {
    font-size: clamp(1.2rem, 4.5vw, 1.6rem);
    margin-bottom: 1rem;
  }

  /* Lists: reduce huge font sizes on mobile */
  .bullet-list li {
    font-size: 1.05rem;         /* was 2rem in base */
    margin-bottom: 0.8rem;
    padding-left: 1.2rem;
  }

  .problem-section .bullet-list li,
  .transformation-section .bullet-list li {
    font-size: 1.05rem;
  }

  /* Images: remove negative margin that can look weird on phones */
  .feature-image {
    height: auto;
    margin-top: 0;
  }

  .full-height-img {
    min-height: 260px;
  }

  /* Hero CTA badge: stop the super-wide padding */
  .hero-cta-badge {
    width: 100%;
    max-width: 520px;
    padding: 0.8rem 1rem;
    gap: 0.8rem;
    justify-content: center;
    border-radius: 22px;
  }

  .badge-text { font-size: 1rem; text-align: center; }
  .badge-text strong { font-size: 1.3rem; }
  .badge-icon img { width: 120px !important; }

  /* Pricing card: use full width on mobile */
  .pricing-cards.new-layout,
  .pricing-cards {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .course-card {
    width: 100%;
    max-width: 420px;
    padding: 1.6rem 1.2rem;
  }

  .card-price { margin: 0.3rem 0; }
  .new-price { font-size: 2rem; }
  .old-price { font-size: 1.05rem; }

  /* Buttons: thumb-friendly */
  .buy-btn,
  .cta-button,
  .neon-purple-btn {
    width: 100%;
    max-width: 420px;
    padding: 0.95rem 1rem;
    font-size: 1rem;
  }

  /* Social icons: smaller so they don't dominate */
  .social-icon {
    width: 52px;
    height: 52px;
    font-size: 1.8rem;
  }

  /* Footer logos: absolute positioning breaks on phones. Make them normal flow */
  footer { padding-bottom: 2rem; }

  .atg-footer-container,
  .buzan-footer-container {
    position: static;
    margin-top: 1.2rem;
    text-align: center;
  }

  .atg-logo-footer,
  .buzan-logo-footer {
    width: 80px;
  }

  /* If you still use the old youtube phone overlay image */
  .yt-link-1 { position: static; width: 70%; margin: 1rem auto; }
}

/* -------------------------
   Small phones (<= 420px)
   ------------------------- */
@media (max-width: 420px) {

  .hero-section { padding-top: 2.5rem; }

  .moment-headline {
    font-size: 2rem;
    margin-top: 1.5rem;
  }

  .pre-heading-text {
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .feature-intro {
    font-size: 1.4rem;
  }

  .stat {
    font-size: 1.9rem;
    line-height: 1.2;
  }
}

/* -------------------------
   YouTube iframe responsiveness
   (works if iframe is inside .hero-video)
   ------------------------- */
.hero-video {
  width: 100%;
  max-width: 952px;
  margin: 1.5rem auto 0;
  aspect-ratio: 16 / 9;
}

.hero-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


/* =========================
   1) DISABLE HOVER ANIMATIONS ON TOUCH DEVICES
   (phones + many tablets)
   ========================= */
@media (hover: none) and (pointer: coarse) {
  .course-card:hover,
  .auth-image:hover,
  .clock-image:hover,
  .step-card:hover,
  .urgency-btn:hover {
    transform: none !important;
    filter: none !important;
    box-shadow: none !important;
  }
}

/* =========================
   2) FORCE LEFT ALIGN FOR ALL BULLET LISTS
   (ALL DEVICES: mobile + tablet + desktop)
   ========================= */
.bullet-list,
.feature-list,
.bullet-list li,
.feature-list li,
.text-col ul,
.text-col .bullet-list,
.text-col .feature-list {
  text-align: left !important;
}

/* =========================
   3) SOLID RED URGENCY BUTTON
   BASE (ALL DEVICES)
   ========================= */
.urgency-cta-section {
  padding: 2rem 0;
}

.urgency-cta-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.urgency-btn {
  width: 100%;
  max-width: 980px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;

  padding: 1.25rem 2.2rem;
  border-radius: 22px;

  background: #ff1f1f; /* solid red */
  color: #fff;
  text-decoration: none;

  font-weight: 900;
  letter-spacing: 0.5px;
  text-align: center;

  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 45px rgba(255, 31, 31, 0.45), 0 0 60px rgba(255, 31, 31, 0.55);

  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.urgency-text {
  font-size: 1.55rem; /* desktop default */
  line-height: 1.2;
}

.urgency-icon,
.urgency-arrow {
  font-size: 1.55rem;
  line-height: 1;
}

/* Hover ONLY on real hover devices (laptops/desktops) */
@media (hover: hover) and (pointer: fine) {
  .urgency-btn:hover {
    transform: translateY(-3px) scale(1.015);
    filter: brightness(1.07);
    box-shadow: 0 26px 70px rgba(255, 31, 31, 0.55), 0 0 90px rgba(255, 31, 31, 0.8);
  }
}

.urgency-btn:active {
  transform: scale(0.99);
}

/* =========================
   4) TABLET / SMALL LAPTOP
   ========================= */
@media (max-width: 1024px) {
  .urgency-btn {
    max-width: 760px;
    padding: 1.05rem 1.5rem;
    border-radius: 18px;
  }

  .urgency-text {
    font-size: 1.25rem;
  }

  .urgency-icon,
  .urgency-arrow {
    font-size: 1.25rem;
  }
}

/* =========================
   5) MOBILE FIXED SOCIAL BAR
   (MOBILE ONLY)
   ========================= */
@media (max-width: 768px) {

  /* Social bar fixed at bottom */
  .social-links {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    padding: 0.6rem 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(6px);

    display: flex;
    justify-content: center;
    gap: 0.9rem;

    z-index: 9999;
    border-top: 1px solid #222;
  }

  .social-icon {
    width: 52px;
    height: 52px;
    font-size: 1.8rem;
  }

  /* Prevent page content hiding behind bar */
  body {
    padding-bottom: 90px;
  }

  /* Urgency button mobile sizing */
  .urgency-cta-section {
    padding: 1.2rem 0;
  }

  .urgency-btn {
    max-width: 560px;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    gap: 0.6rem;
  }

  .urgency-text {
    font-size: clamp(0.95rem, 4.3vw, 1.05rem);
    line-height: 1.3;
  }

  .urgency-icon,
  .urgency-arrow {
    font-size: clamp(1.05rem, 4.6vw, 1.2rem);
  }
}

/* Very small phones */
@media (max-width: 420px) {
  .urgency-btn {
    padding: 0.9rem 0.85rem;
    border-radius: 14px;
  }
}


/* =========================
   TESTIMONIAL VIDEO SLIDER
   Mobile: 1 visible + arrows
   Desktop: 3 visible + center bigger
   ========================= */

/* =========================
   TESTIMONIAL VIDEO SLIDER
   RULE: ONLY PLAYING VIDEO IS BIGGER
   No middle/center bigger
   ========================= */

.testimonial-slider-block{
  margin: 2.2rem auto 2.8rem;
}

.testimonial-slider-head{
  text-align: center;
  margin-bottom: 1rem;
}

.testimonial-title{
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--accent-yellow);
  text-shadow: 0 0 16px rgba(250, 204, 21, 0.25);
  letter-spacing: 0.5px;
}

.testimonial-subtitle{
  margin-top: 0.35rem;
  color: #cfcfcf;
  font-size: 1rem;
}

/* Shell: arrows + track */
.testimonial-slider-shell{
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 10px;
}

/* Arrows */
.t-arrow{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.t-arrow:hover{
  transform: scale(1.05);
  background: rgba(255,255,255,0.10);
}

/* Track */
.testimonial-track{
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 4px;

  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar{ display: none; }

/* Card (default: not playing) */
.t-card{
  scroll-snap-align: center;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 16px 34px rgba(0,0,0,0.45);

  transform: scale(0.96);
  opacity: 0.92;

  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease, border-color 0.22s ease;
}

.t-video{
  width: 100%;
  height: auto;
  display: block;
  background: #000;
}

/* ✅ ONLY the playing one becomes bigger */
.t-card.is-playing{
  transform: scale(1.06);
  opacity: 1;
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 26px 70px rgba(0,0,0,0.62);
}

/* Desktop: 3 visible */
@media (min-width: 992px){
  .testimonial-slider-shell{
    grid-template-columns: 60px 1fr 60px;
  }

  .t-card{
    flex: 0 0 30%;
  }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 991px){
  .t-card{
    flex: 0 0 48%;
  }
}

/* Mobile: 1 visible */
@media (max-width: 768px){
  .testimonial-title{
    font-size: 1.5rem;
  }

  .testimonial-subtitle{
    font-size: 0.95rem;
  }

  .testimonial-slider-shell{
    grid-template-columns: 44px 1fr 44px;
  }

  .t-arrow{
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }

  .t-card{
    flex: 0 0 92%;
    transform: scale(1);
    opacity: 1;
  }

  .t-card.is-playing{
    transform: scale(1.03);
  }
}


/* =====================================
   STATIC WORKSHOP HEADER – ATG
===================================== */

.workshop-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: linear-gradient(90deg, #ff1f1f, #ff6a00);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  text-align: center;
  padding: 12px 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.28);
}

/* Hover effect */
.workshop-header:hover {
  filter: brightness(1.08);
}

/* Workshop badge */
.workshop-badge {
  background: rgba(0, 0, 0, 0.28);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* Main message */
.workshop-text {
  font-size: 1rem;
  line-height: 1.2;
}

/* Early bird pill */
.workshop-offer {
  background: #000;
  color: #ffd700;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .workshop-header {
    flex-direction: column;
    gap: 8px;
    padding: 14px 12px;
  }

  .workshop-badge {
    font-size: 0.9rem;
  }

  .workshop-text {
    font-size: 0.95rem;
  }

  .workshop-offer {
    font-size: 0.85rem;
  }
}



