/* ========================================
   NY Cannabis Marketing - Custom Styles
   Cannabis Marketing & Compliance Division of W Marketing Group
   ======================================== */

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    /* Cannabis-inspired color palette matching W logo */
    --primary-green: #4CAF50;
    --accent-yellow: #FFC107;
    --accent-orange: #FF9800;
    --accent-blue: #00BCD4;
    --dark-forest: #1B5E20;
    --light-green: #81C784;
    
    /* Brand colors */
    --brand-black: #0a0a0a;
    --brand-charcoal: #1a1a1a;
    --brand-gray: #2a2a2a;
    --text-light: #e0e0e0;
    --text-muted: #9e9e9e;
    
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Archivo', sans-serif;
    
    /* Spacing */
    --section-padding: 6rem 0;
    --container-padding: 2rem;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--brand-black);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 2px solid var(--primary-green);
    transition: all 0.3s ease;
}

.navbar-brand {
    padding: 0;
}

.logo-container {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--text-light);
}

.cannabis-accent {
    color: var(--primary-green);
    margin: 0 0.25rem;
}

.logo-subtext {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: -5px;
}

.navbar-nav .nav-link {
    color: var(--text-light);
    font-weight: 500;
    margin: 0 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.nav-link.cta-nav {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-forest));
    padding: 0.5rem 1.5rem !important;
    border-radius: 25px;
    margin-left: 1rem;
}

.nav-link.cta-nav:hover {
    background: linear-gradient(135deg, var(--dark-forest), var(--primary-green));
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a2a1a 50%, #0a0a0a 100%);
    padding-top: 100px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 193, 7, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grain" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="100" height="100" fill="%230a0a0a"/><circle cx="20" cy="20" r="1" fill="%234CAF50" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%234CAF50" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%234CAF50" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(76, 175, 80, 0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 2rem;
}

.title-line-1 {
    display: block;
    color: var(--text-light);
    letter-spacing: 3px;
}

.title-line-2 {
    display: block;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--primary-green), transparent);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-forest));
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
    background: linear-gradient(135deg, var(--dark-forest), var(--primary-green));
}

.btn-outline-light {
    border: 2px solid var(--text-light);
    padding: 1rem 2.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--text-light);
    color: var(--brand-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary-green), transparent);
    margin: 0.5rem auto 0;
}

/* ========================================

   BOARD APPROVAL SECTION
   ======================================== */
.board-approval-section {
    padding: var(--section-padding);
    background: var(--brand-charcoal);
    position: relative;
}

.approval-card {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(27, 94, 32, 0.05));
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.approval-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.approval-card h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.approval-card .lead {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.approval-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left;
}

.approval-item {
    padding: 1.5rem;
    background: rgba(10, 10, 10, 0.5);
    border-radius: 10px;
    border-left: 4px solid var(--primary-green);
}

