/* CSS Variables */
:root {
    --primary: #de6314;
    --primary-dark: #b85010;
    --primary-light: #f4a261;
    --secondary: #1a1a2e;
    --secondary-light: #16213e;
    --accent: #0f3460;
    --text: #2d3436;
    --text-light: #636e72;
    --text-dark: #1a1a1a;
    --background: #ffffff;
    --background-alt: #f8f9fa;
    --background-dark: #1a1a2e;
    --success: #00b894;
    --warning: #fdcb6e;
    --error: #d63031;
    --border: #dfe6e9;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-lg: rgba(0, 0, 0, 0.15);
    --transition: 0.3s ease;
    --radius: 8px;
    --radius-lg: 16px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--background);
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover { color: var(--primary-dark); }

.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-dark);
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color var(--transition);
}

.nav-menu a:hover { color: var(--primary); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 1.5rem 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 3rem;
}

.hero h1 {
    color: white;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-visual {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    min-width: 180px;
}

.stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-light);
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 150px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(222, 99, 20, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* Sections */
.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--background-alt);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Overview Section */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.intro-text {
    font-size: 1.0625rem;
}

.numbered-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.numbered-list li {
    margin-bottom: 0.75rem;
}

.principles-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 30px var(--shadow);
}

.principles-card h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

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

.principles-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.principle-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.principles-list strong {
    display: block;
    margin-bottom: 0.25rem;
}

.principles-list p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.core-message {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin-top: 3rem;
}

.core-message blockquote {
    font-size: 1.25rem;
    color: white;
    text-align: center;
    font-style: italic;
    line-height: 1.7;
    margin: 0;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.tips-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
}

.tips-card h3 {
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
}

.tips-card.do h3 {
    color: var(--success);
    border-color: var(--success);
}

.tips-card.dont h3 {
    color: var(--error);
    border-color: var(--error);
}

.tips-card ul {
    list-style: none;
}

.tips-card li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.tips-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.tips-card.do li::before { background: var(--success); }
.tips-card.dont li::before { background: var(--error); }

/* Templates */
.templates-container {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
    margin-bottom: 3rem;
}

.templates-container h3 {
    margin-bottom: 1.5rem;
}

.template-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--border);
    padding-bottom: 1rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: var(--radius);
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition);
}

.tab-btn:hover {
    background: var(--background-alt);
    color: var(--text);
}

.tab-btn.active {
    background: var(--primary);
    color: white;
}

.template {
    display: none;
}

.template.active {
    display: block;
}

