/*
Theme Name: Zee SEO Agency
Theme URI: https://zeeseoagency.com
Author: Zee SEO Agency
Description: Custom theme for Zee SEO Agency - White-Label Link Building
Version: 1.0.0
License: GPL v2 or later
Text Domain: zee-seo
*/

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #FFFFFF;
    color: #1A1A2E;
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================
   COLORS
   ============================================ */
:root {
    --primary-dark: #0A1628;
    --primary-navy: #1A2A4A;
    --primary-medium: #2A3A6A;
    --accent-gold: #C9A84C;
    --accent-gold-light: #DFC86A;
    --text-white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-muted: #6B7A8F;
    --bg-light: #F8FAFC;
    --border-light: #E8EDF2;
    --shadow: 0 4px 24px rgba(10, 22, 40, 0.08);
    --shadow-hover: 0 8px 40px rgba(10, 22, 40, 0.14);
    --transition: all 0.3s ease;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: var(--accent-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 168, 76, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 36px;
    font-size: 17px;
}

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

.btn-dark:hover {
    background: var(--primary-navy);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
}

.btn-outline-gold:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
}

.btn-white-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-white-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    min-height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
    color: var(--text-white);
    flex-shrink: 0;
}

.logo-icon {
    color: var(--accent-gold);
}

.logo-text {
    color: var(--text-white);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 4px 0;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--text-white);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.nav-links li a:hover::after,
.nav-links li a.active::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta .btn {
    padding: 10px 20px;
    font-size: 13px;
}

.nav-cta .btn-secondary {
    border-color: rgba(255, 255, 255, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 140px 0 80px;
    background: var(--primary-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.06), transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--text-white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    color: var(--accent-gold);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-trust span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-trust span i {
    color: var(--accent-gold);
    font-size: 14px;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.workflow-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 36px 28px;
    width: 100%;
    max-width: 420px;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    transition: var(--transition);
}

.workflow-step:hover {
    background: rgba(255, 255, 255, 0.06);
}

.workflow-step.highlight-step {
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.step-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 10px;
    color: var(--accent-gold);
    font-size: 16px;
    flex-shrink: 0;
}

.workflow-step.highlight-step .step-icon {
    background: rgba(201, 168, 76, 0.2);
}

.step-label {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 15px;
}

.workflow-arrow {
    text-align: center;
    color: rgba(255, 255, 255, 0.15);
    font-size: 18px;
    padding: 2px 0;
}

/* ============================================
   TRUST / VALUE STRIP
   ============================================ */
.trust-strip {
    padding: 60px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

.trust-strip-headline {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.trust-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--text-white);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.trust-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.trust-card i {
    font-size: 32px;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.trust-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.trust-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
    padding: 100px 0;
    background: var(--text-white);
}

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

.problem-content h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.problem-content h2 .highlight {
    color: var(--accent-gold);
}

.problem-content p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.problem-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    margin-bottom: 28px;
}

.problem-list li {
    font-size: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}

.problem-list li i {
    color: #E74C3C;
    font-size: 14px;
}

.problem-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 24px 28px;
    border: 1px solid var(--border-light);
}

.process-card.without {
    border-left: 4px solid #E74C3C;
}

.process-card.with {
    border-left: 4px solid var(--accent-gold);
    background: rgba(201, 168, 76, 0.04);
}

.process-card h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.process-card.without h4 { color: #E74C3C; }
.process-card.with h4 { color: var(--accent-gold); }

.process-steps {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.process-step {
    background: var(--text-white);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

.process-arrow {
    color: var(--text-muted);
    font-size: 14px;
}

.process-card.with .process-step {
    border-color: rgba(201, 168, 76, 0.2);
    background: rgba(201, 168, 76, 0.06);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(201, 168, 76, 0.1);
    color: var(--accent-gold);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.services-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.services-header h2 .highlight { color: var(--accent-gold); }

.services-header p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

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

.service-card {
    background: var(--text-white);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

.service-card .service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 14px;
    color: var(--accent-gold);
    font-size: 24px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-card .service-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-card .service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.service-card .service-features span {
    font-size: 12px;
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 50px;
    color: var(--text-muted);
    font-weight: 500;
}

.service-card .service-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.service-card .service-cta:hover {
    gap: 14px;
    color: var(--accent-gold-light);
}

.service-card.bulk-card {
    border-color: var(--accent-gold);
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.03), var(--text-white));
}

.service-card.bulk-card .bulk-pricing {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 12px 0 16px;
}

.service-card.bulk-card .bulk-pricing span {
    padding: 4px 14px;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-dark);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-section {
    padding: 100px 0;
    background: var(--text-white);
}

.how-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.how-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.how-header h2 .highlight { color: var(--accent-gold); }

.how-header p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
}

.how-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-light);
    z-index: 0;
}

.step-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--bg-light);
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--accent-gold);
    margin: 0 auto 16px;
    transition: var(--transition);
}

