/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Bricolage Grotesque', system-ui, sans-serif;
    background-color: hsl(33, 15%, 91%);
    color: hsl(0, 0%, 7%);
    line-height: 1.6;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

p {
    line-height: 1.6;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn:focus {
    outline: none;
    ring: 2px solid hsl(258, 73%, 79%);
    ring-offset: 2px;
}

.btn:disabled {
    pointer-events: none;
    opacity: 0.5;
}

/* Button Variants */
.btn-cta {
    background-color: hsl(258, 73%, 79%);
    color: hsl(0, 0%, 7%);
    font-weight: 600;
}

.btn-cta:hover {
    background-color: hsl(258, 73%, 75%);
}

.btn-hero {
    background-color: hsl(0, 0%, 7%);
    color: hsl(33, 15%, 91%);
    font-weight: 600;
    font-size: 1rem;
}

.btn-hero:hover {
    background-color: hsl(0, 0%, 15%);
}

.btn-outline {
    border: 1px solid hsl(33, 15%, 85%);
    background-color: hsl(33, 15%, 91%);
    color: hsl(0, 0%, 7%);
}

.btn-outline:hover {
    background-color: hsl(258, 73%, 79%);
    color: hsl(0, 0%, 7%);
}

/* Button Sizes */
.btn-lg {
    height: 2.75rem;
    padding: 0 2rem;
    border-radius: 0.5rem;
}

.btn-xl {
    height: 3.5rem;
    padding: 0 2.5rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero-section {
    padding: 4rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

.highlighted-text {
    position: relative;
}

.orange-underline {
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 0.5rem;
    background-color: hsl(22, 100%, 64%);
    border-radius: 9999px;
}

.hero-description {
    max-width: 36rem;
    margin: 0 auto;
}

.hero-description p {
    font-size: 1.25rem;
    color: hsl(0, 0%, 45%);
    line-height: 1.6;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-description p {
        font-size: 1.5rem;
    }
}

/* About Section */
.about-section {
    padding: 5rem 1rem;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-intro {
    max-width: 64rem;
    margin: 0 auto;
    font-size: 1.125rem;
    color: hsl(0, 0%, 45%);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .section-intro {
        font-size: 1.25rem;
    }
}

.section-intro p {
    margin-bottom: 1.5rem;
}

.quote {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(0, 0%, 7%) !important;
}

@media (min-width: 768px) {
    .quote {
        font-size: 1.5rem;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.features-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .features-title {
        font-size: 1.875rem;
    }
}

.features-list {
    list-style: none;
    font-size: 1.125rem;
}

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

.bullet-point {
    width: 0.5rem;
    height: 0.5rem;
    background-color: hsl(258, 73%, 79%);
    border-radius: 50%;
    margin-top: 0.75rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.features-highlight {
    background-color: hsl(33, 15%, 91%);
    padding: 2rem;
    border-radius: 1rem;
}

.features-highlight p {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.6;
}
.logo-etch svg{max-width:10rem;}

@media (min-width: 768px) {
    .features-highlight p {
        font-size: 1.5rem;
    }
}

.section-cta {
    text-align: center;
}

/* Audience Section */
.audience-section {
    padding: 5rem 1rem;
    background-color: hsl(33, 15%, 91%);
}

.audience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 768px) {
    .audience-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.audience-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.audience-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .audience-title {
        font-size: 2.25rem;
    }
}

.audience-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: hsl(258, 73%, 79%);
    margin-bottom: 1.5rem;
}

.audience-content {
    flex: 1;
    font-size: 1.125rem;
    line-height: 1.6;
}

.audience-content p {
    margin-bottom: 1.5rem;
}

.emphasized {
    font-weight: 600;
}

.game-changer {
    font-weight: 600;
    font-size: 1.25rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 1rem;
}

.final-cta-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .final-cta-title {
        font-size: 3rem;
    }
}

.final-cta-description {
    font-size: 1.25rem;
    color: hsl(0, 0%, 45%);
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

@media (min-width: 768px) {
    .final-cta-description {
        font-size: 1.5rem;
    }
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
}

.footer-section {
   padding: 1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
    
   text-align:center; 
   font-size:0.8rem;
}



@media (min-width: 640px) {
    .final-cta-buttons {
        flex-direction: row;
    }
}

/* Responsive Design */
@media (max-width: 767px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 3rem 1rem;
    }
    
    .about-section,
    .audience-section,
    .final-cta-section {
        padding: 3rem 1rem;
    }
}