.template-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.template-label {
    display: inline-block;
    background: var(--primary-light);
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

.template-header h4 {
    color: var(--secondary);
}

.template-body {
    background: var(--background-alt);
    border-radius: var(--radius);
    padding: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    max-height: 500px;
    overflow-y: auto;
}

.template-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.template-body li {
    margin-bottom: 0.5rem;
}

.copy-btn {
    background: var(--secondary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.copy-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.copy-btn.copied {
    background: var(--success);
}

/* Country Cards */
.country-adaptations h3 {
    margin-bottom: 1.5rem;
}

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

.country-card {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 2px 10px var(--shadow);
}

.country-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
}

.country-card ul {
    list-style: none;
    font-size: 0.9375rem;
}

.country-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

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

/* Meeting Phases */
.meeting-phases {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.phase-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: white;
}

.phase-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.phase-header h3 {
    color: white;
    margin: 0;
}

.phase-content {
    padding: 2rem;
}

.phase-content h4 {
    color: var(--primary);
    margin: 1.5rem 0 1rem;
}

.phase-content h4:first-child {
    margin-top: 0;
}

.phase-content ul {
    padding-left: 1.5rem;
}

.phase-content li {
    margin-bottom: 0.5rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding: 1rem 0 1rem 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 1.25rem;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 0 0 4px var(--background-alt);
}

.time {
    display: inline-block;
    background: var(--primary-light);
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.timeline-content strong {
    display: block;
    margin-bottom: 0.25rem;
}

.timeline-content p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin: 0;
}

/* Cheat Sheet */
.cheat-sheet {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
}

.cheat-sheet h3 {
    margin-bottom: 1.5rem;
}

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

.cheat-card {
    background: var(--background-alt);
    border-radius: var(--radius);
    padding: 1.5rem;
}

.cheat-card h4 {
    color: var(--success);
    margin-bottom: 1rem;
}

.cheat-card.avoid h4 {
    color: var(--error);
}

.cheat-card ul {
    list-style: none;
    font-size: 0.9375rem;
}

.cheat-card li {
    padding: 0.375rem 0;
}

/* Objections */
.objections-filter {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.objections-list {
    display: grid;
    gap: 1.5rem;
}

.objection-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
}

.objection-card.hidden {
    display: none;
}

.objection-header {
    padding: 1.5rem;
    background: var(--background-alt);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    cursor: pointer;
}

.objection-header h4 {
    margin: 0;
    color: var(--secondary);
}

.category-tag {
    font-size: 0.75rem;
    background: var(--secondary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.objection-content {
    padding: 1.5rem;
}

.behind-it {
    background: var(--warning);
    background: rgba(253, 203, 110, 0.2);
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.response {
    background: var(--background-alt);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.response p {
    margin-bottom: 1rem;
}

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

.response ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.response li {
    margin-bottom: 0.5rem;
}

/* Quick Reference Table */
.quick-reference {
    margin-top: 3rem;
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
}

.quick-reference h3 {
    margin-bottom: 1.5rem;
}

.reference-table {
    overflow-x: auto;
}

.reference-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.reference-table th,
.reference-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.reference-table th {
    background: var(--secondary);
    color: white;
    font-weight: 600;
}

.reference-table tr:hover {
    background: var(--background-alt);
}

/* Audience Grid */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.audience-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 4px 20px var(--shadow);
}

.audience-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-light);
}

.audience-card ul {
    list-style: none;
}

.audience-card li {
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.audience-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.875rem;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.about-text h3 {
    margin: 2rem 0 1rem;
    color: var(--primary);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.pillar {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px var(--shadow);
}

.pillar h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.pillar p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.resource-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 4px 20px var(--shadow);
}

.resource-card h4 {
    margin-bottom: 1rem;
    color: var(--secondary);
}

.resource-card ul {
    list-style: none;
}

.resource-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

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

.resource-card a {
    font-size: 0.9375rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--background-alt);
    border-radius: var(--radius);
    font-size: 0.875rem;
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
}

/* Footer */
.footer {
    background: var(--secondary);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
}

.footer-brand p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-brand a {
    color: var(--primary-light);
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Feedback Button & Modal */
.feedback-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.875rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(222, 99, 20, 0.4);
    transition: all var(--transition);
    z-index: 100;
}

.feedback-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(222, 99, 20, 0.5);
}

.feedback-btn svg {
    width: 20px;
    height: 20px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform var(--transition);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    padding: 0.25rem;
    transition: color var(--transition);
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.modal > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(222, 99, 20, 0.1);
}

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

.form-group select {
    cursor: pointer;
    background: white;
}

.submit-btn {
    width: 100%;
    margin-top: 0.5rem;
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem 0;
}

.form-success svg {
    color: var(--success);
    margin-bottom: 1rem;
}

.form-success h4 {
    color: var(--success);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--text-light);
    margin: 0;
}

#feedbackForm.hidden {
    display: none;
}

#feedbackForm.hidden + .form-success {
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        box-shadow: 0 10px 30px var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border);
    }

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

    .hero {
        padding: 100px 1rem 60px;
    }

    .hero-visual {
        flex-direction: column;
        width: 100%;
    }

    .hero-card {
        width: 100%;
    }

    .tips-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .template-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 1rem;
    }

    .tab-btn {
        white-space: nowrap;
    }

    .objections-filter {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }

    .filter-btn {
        white-space: nowrap;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .feedback-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .feedback-btn span {
        display: none;
    }

    .feedback-btn {
        padding: 0.875rem;
        border-radius: 50%;
    }

    .modal {
        padding: 1.5rem;
        margin: 0.5rem;
    }

    .footer-links {
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 3rem 0;
    }

    .phase-content {
        padding: 1.5rem;
    }

    .templates-container,
    .cheat-sheet,
    .quick-reference {
        padding: 1.5rem;
    }

    .template-body {
        padding: 1rem;
    }
}
