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

:root {
    /* Colors (HSL) */
    --background: hsl(33, 14%, 97%);
    --foreground: hsl(0, 0%, 20%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(0, 0%, 20%);
    --primary: hsl(197, 100%, 14%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(197, 38%, 57%);
    --secondary-foreground: hsl(0, 0%, 100%);
    --muted: hsl(33, 14%, 95%);
    --muted-foreground: hsl(0, 0%, 40%);
    --accent: hsl(0, 100%, 24%);
    --accent-foreground: hsl(0, 0%, 100%);
    --border: hsl(0, 0%, 90%);
    --gochujang: hsl(0, 100%, 24%);
    --crimson: hsl(355, 89%, 44%);
    --varden: hsl(33, 14%, 97%);
    --cosmos: hsl(197, 100%, 14%);
    --marble: hsl(197, 38%, 57%);
    
    /* Shadows */
    --shadow-soft: 0 4px 20px -4px hsla(0, 0%, 0%, 0.08);
    --shadow-elegant: 0 10px 40px -10px hsla(197, 100%, 14%, 0.12);
    
    /* Fonts */
    --font-playfair: 'Playfair Display', serif;
    --font-inter: 'Inter', sans-serif;
}

body {
    font-family: var(--font-inter);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .desktop-only {
        display: inline;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-playfair);
    font-weight: 700;
    line-height: 1.2;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 300;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.875rem;
    font-weight: 400;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 300;
}

.font-medium {
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-family: var(--font-inter);
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-lg {
    padding: 1.5rem 2.5rem;
    font-size: 1rem;
    border-radius: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-elegant);
}

.btn-primary:hover {
    background-color: hsl(197, 100%, 12%);
    box-shadow: 0 15px 50px -15px hsla(197, 100%, 14%, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    box-shadow: var(--shadow-elegant);
}

.btn-secondary:hover {
    background-color: hsl(197, 38%, 50%);
    box-shadow: 0 15px 50px -15px hsla(197, 38%, 57%, 0.3);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--accent-foreground);
    box-shadow: var(--shadow-elegant);
    font-weight: 600;
}

.btn-accent:hover {
    background-color: hsl(0, 100%, 20%);
    box-shadow: 0 15px 50px -15px hsla(0, 100%, 24%, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, hsla(355, 89%, 44%, 0.04), hsla(33, 14%, 97%, 0.02), var(--background));
    padding: 5rem 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.015;
    pointer-events: none;
}

.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.hero-bg::before {
    top: 8rem;
    left: 8rem;
    width: 650px;
    height: 650px;
    background-color: var(--gochujang);
}

.hero-bg::after {
    bottom: 8rem;
    right: 8rem;
    width: 550px;
    height: 550px;
    background-color: var(--crimson);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

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

.hero-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.hero-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 0.75rem;
    background-color: hsla(197, 100%, 14%, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: fit-content;
}

@media (min-width: 1024px) {
    .hero-icon {
        justify-content: flex-start;
    }
}

.icon-flame {
    width: 3rem;
    height: 3rem;
    color: var(--primary);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

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

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

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.75;
    margin-bottom: 1rem;
    font-weight: 400;
}

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

.hero-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

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

.hero-emphasis {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    font-weight: 500;
}

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

.hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-image {
        justify-content: flex-end;
    }
}

.rounded-img {
    width: 100%;
    max-width: 28rem;
    border-radius: 1rem;
}

.shadow-elegant {
    box-shadow: var(--shadow-elegant);
}

.image-caption {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 300;
}

/* Storytelling Section */
.storytelling-section {
    padding: 6rem 0;
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.storytelling-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 80rem;
    margin: 0 auto;
}

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

.storytelling-image {
    display: flex;
    justify-content: center;
    order: 2;
}

@media (min-width: 1024px) {
    .storytelling-image {
        justify-content: flex-start;
        order: 1;
    }
}

.storytelling-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    order: 1;
}

@media (min-width: 1024px) {
    .storytelling-content {
        text-align: left;
        order: 2;
    }
}

.storytelling-content .text-lg,
.storytelling-content .text-xl,
.storytelling-content .text-base {
    color: inherit;
}

.border-top {
    padding-top: 2rem;
    border-top: 1px solid hsla(0, 0%, 100%, 0.2);
    margin-top: 2rem;
}

/* Transform Section */
.transform-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--varden), var(--background));
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto;
    font-weight: 300;
}

