@import url('https://fonts.googleapis.com/css2?family=TASA+Explorer:wght@400;700;900&family=Inter:wght@400;700;900&display=swap');

/* ========================================
   BASE STYLES (SHARED)
   ======================================== */

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

html { scroll-behavior: smooth; }

:root {
    --text-primary: #2B3A5C;
    --text-secondary: #3D4E6F;
    --bg-white: #F8F9FA;
    --bg-light: #E9ECEF;
    --bg-dark: #1b253a;
    --accent-orange: #ef7039;
    --accent-orange-hover: #FF6624;
    --border-dark: #3D4E6F;
    --border-light: #DEE2E6;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-white);
    color: var(--text-primary);
    padding-top: 80px;
    line-height: 1.7;
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-bottom: 4px solid var(--accent-orange);
    z-index: 100;
    padding: 0 40px;
}

nav .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

nav .logo {
    font-family: 'TASA Explorer';
    font-size: 18px;
    color: var(--bg-white);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s;
}

nav .logo:hover {
    opacity: 0.9;
}

nav .logo .accent { color: var(--accent-orange); }

nav .logo .wp-badge {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--bg-white);
    font-size: 10px;
    padding: 4px 8px;
    margin-left: 12px;
    letter-spacing: 1px;
    border: 2px solid var(--bg-white);
    position: relative;
    top: -3px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
}

nav ul li {
    display: flex;
    align-items: center;
    padding-bottom: 0;
    margin-bottom: 0;
}

nav a {
    font-family: 'TASA Explorer';
    font-size: 15px;
    color: var(--bg-white);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s;
}

nav a:hover,
nav a.active {
    color: var(--accent-orange);
}

nav a.back-link {
    font-family: 'TASA Explorer';
    font-size: 13px;
    color: var(--bg-white);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s;
}

nav a.back-link:hover { color: var(--accent-orange); }

nav a.btn {
    padding: 10px 24px;
    font-size: 13px;
    border-width: 2px;
}

nav a.btn:hover {
    color: var(--bg-white);
    transform: scale(1.05);
}

/* Typography */
h1 {
    font-family: 'TASA Explorer';
    font-size: 72px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    line-height: 1;
}

h2 {
    font-family: 'TASA Explorer';
    font-size: 56px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    line-height: 1;
    color: var(--text-primary);
}

h3 {
    font-family: 'TASA Explorer';
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 40px 0 20px 0;
}

p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 22px;
    color: var(--bg-light);
    max-width: 800px;
    line-height: 1.7;
}

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

.highlight-blue {
    font-weight: 700;
    color: var(--text-primary);
}

/* Lists */
ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

ul li {
    padding-left: 36px;
    margin-bottom: 12px;
    position: relative;
    font-size: 18px;
}

ul li::before {
    content: '■';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-size: 24px;
}

nav ul li {
    padding-left: 0;
}

nav ul li::before {
    display: none;
}

/* Buttons */
.btn {
    padding: 20px 50px;
    border: 4px solid var(--border-dark);
    background: var(--bg-white);
    color: var(--text-primary);
    font-family: 'TASA Explorer';
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--bg-dark);
    color: var(--bg-white);
}

.btn-accent {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    color: var(--bg-white);
}

.btn:hover {
    transform: scale(1.05);
}

.btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-group-center {
    justify-content: center;
}

/* Footer */
footer {
    text-align: center;
    padding: 60px 20px;
    background: transparent;
}

footer p {
    font-size: 14px;
    margin-bottom: 12px;
}

footer a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 700;
}