.approval-item strong {
    display: block;
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.approval-item p {
    color: var(--text-muted);
    margin: 0;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services-section {
    padding: var(--section-padding);
    background: var(--brand-black);
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-light), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.service-card {
    background: var(--brand-charcoal);
    border: 2px solid rgba(76, 175, 80, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.2);
}

.featured-service {
    border-color: var(--primary-green);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(27, 94, 32, 0.05));
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.service-tagline {
    font-size: 0.95rem;
    color: var(--accent-yellow);
    font-style: italic;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

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

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.tag {
    background: rgba(76, 175, 80, 0.2);
    color: var(--primary-green);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--primary-green);
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process-section {
    padding: var(--section-padding);
    background: var(--brand-charcoal);
    position: relative;
}

.process-step {
    background: var(--brand-black);
    border: 2px solid rgba(76, 175, 80, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
}

.step-number {
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(76, 175, 80, 0.2);
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    line-height: 1;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.process-step p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.process-detail {
    background: rgba(76, 175, 80, 0.05);
    border-left: 3px solid var(--primary-green);
    padding: 1rem 1.5rem;
    border-radius: 5px;
}

.process-detail strong {
    display: block;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.process-detail ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-detail li {
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--text-muted);
}

.process-detail li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-green);
}

/* ========================================
   COMPLIANCE SECTION
   ======================================== */
.compliance-section {
    padding: var(--section-padding);
    background: var(--brand-black);
}

.compliance-content {
    padding-right: 2rem;
}

.violation-example {
    background: rgba(255, 152, 0, 0.1);
    border: 2px solid var(--accent-orange);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.violation-example h4 {
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.violation-example ul {
    margin: 1rem 0;
}

.violation-example li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.violation-cost {
    color: var(--accent-orange);
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 1rem;
}

.compliance-checklist {
    background: var(--brand-charcoal);
    border: 2px solid rgba(76, 175, 80, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    position: sticky;
    top: 100px;
}

.compliance-checklist h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.checklist-group {
    margin-bottom: 2rem;
}

.checklist-group h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.25rem;
}

.checklist.prohibited li::before {
    content: '✗';
    color: var(--accent-orange);
}

.checklist li:last-child {
    border-bottom: none;
}

.regulation-reference {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(76, 175, 80, 0.2);
}

/* ========================================
   RESULTS SECTION
   ======================================== */
.results-section {
    padding: var(--section-padding);
    background: var(--brand-charcoal);
}

.result-stat {
    text-align: center;
    padding: 2rem;
    background: var(--brand-black);
    border: 2px solid rgba(76, 175, 80, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.result-stat:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
}

.result-number {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.result-label {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.case-study-highlight {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(27, 94, 32, 0.05));
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 3rem;
}

.case-study-highlight h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.success-metrics {
    list-style: none;
    padding: 0;
}

.success-metrics li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.success-metrics li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
    font-size: 1.25rem;
}

.success-metrics li:last-child {
    border-bottom: none;
}

.campaign-highlight-box {
    background: var(--brand-black);
    border: 3px solid var(--primary-green);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}

.highlight-stat {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 1rem;
}

/* ========================================
   WHAT WORKS SECTION
   ======================================== */
.works-section {
    padding: var(--section-padding);
    background: var(--brand-black);
}

.works-card {
    background: var(--brand-charcoal);
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
}

.works-card-approved {
    border: 2px solid var(--primary-green);
}

.works-card-prohibited {
    border: 2px solid var(--accent-orange);
}

.works-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.works-card-approved h3 {
    color: var(--primary-green);
}

.works-card-prohibited h3 {
    color: var(--accent-orange);
}

.works-list {
    list-style: none;
    padding: 0;
}

.works-list li {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

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

.works-list strong {
    display: block;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.works-list p {
    color: var(--text-muted);
    margin: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--dark-forest), var(--brand-black));
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(76, 175, 80, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.contact-options {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.contact-method {
    text-align: center;
}

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

.contact-method h4 {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-link {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--accent-yellow);
    text-decoration: underline;
}

.contact-person {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 15px;
}

.service-area {
    color: var(--text-muted);
    font-style: italic;
    margin-top: 2rem;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: var(--section-padding);
    background: var(--brand-charcoal);
}

.expertise-list {
    margin: 2rem 0;
}

.expertise-item {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-green);
}

.expertise-item h4 {
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

.expertise-item p {
    color: var(--text-muted);
    margin: 0;
}

.about-highlight {
    background: var(--brand-black);
    border: 2px solid rgba(76, 175, 80, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
}

.about-highlight h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.benefit-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.25rem;
}

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

.company-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(76, 175, 80, 0.2);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--brand-black);
    padding: 3rem 0 2rem;
    border-top: 2px solid var(--primary-green);
}

.footer h5 {
    color: var(--primary-green);
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    padding: 0.5rem 0;
}

.footer-links a,
.footer-contact a {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer hr {
    border-color: rgba(76, 175, 80, 0.2);
    margin: 2rem 0;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.footer-copyright a {
    color: var(--primary-green);
    font-weight: 600;
}

.footer-copyright a:hover {
    color: var(--accent-yellow);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 10px;
        border: 1px solid rgba(76, 175, 80, 0.2);
    }
    
    .navbar-nav .nav-link {
        margin: 0.5rem 0;
    }
    
    .nav-link.cta-nav {
        margin: 1rem 0;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .compliance-checklist {
        position: static;
        margin-top: 2rem;
    }
    
    .approval-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 4rem 0;
    }
    
    .logo-text {
        font-size: 1.4rem;
    }
    
    .logo-subtext {
        font-size: 0.55rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .result-number {
        font-size: 3rem;
    }
    
    .contact-options {
        flex-direction: column;
        gap: 2rem;
    }
    
    .service-card,
    .process-step {
        padding: 2rem;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-muted {
    color: var(--text-muted) !important;
}

.border-gradient {
    border-image: linear-gradient(135deg, var(--primary-green), var(--accent-yellow)) 1;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
    padding: var(--section-padding);
    background: var(--brand-black);
}

.pricing-card {
    background: var(--brand-charcoal);
    border: 2px solid rgba(76, 175, 80, 0.2);
    border-radius: 20px;
    padding: 0;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.2);
}

.pricing-card-featured {
    border-color: var(--primary-green);
    border-width: 3px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05), rgba(27, 94, 32, 0.05));
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
    color: var(--brand-black);
    padding: 5px 40px;
    font-size: 0.85rem;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 3px 10px rgba(255, 193, 7, 0.3);
}

.pricing-header {
    background: rgba(76, 175, 80, 0.1);
    padding: 2.5rem 2rem;
    border-bottom: 2px solid rgba(76, 175, 80, 0.2);
}

.pricing-card-featured .pricing-header {
    background: rgba(76, 175, 80, 0.2);
    border-bottom-color: var(--primary-green);
}

.pricing-header h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.pricing-tagline {
    color: var(--text-muted);
    margin: 0;
    font-style: italic;
}

.pricing-body {
    padding: 2.5rem 2rem;
}

.pricing-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.pricing-body h4 {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-light);
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.25rem;
}

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

.pricing-note {
    background: rgba(76, 175, 80, 0.05);
    border-left: 3px solid var(--primary-green);
    padding: 1.25rem;
    border-radius: 5px;
    margin: 2rem 0;
}

.pricing-note strong {
    display: block;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.pricing-note p {
    margin: 0;
    color: var(--text-muted);
}

.pricing-investment {
    text-align: center;
    padding: 1.5rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    margin: 2rem 0;
}

.pricing-investment p {
    margin: 0.25rem 0;
}

.pricing-investment strong {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.retainer-benefits {
    background: rgba(255, 193, 7, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.3);
    padding: 1.25rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.retainer-benefits strong {
    display: block;
    color: var(--accent-yellow);
    margin-bottom: 0.75rem;
}

.retainer-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.retainer-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.retainer-benefits li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
}

.pricing-footer {
    background: rgba(76, 175, 80, 0.1);
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 15px;
    padding: 2.5rem;
}

.pricing-footer h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.pricing-footer p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* ========================================
   CONTACT FORM
   ======================================== */
.contact-form-container {
    background: var(--brand-charcoal);
    border: 2px solid rgba(76, 175, 80, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
}

.contact-form-container h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control {
    width: 100%;
    padding: 0.85rem 1.25rem;
    background: var(--brand-black);
    border: 2px solid rgba(76, 175, 80, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234CAF50' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

select.form-control option {
    background: var(--brand-charcoal);
    color: var(--text-light);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form-disclaimer {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: center;
    line-height: 1.5;
}

.form-success {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-forest));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.form-success h4 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Update CTA section for two-column layout */
.cta-section .contact-options {
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

/* ========================================
   FORM RESPONSIVE
   ======================================== */
@media (max-width: 767px) {
    .pricing-card {
        margin-bottom: 2rem;
    }
    
    .pricing-badge {
        font-size: 0.75rem;
        padding: 5px 35px;
    }
    
    .pricing-header {
        padding: 2rem 1.5rem;
    }
    
    .pricing-body {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
}

/* Form error states */
.form-control.error {
    border-color: var(--accent-orange);
    animation: shake 0.3s ease;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-control.error:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.1);
}


/* ========================================
   GUIDE DOWNLOAD CTA (HERO)
   ======================================== */
.guide-download-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(255, 193, 7, 0.05));
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 1.2s ease-out;
}

.guide-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.guide-content {
    flex: 1;
}

.guide-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.guide-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

#brevo-guide-form {
    margin-top: 1rem;
}

#brevo-guide-form .btn-success {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
    border: none;
    color: var(--brand-black);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

#brevo-guide-form .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

/* ========================================
   NEWSLETTER SIGNUP (FOOTER)
   ======================================== */
.newsletter-signup {
    background: var(--brand-charcoal);
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.newsletter-header h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.newsletter-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.newsletter-placeholder {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-placeholder .form-control {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    background: var(--brand-black);
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
}

.newsletter-placeholder .btn-primary {
    padding: 1rem 2.5rem;
    border-radius: 10px;
    white-space: nowrap;
}

.newsletter-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    margin-bottom: 0;
}

/* Brevo form overrides - style their forms to match your design */
#brevo-guide-form iframe,
#brevo-newsletter-form iframe {
    max-width: 100%;
}

/* When Brevo forms are embedded, you may need these overrides */
.sib-form {
    background: transparent !important;
}

.sib-form__declaration {
    display: none !important;
}

/* ========================================
   RESPONSIVE - GUIDE & NEWSLETTER
   ======================================== */
@media (max-width: 767px) {
    .guide-download-cta {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .guide-icon {
        font-size: 3rem;
    }
    
    .guide-content h3 {
        font-size: 1.5rem;
    }
    
    .newsletter-signup {
        padding: 2rem 1.5rem;
    }
    
    .newsletter-header h3 {
        font-size: 2rem;
    }
    
    .newsletter-placeholder {
        flex-direction: column;
    }
    
    .newsletter-placeholder .form-control,
    .newsletter-placeholder .btn-primary {
        width: 100%;
    }
}

/* ========================================
   MODAL STYLES
   ======================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--brand-charcoal);
    border: 2px solid var(--primary-green);
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
    box-shadow: 0 20px 60px rgba(76, 175, 80, 0.3);
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary-green);
    color: var(--brand-black);
    transform: rotate(90deg);
}

.modal-header {
    padding: 3rem 2.5rem 2rem;
    text-align: center;
    border-bottom: 2px solid rgba(76, 175, 80, 0.2);
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.modal-header h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 1rem;
    margin: 0;
}

.modal-body {
    padding: 2.5rem;
}

/* Brevo form styling inside modals */
.modal-body #brevo-guide-form,
.modal-body #brevo-newsletter-form {
    background: transparent;
}

/* Override Brevo form styles in modal */
.modal-body .sib-form {
    background: transparent !important;
    padding: 0 !important;
}

.modal-body .sib-form input,
.modal-body .sib-form select {
    background: var(--brand-black) !important;
    border: 2px solid rgba(76, 175, 80, 0.3) !important;
    color: var(--text-light) !important;
    padding: 0.75rem 1rem !important;
    border-radius: 8px !important;
}

.modal-body .sib-form input:focus,
.modal-body .sib-form select:focus {
    border-color: var(--primary-green) !important;
    outline: none !important;
}

.modal-body .sib-form button[type="submit"] {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-forest)) !important;
    border: none !important;
    color: white !important;
    padding: 1rem 2rem !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.modal-body .sib-form button[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4) !important;
}

/* Responsive modal */
@media (max-width: 767px) {
    .modal-content {
        max-width: 95%;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 2.5rem 1.5rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-icon {
        font-size: 3rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
}

/* Update guide CTA button styles */
.guide-download-cta .btn-success {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-orange));
    border: none;
    color: var(--brand-black);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.guide-download-cta .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}