.section-divider {
    width: 4rem;
    height: 2px;
    background-color: hsla(197, 100%, 14%, 0.3);
    margin: 1.5rem auto 0;
}

.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pillar-card {
    padding: 2rem;
    background-color: var(--card);
    border: 1px solid hsla(0, 0%, 90%, 0.5);
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    box-shadow: 0 20px 60px -20px hsla(0, 0%, 0%, 0.15);
    transform: translateY(-8px);
}

.pillar-icon {
    display: inline-flex;
    padding: 1rem;
    background-color: var(--accent);
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.pillar-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--accent-foreground);
    stroke-width: 1.5;
}

.pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
}

.pillar-description {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: var(--muted-foreground);
    line-height: 1.625;
}

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

/* Modules Section */
.modules-section {
    padding: 6rem 0;
    background-color: hsla(0, 100%, 24%, 0.05);
}

.modules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.module-card {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    background-color: var(--card);
    border: 1px solid hsla(0, 0%, 90%, 0.5);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.module-card:hover {
    border-color: hsla(197, 100%, 14%, 0.3);
    box-shadow: var(--shadow-soft);
}

.module-icon-wrapper {
    flex-shrink: 0;
    padding: 0.75rem;
    background-color: hsla(197, 100%, 14%, 0.05);
    border-radius: 0.5rem;
}

.module-icon {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary);
}

.module-content {
    flex: 1;
}

.module-header {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.module-number {
    font-family: var(--font-playfair);
    font-size: 0.875rem;
    color: hsla(197, 100%, 14%, 0.6);
    font-weight: 600;
}

.module-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
}

.module-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.625;
    font-weight: 300;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background-color: var(--background);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 88rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(7, 1fr);
    }
}

.benefit-card {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--card);
    border: 1px solid hsla(0, 0%, 90%, 0.5);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: hsla(197, 100%, 14%, 0.3);
    box-shadow: var(--shadow-soft);
}

.benefit-icon {
    display: inline-flex;
    padding: 0.75rem;
    background-color: hsla(197, 100%, 14%, 0.05);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.benefit-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary);
}

.benefit-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--muted-foreground);
    font-weight: 300;
}

/* Audience Section */
.audience-section {
    padding: 6rem 0;
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

.audience-card {
    max-width: 56rem;
    margin: 0 auto;
    padding: 3.5rem;
    background-color: var(--card);
    color: var(--card-foreground);
    border: 1px solid hsla(0, 0%, 90%, 0.5);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
    .audience-card {
        padding: 3.5rem;
    }
}

.audience-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.audience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.audience-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.audience-divider {
    border-top: 1px solid hsla(0, 0%, 90%, 0.3);
    margin: 2.5rem 0;
}

.audience-tags {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

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

.audience-tag {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background-color: hsla(197, 100%, 14%, 0.05);
    border: 1px solid hsla(197, 100%, 14%, 0.1);
    border-radius: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 300;
}

.audience-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Instructor Section */
.instructor-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, hsla(33, 14%, 97%, 0.15), hsla(355, 89%, 44%, 0.08), hsla(0, 100%, 24%, 0.05));
    overflow: hidden;
}

.instructor-card {
    max-width: 80rem;
    margin: 0 auto;
    overflow: hidden;
    background-color: var(--card);
    border: 1px solid hsla(0, 0%, 90%, 0.5);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-soft);
}

.instructor-card {
    display: grid;
    grid-template-columns: 1fr;
}

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

.instructor-image {
    position: relative;
    height: 24rem;
    background-color: var(--muted);
}

@media (min-width: 768px) {
    .instructor-image {
        height: auto;
    }
}

.instructor-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .instructor-content {
        padding: 3rem;
    }
}

.instructor-bio {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: hsla(0, 0%, 20%, 0.8);
    line-height: 1.75;
    margin-bottom: 2rem;
    font-weight: 300;
}