/* Pro Badge */
.pro-badge {
    display: inline-block;
    background: var(--bg-white);
    color: var(--accent-orange);
    font-size: 9px;
    padding: 3px 6px;
    margin-left: 6px;
    letter-spacing: 1px;
    position: relative;
    top: -2px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   INDEX PAGE STYLES
   ======================================== */

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal.active {
    opacity: 1;
    transform: scale(1);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Animated underline on headings */
h2::after {
    content: '';
    display: block;
    width: 0;
    height: 6px;
    background: var(--accent-orange);
    margin-top: 20px;
    transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

h2.active::after {
    width: 120px;
}

/* Smooth background transitions */
section {
    transition: background-color 0.6s ease;
}

/* Card hover effects */
.feature-card,
.comparison-box,
.audience-card {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover,
.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(26, 26, 26, 0.1);
}

.comparison-box:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(26, 26, 26, 0.15);
}

.comparison-box.pro .highlight {
    font-weight: 900;
}

body {
    position: relative;
    overflow-x: hidden;
}

section, header {
    position: relative;
    scroll-margin-top: 95px;
}

section .container, header .container {
    position: relative;
    z-index: 2;
}

/* Hero Section */
header {
    padding: 80px 60px;
    margin-bottom: 0;
    position: relative;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
    z-index: 0;
}

@keyframes float-blob-1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -40px) rotate(10deg);
    }
    66% {
        transform: translate(-25px, 35px) rotate(-8deg);
    }
}

@keyframes float-blob-2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-40px, 25px) rotate(-10deg);
    }
    66% {
        transform: translate(35px, -30px) rotate(12deg);
    }
}

@keyframes float-blob-3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(25px, 35px) rotate(8deg);
    }
    66% {
        transform: translate(-30px, -25px) rotate(-10deg);
    }
}

@keyframes float-blob-4 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(-28px, -40px) rotate(-12deg);
    }
    66% {
        transform: translate(40px, 28px) rotate(10deg);
    }
}

.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
    mix-blend-mode: normal;
}

.blob-1 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(61, 78, 111, 0.25);
    border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
    top: -100px;
    left: -100px;
    animation: float-blob-1 20s ease-in-out infinite;
}

.blob-2 {
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 122, 61, 0.15);
    border-radius: 60% 40% 55% 45% / 45% 60% 40% 55%;
    bottom: 10%;
    right: -50px;
    animation: float-blob-2 18s ease-in-out infinite;
}

.blob-3 {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 122, 61, 0.18);
    border-radius: 50% 60% 40% 70% / 60% 50% 70% 40%;
    top: 35%;
    right: 8%;
    animation: float-blob-3 15s ease-in-out infinite;
}

.blob-4 {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(61, 78, 111, 0.25);
    border-radius: 70% 40% 60% 50% / 40% 70% 50% 60%;
    top: 65%;
    left: 3%;
    animation: float-blob-4 22s ease-in-out infinite;
}

.hero-content {
    max-width: 70%;
    align-items: center;
    position: relative;
    z-index: 1;
}

h1 {
    font-family: 'TASA Explorer', sans-serif;
    font-size: 80px;
    font-weight: 700;
    color: var(--bg-white);
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 40px;
    min-height: 240px;
}

h1 .accent { color: var(--accent-orange); }

/* Typewriter cursor */
h1.typewriter::after {
    content: '|';
    color: var(--accent-orange);
    animation: blink 0.7s infinite;
    margin-left: 4px;
}