.step-item:hover .step-number {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
    transform: scale(1.05);
}

.step-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.step-item p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 180px;
    margin: 0 auto;
}

.how-cta-wrapper { text-align: center; }

/* ============================================
   AGENCY FOCUS
   ============================================ */
.agency-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.agency-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.agency-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.agency-header h2 .highlight { color: var(--accent-gold); }

.agency-header p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

.agency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.agency-card {
    background: var(--text-white);
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    text-align: center;
}

.agency-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.agency-card .card-number {
    font-size: 48px;
    font-weight: 900;
    color: rgba(201, 168, 76, 0.12);
    position: absolute;
    top: 12px;
    right: 20px;
    line-height: 1;
}

.agency-card .card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 16px;
    color: var(--accent-gold);
    font-size: 28px;
    margin: 0 auto 16px;
}

.agency-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.agency-card .agency-role {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.agency-card ul { text-align: left; padding: 0 8px; }

.agency-card ul li {
    font-size: 14px;
    color: var(--text-muted);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.agency-card ul li i {
    color: var(--accent-gold);
    font-size: 12px;
    width: 16px;
}

.agency-card.highlight-card {
    border-color: var(--accent-gold);
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.04), var(--text-white));
}

.agency-card.highlight-card .card-icon { background: rgba(201, 168, 76, 0.2); }

.agency-cta-wrapper { text-align: center; }
.agency-cta-wrapper .btn { font-size: 17px; padding: 16px 40px; }

/* ============================================
   BULK SECTION
   ============================================ */
.bulk-section {
    padding: 100px 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.bulk-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.04), transparent 70%);
    border-radius: 50%;
}

.bulk-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 1;
}

.bulk-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 12px;
}

.bulk-header h2 .highlight { color: var(--accent-gold); }

.bulk-header p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.bulk-panel {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 36px;
    position: relative;
    z-index: 1;
}

.bulk-filters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 32px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.filter-options .opt {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.filter-options .opt:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.3);
    color: var(--text-white);
}

.filter-options .opt.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
}

.bulk-cta-wrapper {
    text-align: center;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bulk-cta-wrapper .btn { font-size: 17px; padding: 16px 48px; }

.bulk-note {
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 16px;
}

/* ============================================
   TRIAL SECTION
   ============================================ */
.trial-section {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.trial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.trial-content .trial-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(201, 168, 76, 0.1);
    color: var(--accent-gold);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.trial-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.15;
}

.trial-content h2 .highlight { color: var(--accent-gold); }

.trial-content .trial-desc {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.trial-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px;
    margin-bottom: 32px;
}

.trial-benefits li {
    font-size: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
}

.trial-benefits li i { color: var(--accent-gold); font-size: 16px; }

.trial-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.trial-visual { display: flex; justify-content: center; align-items: center; }

.trial-card {
    background: var(--text-white);
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 420px;
    text-align: center;
    transition: var(--transition);
}

.trial-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.trial-card .trial-number {
    font-size: 64px;
    font-weight: 900;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 4px;
}

.trial-card .trial-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.trial-card .trial-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.trial-card .trial-divider {
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.trial-card .trial-features { text-align: left; }

.trial-card .trial-features li {
    font-size: 14px;
    color: var(--text-dark);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-light);
}

.trial-card .trial-features li:last-child { border-bottom: none; }

.trial-card .trial-features li i {
    color: var(--accent-gold);
    font-size: 14px;
    width: 20px;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
    padding: 100px 0;
    background: var(--text-white);
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.pricing-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.pricing-header h2 .highlight { color: var(--accent-gold); }

.pricing-header p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.pricing-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 32px 24px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.pricing-card .pricing-name {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin-bottom: 4px;
}

.pricing-card .pricing-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

.pricing-card .pricing-number span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-card .pricing-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin: 8px 0 20px;
    line-height: 1.5;
}

.pricing-card .pricing-btn { width: 100%; justify-content: center; }

.pricing-card.featured {
    border-color: var(--accent-gold);
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.04), var(--bg-light));
}

