/* General Setup */
:root {
    --color-neutral-50: #fafafa;
    --color-neutral-100: #f5f5f5;
    --color-neutral-300: #d4d4d4;
    --color-neutral-500: #737373;
    --color-neutral-600: #525252;
    --color-neutral-700: #404040;
    --color-neutral-800: #262626;
    --color-neutral-900: #171717;
    --color-black: #000;
    --color-white: #fff;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--color-neutral-50);
    color: var(--color-neutral-900);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.main-container {
    min-height: 100vh;
}

.container {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.hero-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}
.hero-subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-neutral-500);
    margin: 0;
}
.hero-name {
    margin-top: 0.5rem;
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0;
}
.hero-brand-title {
    margin-top: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-neutral-700);
    margin-bottom: 0;
}
.hero-tagline {
    margin-top: 1rem;
    font-size: 1.125rem;
    color: var(--color-neutral-700);
}
.hero-location {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-neutral-500);
}
.hero-cta-buttons {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.btn {
    border-radius: 1rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
}
.btn-primary {
    background-color: var(--color-black);
    color: var(--color-white);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.btn-primary:hover {
    opacity: 0.9;
}
.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-black);
    border: 1px solid #e5e5e5;
    box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
}
.btn-secondary:hover {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
.hero-socials {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-neutral-600);
}
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: inherit;
    text-decoration: none;
}
.social-link:hover {
    color: var(--color-black);
}
.hero-qrcode {
    display: flex;
    justify-content: center;
}
.qrcode-card {
    border-radius: 1.5rem;
    border: 1px solid #e5e5e5;
    background-color: var(--color-white);
    padding: 1.5rem;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}
.qrcode-label {
    font-size: 0.875rem;
    color: var(--color-neutral-500);
    margin-bottom: 0.5rem;
}
.qrcode-image-container {
    background-color: var(--color-white);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid #e5e5e5;
    display: inline-block;
}
#qrcode img {
    display: block;
}
.qrcode-url {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--color-neutral-500);
}


/* Credibility Section */
.credibility-section {
    background-color: var(--color-white);
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    padding: 1.5rem 0;
}
.credibility-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-neutral-500);
    margin: 0;
}
.logos-grid {
    margin-top: 0.75rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-neutral-600);
}
.logo-item {
    border-radius: 0.75rem;
    border: 1px solid #e5e5e5;
    padding: 0.5rem 0.75rem;
    text-align: center;
    background-color: var(--color-neutral-50);
}

/* Offerings Section */
.offerings-section {
    padding: 4rem 0;
}
.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}
.section-subtitle {
    margin-top: 0.5rem;
    color: var(--color-neutral-600);
    max-width: 42rem;
}
.offerings-grid {
    margin-top: 2rem;
    display: grid;
    gap: 1.25rem;
}
.offering-card {
    border-radius: 1rem;
    background-color: var(--color-white);
    border: 1px solid #e5e5e5;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}
.offering-icon-wrapper {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background-color: var(--color-neutral-100);
    display: flex;
    align-items: center;
    justify-content: center;
}
.offering-title {
    margin-top: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0;
}
.offering-blurb {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-neutral-600);
    flex-grow: 1;
}
.btn-offering {
    margin-top: 1rem;
    border-radius: 0.75rem;
    padding: 0.5rem 1rem;
    background-color: var(--color-black);
    color: var(--color-white);
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    align-self: flex-start;
}
.btn-offering:hover {
    opacity: 0.9;
}

/* Talk Highlight Section */
.talk-highlight-section {
    background-image: linear-gradient(to bottom right, var(--color-neutral-900), var(--color-black));
    color: var(--color-white);
    padding: 4rem 0;
}
.talk-highlight-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}
.text-white { color: var(--color-white); }
.text-neutral-300 { color: var(--color-neutral-300); max-width: 42rem; }
.talk-buttons {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.75rem;
}
.btn-talk-primary {
    border-radius: 0.75rem;
    padding: 0.75rem 1.25rem;
    background-color: var(--color-white);
    color: var(--color-black);
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.btn-talk-secondary {
    border-radius: 0.75rem;
    padding: 0.75rem 1.25rem;
    background-color: var(--color-neutral-800);
    color: var(--color-white);
    font-size: 0.875rem;
    border: 1px solid var(--color-neutral-700);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}
.outcomes-card {
    border-radius: 1rem;
    background-color: var(--color-neutral-800);
    border: 1px solid var(--color-neutral-700);
    padding: 1.25rem;
}
.outcomes-title {
    font-weight: 600;
    margin: 0;
}
.outcomes-list {
    margin-top: 0.5rem;
    list-style-position: inside;
    list-style-type: disc;
    padding-left: 0;
    font-size: 0.875rem;
    color: var(--color-neutral-300);
    space-y: 0.5rem;
}
.outcomes-list li + li {
    margin-top: 0.5rem;
}

/* About Section */
.about-section {
    padding: 4rem 0;
}
.about-text {
    margin-top: 0.75rem;
    color: var(--color-neutral-700);
    max-width: 56rem;
    line-height: 1.6;
}
.about-links {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--color-neutral-600);
}
.about-links a {
    text-decoration: underline;
    color: inherit;
}

/* Lead Magnet Section */
.lead-magnet-section {
    background-color: var(--color-white);
    border-top: 1px solid #e5e5e5;
    padding: 3.5rem 0;
}
.lead-magnet-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}
.lead-magnet-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}
.lead-magnet-text {
    margin-top: 0.5rem;
    color: var(--color-neutral-700);
}
.lead-magnet-form {
    background-color: var(--color-neutral-50);
    border: 1px solid #e5e5e5;
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    gap: 0.75rem;
}
.form-input {
    flex-grow: 1;
    border-radius: 0.75rem;
    border: 1px solid #e5e5e5;
    padding: 0.5rem 0.75rem;
}
.btn-form {
    border-radius: 0.75rem;
    padding: 0.5rem 1rem;
    background-color: var(--color-black);
    color: var(--color-white);
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
}
.btn-form:hover {
    opacity: 0.9;
}

/* Footer Section */
.footer-section {
    padding: 2.5rem 0;
    font-size: 0.875rem;
    color: var(--color-neutral-600);
}
.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}
.footer-link:hover {
    color: var(--color-black);
}

/* Responsive Styles */
@media (min-width: 640px) { /* sm */
    .logos-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 768px) { /* md */
    .hero-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .hero-qrcode {
        justify-content: flex-end;
    }
    .hero-name { font-size: 3rem; }
    .hero-brand-title { font-size: 1.875rem; }
    .logos-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
    .offerings-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .talk-highlight-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .talk-info {
        grid-column: span 2 / span 2;
    }
    .workshop-outcomes {
        grid-column: span 1 / span 1;
    }
    .section-title { font-size: 1.875rem; }
    .lead-magnet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .lead-magnet-title { font-size: 1.5rem; }
    .footer-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) { /* lg */
    .offerings-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}