h1.typewriter.typing-complete::after {
    animation: none;
    opacity: 0;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.subtitle {
    font-size: 21px;
    color: var(--bg-light);
    max-width: 800px;
    line-height: 1.7;
    margin-bottom: 50px;
    font-weight: 400;
}

.hero-visual {
    background: var(--accent-orange);
    padding: 140px 40px;
    text-align: center;
    border: 4px solid var(--bg-white);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-text {
    font-family: 'TASA Explorer';
    font-size: 36px;
    color: var(--bg-white);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Section Variations */
section {
    background: transparent;
    padding: 80px 60px;
}

.section-compact {
    padding: 80px 60px;
}

.section-large {
    padding: 80px 60px;
}

.section-dark {
    color: var(--bg-white);
}

.section-dark h2 {
    color: var(--bg-white);
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
    z-index: 0;
}

.section-bordered {
    border-bottom: 4px solid var(--border-light);
}

.section-accent-border {
    border-bottom: 8px solid var(--accent-orange);
}

h2 {
    font-family: 'TASA Explorer';
    font-size: 72px;
    text-transform: uppercase;
    margin-bottom: 40px;
    letter-spacing: 3px;
    line-height: 1;
}

h2.h2-large {
    font-size: 96px;
    margin-bottom: 50px;
}

h2.h2-small {
    font-size: 56px;
    margin-bottom: 30px;
}

h3.h3-large {
    font-size: 36px;
}

p.lead {
    font-size: 22px;
    line-height: 1.8;
    font-weight: 500;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.feature-card {
    border: 4px solid var(--border-dark);
    padding: 60px;
    background: var(--bg-white);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-card.card-highlight {
    background: var(--bg-dark);
    color: var(--bg-white);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: var(--accent-orange);
    border: 4px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 30px 0;
    font-family: 'TASA Explorer';
    font-size: 48px;
    color: var(--bg-white);
    letter-spacing: 2px;
}

.card-highlight .feature-icon {
    border-color: var(--bg-white);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.comparison-box {
    padding: 60px;
    background: transparent;
}

.comparison-box.pro {
    background: var(--accent-orange);
    color: var(--bg-white);
}

.comparison-box.pro li::before {
    color: var(--bg-white);
}

.pro-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 20px;
}

.price-tag {
    display: inline-block;
    background: var(--bg-dark);
    color: var(--bg-white);
    font-family: 'TASA Explorer';
    font-size: 48px;
    letter-spacing: 2px;
    padding: 16px 32px;
    border: 4px solid var(--bg-white);
    margin: 0;
}

.price-tag .currency {
    font-size: 32px;
    vertical-align: super;
    margin-right: 4px;
}

.pro-header h3 {
    margin-bottom: 0;
}

.price-subtext {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 700;
}

li {
    padding-left: 36px;
    margin-bottom: 16px;
    position: relative;
    font-size: 17px;
    line-height: 1.7;
}

li::before {
    content: '■';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-size: 24px;
}

.section-dark li::before {
    color: var(--accent-orange);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    counter-reset: step-counter;
}

.step-card {
    background: var(--bg-white);
    border: 4px solid var(--border-dark);
    border-radius: 4px;
    padding: 32px;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    counter-increment: step-counter;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 24px;
    width: 56px;
    height: 56px;
    background: var(--accent-orange);
    border: 4px solid var(--border-dark);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'TASA Explorer';
    font-size: 28px;
    font-weight: 700;
    color: var(--bg-white);
}

.step-number::before {
    content: counter(step-counter);
}

.step-content {
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
    margin-top: 20px;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.audience-card {
    border: 4px solid var(--border-dark);
    border-radius: 4px;
    padding: 40px;
    background: var(--bg-white);
    text-align: center;
}

.audience-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.audience-card p {
    font-size: 16px;
}

.requirements-list {
    max-width: 700px;
}

.requirements-list li {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 18px;
}

footer {
    border-top: 4px solid var(--border-light);
}

footer p {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

footer a {
    font-weight: 900;
}

/* Mobile Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--bg-white);
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
}

.mobile-menu-overlay ul {
    list-style: none;
    text-align: center;
    padding: 80px 0 0 0;
}

.mobile-menu-overlay ul li {
    margin-bottom: 40px;
    padding: 0;
}

.mobile-menu-overlay ul li::before {
    display: none;
}

.mobile-menu-overlay a {
    font-family: 'TASA Explorer';
    font-size: 32px;
    color: var(--bg-white);
    text-decoration: none;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.2s;
}

.mobile-menu-overlay a:hover,
.mobile-menu-overlay a.accent {
    color: var(--accent-orange);
}

.mobile-menu-overlay a.btn {
    padding: 16px 40px;
    font-size: 24px;
}

.mobile-menu-overlay a.btn:hover {
    color: var(--bg-white);
}

.ml-embedded {
    width: 100%;
    min-height: 145px;
}

/* Feature Tabs */
.feature-tabs-section {
    position: relative;
}

.feature-tabs-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFF;
    z-index: 0;
}

.tabs-container {
    margin: 0 auto;
}

.tabs-nav {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    border-bottom: 4px solid var(--border-dark);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tabs-nav::-webkit-scrollbar {
    display: none;
}

.tab-button {
    font-family: 'TASA Explorer', sans-serif;
    font-size: 14px;
    letter-spacing: 0px;
    text-transform: uppercase;
    padding: 20px 11px;
    border: none;
    background: var(--bg-white);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 4px solid transparent;
    margin-bottom: -4px;
    white-space: nowrap;
    position: relative;
}

.tab-button:hover {
    background: var(--bg-light);
}

.tab-button.active {
    background: var(--bg-dark);
    color: var(--bg-white);
    border-bottom-color: var(--accent-orange);
}

.tab-button .pro-badge {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--bg-white);
    font-size: 10px;
    padding: 2px 6px;
    margin-left: 2px;
    letter-spacing: 1px;
    position: relative;
    top: -1px;
}

.tab-content {
    display: none;
    padding: 60px 0;
    animation: fadeIn 0.4s;
}

.tab-content.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tab-text h3 {
    font-family: 'TASA Explorer', sans-serif;
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    line-height: 1;
}

.tab-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.tab-image {
    border: 4px solid var(--border-dark);
    border-radius: 4px;
    background: var(--bg-light);
    aspect-ratio: 1828 / 1100;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'TASA Explorer', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    color: #a3a3a3;
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Custom utility classes */
.hero-badge {
    font-family: 'TASA Explorer';
    font-size: 14px;
    letter-spacing: 4px;
    margin-bottom: 32px;
    color: var(--accent-orange);
}

.problem-grid {
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.problem-box {
    border: 6px solid var(--border-dark);
    border-radius: 4px;
    padding: 60px;
    background: var(--bg-white);
}

.problem-box h3 {
    font-family: 'TASA Explorer';
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.problem-box.dark {
    background: var(--bg-dark);
    color: var(--bg-white);
}

.problem-box.lead-text {
    margin-bottom: 20px;
}

.solution-box {
    border: 6px solid var(--accent-orange);
    border-radius: 4px;
    padding: 60px;
    background: var(--accent-orange);
    color: var(--bg-white);
    text-align: center;
}

.solution-box h3 {
    font-family: 'TASA Explorer';
    font-size: 48px;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: 2px;
    color: var(--bg-white);
}

.solution-box .lead {
    margin-bottom: 20px;
    color: var(--bg-white);
}

.solution-box .lead:last-child {
    color: var(--bg-white);
}

.solution-emphasis {
    color: var(--bg-dark);
    font-weight: 900;
}

.intro-text {
    max-width: 700px;
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.7;
}

.intro-text-wide {
    max-width: 800px;
    margin-bottom: 60px;
    font-size: 18px;
    line-height: 1.7;
}

.intro-text-compact {
    max-width: 800px;
    margin-bottom: 50px;
    font-size: 18px;
    line-height: 1.7;
}

.download-btn-wrapper {
    margin-top: 40px;
    text-align: center;
}

.pro-intro {
    font-size: 16px;
    margin-bottom: 30px;
}

.cta-text-main {
    max-width: 750px;
    margin: 0 auto 30px;
}

.cta-text-secondary {
    max-width: 750px;
    margin: 0 auto 50px;
}

.footer-tagline {
    margin-top: 20px;
}

#download {
    text-align: center;
}

/* ========================================
   HELP PAGE STYLES
   ======================================== */

.approach-badge {
    font-family: 'TASA Explorer';
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--accent-orange);
    margin-bottom: 20px;
}

/* Help page h1 override */
.sidebar-layout ~ footer h1,
body:has(.sidebar-layout) h1 {
    min-height: auto;
}

header {
    padding: 80px 60px;
    background: var(--bg-dark);
    color: var(--bg-white);
    border-bottom: 8px solid var(--accent-orange);
}

/* Vertical Sidebar Layout */
.sidebar-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    min-height: 600px;
    background: var(--bg-white);
}

.sidebar {
    background: var(--bg-dark);
    border-right: 4px solid var(--accent-orange);
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    overflow-y: auto;
}

.sidebar-tab {
    font-family: 'TASA Explorer';
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 24px 30px;
    border: none;
    background: transparent;
    color: var(--bg-light);
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    text-align: left;
    border-left: 6px solid transparent;
    font-weight: 700;
    display: block;
}

.sidebar-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
}

.sidebar-tab.active {
    background: var(--accent-orange);
    color: var(--bg-white);
    border-left-color: var(--bg-white);
}

.sidebar-tab.active .pro-badge {
    background: var(--bg-dark);
    color: var(--bg-white);
}

.content-area {
    background: var(--bg-white);
    padding: 80px 60px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s;
}

.tab-panel.active {
    display: block;
}

.step-list {
    counter-reset: step;
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.step-list li {
    counter-increment: step;
    padding: 24px 24px 24px 80px;
    position: relative;
    margin-bottom: 16px;
    background: var(--bg-light);
    border-left: 6px solid var(--accent-orange);
    font-size: 18px;
    line-height: 1.7;
}

.step-list li::before {
    content: counter(step);
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--accent-orange);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'TASA Explorer';
    font-weight: 700;
    font-size: 22px;
}

.tip-box {
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: 30px;
    margin: 30px 0;
    border-left: 8px solid var(--accent-orange);
}

.tip-box h4 {
    font-family: 'TASA Explorer';
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-orange);
    margin-bottom: 16px;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1275px) {
    .burger-menu { display: flex; }
    nav ul { display: none; }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    h1 { font-size: 80px; }
    h2 { font-size: 56px; }
    h2.h2-large { font-size: 72px; }
    .feature-grid { grid-template-columns: 1fr; gap: 40px; }
    .two-col { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }

    .tab-content.active {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tab-text h3 {
        font-size: 40px;
    }

    .tab-button {
        font-size: 12px;
        padding: 16px 20px;
    }

    /* Help page responsive */
    .sidebar-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: relative;
        height: auto;
        top: 0;
        border-right: none;
        border-bottom: 4px solid var(--accent-orange);
    }

    .sidebar-tab {
        border-left: none;
        border-bottom: 4px solid transparent;
    }

    .sidebar-tab.active {
        border-left: none;
        border-bottom-color: var(--bg-white);
    }
}

@media (max-width: 768px) {
    nav .logo { font-size: 14px; }
    nav .logo .wp-badge {
        display: block;
        margin: 4px 0 0 0;
        font-size: 8px;
        padding: 2px 6px;
    }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-visual {
        min-height: 300px;
        padding: 100px 30px;
    }
    h1 { font-size: 56px; letter-spacing: 3px; }
    h2 { font-size: 44px; }
    h2.h2-large { font-size: 56px; }
    h2.h2-small { font-size: 40px; }
    section { padding: 80px 30px; }
    .section-large { padding: 80px 30px; }
    header { padding: 80px 30px; }
    .container { padding: 0 20px; }
    nav { padding: 0 20px; }
    .audience-grid { grid-template-columns: 1fr; }

    .tabs-nav {
        flex-wrap: nowrap;
        border-bottom: 2px solid var(--border-dark);
    }

    .tab-button {
        font-size: 11px;
        padding: 14px 16px;
        letter-spacing: 1px;
        margin-bottom: -2px;
        border-bottom: 2px solid transparent;
    }

    .tab-button.active {
        border-bottom-color: var(--accent-orange);
    }

    .tab-text h3 {
        font-size: 32px;
    }

    .tab-text p {
        font-size: 16px;
    }

    .tab-image {
        font-size: 18px;
    }

    /* Help page responsive */
    .content-area { padding: 60px 30px; }
    h2 { font-size: 36px; }
}