.instructor-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.instructor-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
    padding: 0.5rem;
    background-color: hsla(197, 100%, 14%, 0.05);
    border-radius: 0.5rem;
}

.instructor-highlight p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: hsla(0, 0%, 20%, 0.7);
    line-height: 1.625;
    font-weight: 300;
}

/* Responsive Section */
.responsive-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--cosmos), hsla(197, 100%, 14%, 0.9), hsla(197, 38%, 57%, 0.2));
}

.section-icon-header {
    display: inline-flex;
    padding: 0.75rem;
    background-color: hsla(197, 38%, 57%, 0.2);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.section-icon-header svg {
    width: 2rem;
    height: 2rem;
    color: var(--marble);
}

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

.devices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .devices-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.device-card {
    text-align: center;
    padding: 1.5rem;
}

.device-icon {
    display: inline-flex;
    padding: 1rem;
    background-color: hsla(197, 38%, 57%, 0.2);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.device-icon svg {
    width: 3rem;
    height: 3rem;
    color: var(--marble);
}

.device-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--background);
    margin-bottom: 0.5rem;
}

.device-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: hsla(255, 255%, 255%, 0.7);
    font-weight: 300;
}

/* Guarantee Section */
.guarantee-section {
    padding: 4rem 0;
    background-color: var(--background);
}

.guarantee-card {
    max-width: 42rem;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--card);
    border: 1px solid hsla(197, 100%, 14%, 0.2);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.guarantee-icon {
    display: inline-flex;
    padding: 0.75rem;
    background-color: hsla(197, 100%, 14%, 0.05);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.guarantee-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.guarantee-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.guarantee-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--muted-foreground);
    font-weight: 300;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--background), hsla(33, 14%, 95%, 0.3));
}

.faq-accordion {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--card);
    border: 1px solid hsla(0, 0%, 90%, 0.5);
    border-radius: 0.5rem;
    padding: 0 1.5rem;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    font-family: var(--font-inter);
    font-size: 1rem;
    font-weight: 500;
    color: var(--foreground);
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    text-decoration: none;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--foreground);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-weight: 300;
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--background), hsla(33, 14%, 95%, 0.3));
}

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

.final-cta-headline {
    font-family: var(--font-playfair);
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

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

.final-cta-subheadline {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.75;
    font-weight: 300;
}

.special-offer-badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background-color: hsla(0, 100%, 24%, 0.1);
    border-radius: 9999px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 2rem;
}

.price-card {
    display: inline-block;
    padding: 2rem;
    background-color: var(--card);
    border: 1px solid hsla(0, 0%, 90%, 0.5);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-elegant);
    margin-bottom: 2.5rem;
}

.price-original {
    font-size: 1rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.price-current-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.75rem;
}

.price-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
}

.price-current {
    font-family: var(--font-playfair);
    font-size: 3.75rem;
    font-weight: 700;
    color: var(--accent);
}

/* Social Section */
.social-section {
    padding: 6rem 0;
    background-color: var(--cosmos);
}

.social-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.social-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: hsla(255, 255%, 255%, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid hsla(255, 255%, 255%, 0.1);
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-card:hover {
    background-color: hsla(255, 255%, 255%, 0.1);
    border-color: hsla(255, 255%, 255%, 0.2);
}

.social-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
    flex-shrink: 0;
    padding: 0.75rem;
    background-color: hsla(255, 255%, 255%, 0.1);
    border-radius: 0.5rem;
}

.social-content {
    flex: 1;
}

.social-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.social-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: hsla(255, 255%, 255%, 0.7);
    font-weight: 300;
}

/* Footer */
.footer {
    background-color: var(--gochujang);
    color: var(--varden);
    padding: 3rem 0;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-description {
    font-family: 'Inter', sans-serif;
    color: hsla(33, 14%, 97%, 0.8);
    margin-bottom: 2rem;
    max-width: 42rem;
}

.footer-divider {
    width: 100%;
    max-width: 28rem;
    border-top: 1px solid hsla(33, 14%, 97%, 0.3);
    margin-bottom: 1.5rem;
}

.footer-copyright {
    color: hsla(33, 14%, 97%, 0.6);
    font-size: 0.875rem;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}