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

:root {
    --primary-color: #009B3A;
    --secondary-color: #1a1a1a;
    --accent-color: #A4C639;
    --accent-yellow: #FFC107;
    --text-dark: #1a1a1a;
    --text-light: #555;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --ttf-green: #009B3A;
    --ttf-lime: #A4C639;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

.hero {
    background: linear-gradient(135deg, var(--ttf-green), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.hero-logo {
    max-width: 150px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero h2 {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 300;
}

.tagline {
    font-size: 1.2em;
    opacity: 0.9;
}

.sticky-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 20px 0;
    flex-wrap: wrap;
    margin: 0;
    position: relative;
}

.sticky-nav li {
    margin: 0 20px;
}

.sticky-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.sticky-nav a:hover {
    color: var(--ttf-green);
}

.content-ideas-btn {
    background: var(--ttf-green);
    color: white !important;
    padding: 5px 15px;
    border-radius: 20px;
}

.content-ideas-btn:hover {
    background: var(--ttf-lime) !important;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 20px;
    top: 15px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--ttf-green);
    margin: 5px 0;
    transition: all 0.3s;
}

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

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.section {
    padding: 80px 0;
}

.section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    text-align: center;
    color: var(--secondary-color);
}

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

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

.bg-dark h2 {
    color: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.overview-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.overview-card:hover {
    transform: translateY(-5px);
}

.overview-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.overview-card ul {
    list-style-position: inside;
    color: var(--text-light);
}

.service-detail {
    margin-bottom: 60px;
}

.service-detail h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--ttf-lime);
}

.feature h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.seo-strategy {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.strategy-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
}

.strategy-item h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3em;
}

.strategy-item ul {
    list-style-position: inside;
    color: var(--text-light);
    line-height: 2;
}

.metrics-box {
    background: linear-gradient(135deg, var(--ttf-green), var(--ttf-lime));
    color: white;
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.metrics-box h4 {
    font-size: 1.5em;
    margin-bottom: 30px;
    text-align: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 0.9em;
    opacity: 0.9;
}

.social-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.platform {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.platform h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8em;
}

.platform-details h4 {
    color: var(--secondary-color);
    margin: 20px 0 15px 0;
}

.platform-details ul {
    list-style-position: inside;
    color: var(--text-light);
    line-height: 2;
}

.platform-details strong {
    color: var(--text-dark);
}

.content-calendar {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.content-calendar h3 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.calendar-item {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    border-top: 3px solid var(--ttf-lime);
}

.calendar-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.youtube-strategy h3 {
    color: var(--primary-color);
    margin: 40px 0 30px 0;
    font-size: 1.6em;
}

.video-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-type {
    background: white;
    padding: 30px;
    border-radius: 10px;
}

.video-type h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.video-type ul {
    list-style-position: inside;
    color: var(--text-light);
    line-height: 2;
}

.video-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.benefit-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
}

.benefit-item h4 {
    color: var(--ttf-green);
    margin-bottom: 15px;
    font-size: 1.2em;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.video-metrics {
    margin-top: 40px;
}

.video-metrics h3 {
    text-align: center;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.timeline-phase {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-phase h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.timeline-phase ul {
    list-style-position: inside;
    color: var(--text-light);
    line-height: 2;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-tier {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.pricing-tier:hover {
    transform: translateY(-10px);
}

.pricing-tier.featured {
    border: 3px solid var(--ttf-green);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ttf-green);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
}

.pricing-tier h3 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.price {
    font-size: 2.5em;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 30px;
}

.pricing-tier ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-tier li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: var(--text-light);
}

.pricing-tier li:before {
    content: "✓ ";
    color: var(--ttf-green);
    font-weight: bold;
}

.cta-button {
    background: var(--ttf-green);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button:hover {
    background: var(--ttf-lime);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--ttf-green);
    color: var(--ttf-green);
}

.cta-button.secondary:hover {
    background: var(--ttf-green);
    color: white;
}

.cta-section {
    background: linear-gradient(135deg, var(--ttf-green), var(--ttf-lime));
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-button.primary {
    background: white;
    color: var(--ttf-green);
}

.contact-info {
    font-size: 1.1em;
}

.contact-info a {
    color: white;
}

footer {
    background: var(--bg-dark);
    color: white;
    text-align: center;
    padding: 40px 0;
}

footer a {
    color: var(--ttf-lime);
    text-decoration: none;
}

.content-note {
    background: #f0f8f4;
    border-left: 4px solid var(--ttf-green);
    padding: 20px;
    margin-top: 30px;
    border-radius: 5px;
}

.content-note p {
    margin-bottom: 10px;
}

.content-note p:last-child {
    margin-bottom: 0;
}

.content-note-inline {
    color: var(--text-light);
    font-size: 0.95em;
    margin-top: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 5px;
}

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

.menu-close-btn {
    display: none;
    position: absolute;
    top: 10px;
    right: 20px;
    background: white;
    border: 2px solid var(--ttf-green);
    font-size: 24px;
    font-weight: normal;
    color: var(--ttf-green);
    cursor: pointer;
    padding: 0;
    width: 35px;
    height: 35px;
    line-height: 31px;
    text-align: center;
    z-index: 1001;
    transition: transform 0.3s;
    border-radius: 50%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    touch-action: manipulation;
    font-family: Arial, sans-serif;
}

.menu-close-btn:active {
    background: var(--ttf-green);
    color: white;
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .menu-close-btn {
        display: block;
    }
    .hero h1 {
        font-size: 2em;
    }
    
    .hero h2 {
        font-size: 1.5em;
    }
    
    .section h2 {
        font-size: 1.8em;
    }
    
    .pricing-tier.featured {
        transform: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .sticky-nav {
        position: sticky;
        top: 0;
        min-height: 60px;
    }
    
    .nav-menu {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 40px 0 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    .sticky-nav li {
        margin: 0;
        text-align: center;
        padding: 10px 20px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .sticky-nav li:last-child {
        border-bottom: none;
    }
    
    .sticky-nav a {
        display: block;
        padding: 5px;
    }
    
    .content-ideas-btn {
        display: inline-block;
        margin: 0 auto;
    }
    
    #logout {
        position: relative !important;
        margin-top: 10px;
    }
}