.pricing-card.featured .pricing-number { color: var(--accent-gold); }

.pricing-note {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 24px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.pricing-note p { font-size: 14px; color: var(--text-muted); }
.pricing-note p i { color: var(--accent-gold); margin-right: 8px; }

/* ============================================
   WHY US
   ============================================ */
.why-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.why-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.why-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.why-header h2 .highlight { color: var(--accent-gold); }

.why-header p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.why-card {
    background: var(--text-white);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.why-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.why-card .why-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 12px;
    color: var(--accent-gold);
    font-size: 20px;
    margin-bottom: 12px;
}

.why-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.quality-section {
    background: var(--text-white);
    border-radius: 20px;
    padding: 48px 40px;
    border: 1px solid var(--border-light);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.quality-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.quality-content h3 .highlight { color: var(--accent-gold); }

.quality-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.quality-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quality-tags span {
    padding: 6px 16px;
    background: var(--bg-light);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

.quality-note {
    background: rgba(201, 168, 76, 0.06);
    border-left: 4px solid var(--accent-gold);
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 16px;
}

.quality-note p { font-size: 14px; color: var(--text-muted); margin-bottom: 0; }
.quality-note p i { color: var(--accent-gold); margin-right: 8px; }

.quality-visual { display: flex; justify-content: center; }

.quality-check-list {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 28px 32px;
    width: 100%;
    max-width: 380px;
    border: 1px solid var(--border-light);
}

.quality-check-list li {
    font-size: 14px;
    color: var(--text-dark);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--border-light);
}

.quality-check-list li:last-child { border-bottom: none; }

.quality-check-list li i {
    color: var(--accent-gold);
    font-size: 16px;
    width: 24px;
}

/* ============================================
   WHITE-LABEL SECTION
   ============================================ */
.whitelabel-section {
    padding: 100px 0;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.whitelabel-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.04), transparent 70%);
    border-radius: 50%;
}

.whitelabel-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
    position: relative;
    z-index: 1;
}

.whitelabel-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 12px;
}

.whitelabel-header h2 .highlight { color: var(--accent-gold); }

.whitelabel-header p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.whitelabel-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}

.flow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.flow-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 24px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.flow-item i { color: var(--accent-gold); font-size: 18px; }

.flow-item.highlight-flow {
    background: rgba(201, 168, 76, 0.12);
    border-color: rgba(201, 168, 76, 0.25);
    color: var(--accent-gold);
    font-weight: 600;
}

.flow-arrow-down {
    color: rgba(255, 255, 255, 0.15);
    font-size: 20px;
}

.flow-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
}

.whitelabel-cta-wrapper {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ============================================
   IDEAL CUSTOMER
   ============================================ */
.ideal-section {
    padding: 100px 0;
    background: var(--text-white);
}

.ideal-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.ideal-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.ideal-header h2 .highlight { color: var(--accent-gold); }

.ideal-header p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

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

.ideal-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    text-align: center;
}

.ideal-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.ideal-card .ideal-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 14px;
    color: var(--accent-gold);
    font-size: 24px;
    margin: 0 auto 12px;
}

.ideal-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.ideal-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.faq-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 56px;
}

.faq-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.faq-header h2 .highlight { color: var(--accent-gold); }

.faq-header p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--text-white);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { border-color: rgba(201, 168, 76, 0.3); }

.faq-item.active {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover { color: var(--accent-gold); }

.faq-question .faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    transition: var(--transition);
    font-size: 14px;
}

.faq-item.active .faq-question .faq-icon { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer-inner {
    padding: 0 24px 20px 24px;
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: 100px 0 80px;
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.05), transparent 70%);
    border-radius: 50%;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta .cta-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(201, 168, 76, 0.15);
    color: var(--accent-gold);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.final-cta h2 {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
    line-height: 1.15;
}

.final-cta h2 .highlight { color: var(--accent-gold); }

.final-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 36px;
}

.final-cta .cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    padding: 120px 0 80px;
    background: var(--bg-light);
}

.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.contact-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-header h2 .highlight { color: var(--accent-gold); }

.contact-header p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info {
    background: var(--text-white);
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
}

.contact-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-info .info-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.contact-info .info-item:last-child { border-bottom: none; }

.contact-info .info-item .info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 10px;
    color: var(--accent-gold);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info .info-item .info-text {
    font-size: 14px;
    color: var(--text-muted);
}

.contact-info .info-item .info-text strong {
    color: var(--text-dark);
    display: block;
    font-weight: 600;
}

.contact-info .info-item .info-text a {
    color: var(--accent-gold);
    font-weight: 500;
    transition: var(--transition);
}

.contact-info .info-item .info-text a:hover { color: var(--accent-gold-light); }

.contact-info .quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.contact-info .quick-links a {
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.contact-info .quick-links a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

.contact-form-wrapper {
    background: var(--text-white);
    border-radius: 20px;
    padding: 40px 36px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
}

.contact-form-wrapper .form-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-form-wrapper .form-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-group.full-width { grid-column: 1 / -1; }

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group label .required { color: #E74C3C; margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition);
    background: var(--bg-light);
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.1);
    background: var(--text-white);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-submit-row {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.form-submit-row .form-note {
    font-size: 13px;
    color: var(--text-muted);
}

.form-submit-row .form-note i { color: var(--accent-gold); }

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show { display: block; animation: fadeInUp 0.5s ease; }

.form-success .success-icon {
    width: 72px;
    height: 72px;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--accent-gold);
    font-size: 32px;
}

.form-success h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-success p { font-size: 16px; color: var(--text-muted); line-height: 1.7; max-width: 450px; margin: 0 auto; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   AGENCY PARTNER
   ============================================ */
.agency-partner-section {
    padding: 120px 0 80px;
    background: var(--bg-light);
}

.partner-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px;
}

.partner-hero h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.15;
}

.partner-hero h1 .highlight { color: var(--accent-gold); }

.partner-hero p { font-size: 18px; color: var(--text-muted); line-height: 1.7; }

.partner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.partner-card {
    background: var(--text-white);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.partner-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }

.partner-card .partner-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 14px;
    color: var(--accent-gold);
    font-size: 24px;
    margin-bottom: 14px;
}

.partner-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.partner-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.partner-card ul { margin-top: 12px; }

.partner-card ul li {
    font-size: 14px;
    color: var(--text-dark);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.partner-card ul li i { color: var(--accent-gold); font-size: 12px; width: 18px; }

.partner-cta-wrapper { text-align: center; padding: 40px 0; }
.partner-cta-wrapper .btn { font-size: 17px; padding: 16px 48px; }

/* ============================================
   ABOUT
   ============================================ */
.about-section {
    padding: 120px 0 80px;
    background: var(--text-white);
}

.about-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 56px;
}

.about-hero h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.15;
}

.about-hero h1 .highlight { color: var(--accent-gold); }

.about-hero p { font-size: 18px; color: var(--text-muted); line-height: 1.7; }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.about-text h2 .highlight { color: var(--accent-gold); }

.about-text p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }

.about-visual { display: flex; justify-content: center; align-items: center; }

.about-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid var(--border-light);
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.about-card .about-number { font-size: 48px; font-weight: 900; color: var(--accent-gold); line-height: 1; }
.about-card .about-label { font-size: 16px; font-weight: 600; color: var(--text-dark); margin: 8px 0 4px; }
.about-card .about-desc { font-size: 14px; color: var(--text-muted); }
.about-card .about-divider { width: 60px; height: 3px; background: var(--accent-gold); margin: 16px auto; border-radius: 2px; }

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.about-value {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 24px 20px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: var(--transition);
}

.about-value:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }

.about-value .value-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.1);
    border-radius: 12px;
    color: var(--accent-gold);
    font-size: 20px;
    margin: 0 auto 10px;
}

.about-value h4 { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.about-value p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   RESOURCES / BLOG
   ============================================ */
.resources-section {
    padding: 120px 0 80px;
    background: var(--bg-light);
}

.resources-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.resources-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.resources-header h2 .highlight { color: var(--accent-gold); }

.resources-header p { font-size: 17px; color: var(--text-muted); line-height: 1.7; }

.resources-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.resources-categories .cat-btn {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    background: var(--text-white);
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.resources-categories .cat-btn:hover,
.resources-categories .cat-btn.active {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-color: var(--accent-gold);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.blog-card {
    background: var(--text-white);
    border-radius: 20px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-6px); }

.blog-card .blog-image {
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--accent-gold);
    border-bottom: 1px solid var(--border-light);
}

.blog-card .blog-body { padding: 24px 24px 28px; }

.blog-card .blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.blog-card .blog-meta .blog-category {
    background: rgba(201, 168, 76, 0.1);
    color: var(--accent-gold);
    padding: 2px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog-card h3 a:hover { color: var(--accent-gold); }

.blog-card .blog-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }

.blog-card .blog-readmore {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.blog-card .blog-readmore:hover { gap: 12px; color: var(--accent-gold-light); }

.blog-pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

.blog-pagination .page-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    background: var(--text-white);
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

.blog-pagination .page-btn:hover { border-color: var(--accent-gold); color: var(--accent-gold); }
.blog-pagination .page-btn.active { background: var(--accent-gold); border-color: var(--accent-gold); color: var(--primary-dark); }

.blog-post-detail {
    display: none;
    background: var(--text-white);
    border-radius: 24px;
    padding: 48px 40px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-detail.active { display: block; animation: fadeInUp 0.5s ease; }

.blog-post-detail .post-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    border: none;
    background: none;
}

.blog-post-detail .post-back:hover { color: var(--accent-gold); }

.blog-post-detail .post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.blog-post-detail .post-meta .post-category {
    background: rgba(201, 168, 76, 0.1);
    color: var(--accent-gold);
    padding: 4px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-detail h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.blog-post-detail .post-content {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
}

.blog-post-detail .post-content p { margin-bottom: 16px; }

.blog-post-detail .post-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 24px 0 12px;
}

.blog-post-detail .post-content .highlight-box {
    background: rgba(201, 168, 76, 0.06);
    border-left: 4px solid var(--accent-gold);
    padding: 16px 20px;
    border-radius: 8px;
    margin: 20px 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 40px 0;
    background: var(--primary-dark);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
    border-color: var(--accent-gold);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-cta { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-visual { order: -1; }
    .workflow-card { max-width: 100%; }
    .hero-title { font-size: 38px; }
    .problem-grid { grid-template-columns: 1fr; }
    .problem-content { text-align: center; }
    .problem-list { justify-items: center; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .how-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .how-steps::before { display: none; }
    .agency-grid { grid-template-columns: repeat(2, 1fr); }
    .bulk-filters { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .trial-grid { grid-template-columns: 1fr; text-align: center; }
    .trial-cta-group { justify-content: center; }
    .trial-benefits { justify-items: center; }
    .trial-visual { order: -1; }
    .trial-card { max-width: 100%; }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .quality-section { grid-template-columns: 1fr; text-align: center; }
    .quality-tags { justify-content: center; }
    .quality-check-list { max-width: 100%; }
    .ideal-grid { grid-template-columns: repeat(2, 1fr); }
    .flow-row { gap: 10px; }
    .flow-item { padding: 10px 16px; font-size: 13px; }
    .final-cta h2 { font-size: 36px; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .contact-info { order: 2; }
    .form-row { grid-template-columns: 1fr; }
    .partner-content { grid-template-columns: 1fr 1fr; }
    .partner-hero h1 { font-size: 36px; }
    .about-hero h1 { font-size: 36px; }
    .about-grid { grid-template-columns: 1fr; text-align: center; }
    .about-values { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        transform: translateY(-120%);
        transition: var(--transition);
        opacity: 0;
        pointer-events: none;
    }
    .nav-links.active { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav-links li a { font-size: 16px; padding: 8px 0; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }
    .hero { padding: 120px 0 60px; min-height: auto; }
    .hero-title { font-size: 30px; }
    .hero-description { font-size: 16px; }
    .hero-cta { flex-direction: column; align-items: center; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .hero-trust { flex-direction: column; align-items: center; gap: 12px; }
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .trust-card { padding: 16px; }
    .workflow-card { padding: 24px 16px; }
    .problem-content h2 { font-size: 30px; }
    .problem-list { grid-template-columns: 1fr; }
    .process-steps { flex-direction: column; align-items: stretch; }
    .process-arrow { transform: rotate(90deg); text-align: center; }
    .services-grid { grid-template-columns: 1fr; gap: 20px; }
    .services-header h2 { font-size: 30px; }
    .how-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
    .agency-grid { grid-template-columns: 1fr; gap: 20px; }
    .agency-header h2 { font-size: 30px; }
    .agency-card .card-number { font-size: 36px; }
    .bulk-section { padding: 60px 0; }
    .bulk-header h2 { font-size: 30px; }
    .bulk-panel { padding: 24px 18px; }
    .bulk-filters { grid-template-columns: 1fr; gap: 18px; }
    .filter-options .opt { font-size: 12px; padding: 5px 10px; }
    .bulk-cta-wrapper .btn { width: 100%; justify-content: center; }
    .trial-section { padding: 60px 0; }
    .trial-content h2 { font-size: 30px; }
    .trial-benefits { grid-template-columns: 1fr; }
    .trial-cta-group { flex-direction: column; align-items: center; }
    .trial-cta-group .btn { width: 100%; justify-content: center; }
    .trial-card { padding: 28px 20px; }
    .trial-card .trial-number { font-size: 48px; }
    .pricing-section { padding: 60px 0; }
    .pricing-header h2 { font-size: 30px; }
    .pricing-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .pricing-card { padding: 24px 16px; }
    .pricing-card .pricing-number { font-size: 28px; }
    .why-section { padding: 60px 0; }
    .why-header h2 { font-size: 30px; }
    .why-grid { grid-template-columns: 1fr; gap: 16px; }
    .quality-section { padding: 32px 24px; }
    .quality-content h3 { font-size: 24px; }
    .whitelabel-section { padding: 60px 0; }
    .whitelabel-header h2 { font-size: 30px; }
    .flow-row { flex-direction: column; gap: 8px; }
    .flow-arrow-down { transform: rotate(90deg); }
    .ideal-section { padding: 60px 0; }
    .ideal-header h2 { font-size: 30px; }
    .ideal-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .faq-section { padding: 60px 0; }
    .faq-header h2 { font-size: 30px; }
    .faq-question { font-size: 15px; padding: 16px 18px; }
    .faq-answer-inner { font-size: 14px; padding: 0 18px 16px 18px; }
    .final-cta { padding: 60px 0 50px; }
    .final-cta h2 { font-size: 30px; }
    .final-cta p { font-size: 16px; }
    .final-cta .cta-group { flex-direction: column; align-items: center; }
    .final-cta .cta-group .btn { width: 100%; justify-content: center; }
    .contact-section { padding: 100px 0 60px; }
    .contact-header h2 { font-size: 30px; }
    .contact-form-wrapper { padding: 24px 18px; }
    .contact-info { padding: 24px 18px; }
    .form-submit-row { flex-direction: column; align-items: stretch; }
    .form-submit-row .btn { width: 100%; justify-content: center; }
    .agency-partner-section { padding: 100px 0 60px; }
    .partner-hero h1 { font-size: 30px; }
    .partner-content { grid-template-columns: 1fr; gap: 20px; }
    .partner-card { padding: 24px 20px; }
    .about-section { padding: 100px 0 60px; }
    .about-hero h1 { font-size: 30px; }
    .about-grid { gap: 32px; }
    .about-text h2 { font-size: 26px; }
    .about-values { grid-template-columns: 1fr 1fr; gap: 16px; }
    .about-card { padding: 28px 20px; }
    .about-card .about-number { font-size: 36px; }
    .resources-section { padding: 100px 0 60px; }
    .resources-header h2 { font-size: 30px; }
    .blog-grid { grid-template-columns: 1fr; gap: 20px; }
    .blog-card .blog-image { height: 160px; }
    .blog-post-detail { padding: 24px 18px; }
    .blog-post-detail h2 { font-size: 24px; }
    .resources-categories .cat-btn { padding: 6px 14px; font-size: 12px; }
}

@media (max-width: 480px) {
    .trust-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 26px; }
    .logo-text { font-size: 13px; }
    .filter-options .opt.full-width { flex: 1 1 100%; }
    .how-steps { grid-template-columns: 1fr; gap: 28px; }
    .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
    .ideal-grid { grid-template-columns: 1fr; gap: 16px; }
    .final-cta h2 { font-size: 26px; }
    .partner-hero h1 { font-size: 26px; }
    .about-hero h1 { font-size: 26px; }
    .about-values { grid-template-columns: 1fr; gap: 16px; }
    .blog-card .blog-body { padding: 18px 16px 22px; }
    .blog-card h3 { font-size: 16px; }
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
        font-size: 28px;
    }
}