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

:root {
    /* Colors */
    --primary: #3C8D99;
    --primary-dark: #2563eb;
    --secondary: #6FCCB4;
    --accent: #FFB347;

    /* Grays */
    --gray-100: #F9FAFB;
    --gray-200: #e5e7eb;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --background: #F8FAFC;
    --surface: #FFFFFF;
    --border: #E5E7EB;
    
    /* Text colors */
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-light: #F9FAFB;

    /* Background colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f3f4f6;
    --bg-hover: #f3f4f6;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 0.75rem;
    --spacing-lg: 1rem;
    --spacing-xl: 1.5rem;
    --spacing: 1rem;

    /* Border radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);

    /* Font sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3rem;
    --text-6xl: 4rem;
}

body {
    font-family: 'Pretendard Variable', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', sans-serif;
    background-color: var(--surface);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
     padding: 0;
     display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
}

/* 스크롤 효과 */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 사이드바 네비게이션 */
.side-nav {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.side-nav-item {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.side-nav-item::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 20px;
    top: -5px;
    background-color: var(--primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.side-nav-item:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.side-nav-item.active {
    background-color: var(--primary);
    transform: scale(1.5);
    box-shadow: 0 0 10px rgba(60, 141, 153, 0.5);
}

/* 글로벌 레이아웃 */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.asymmetric-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

/* 헤더 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: 2rem;
    z-index: 100;
    transition: all 0.3s ease;
    mix-blend-mode: difference;
}

.header.scrolled {
    background-color: white;
    padding: 1rem 2rem;
    box-shadow: var(--shadow-sm);
    mix-blend-mode: normal;
}

.header.scrolled .logo {
    color: var(--primary);
}

.header.scrolled .nav-link {
    color: var(--text-primary);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.header.scrolled .nav-link::after {
    background-color: var(--primary);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}
section{
    width: 100vw;
}

.header.scrolled .mobile-menu-toggle {
    color: var(--text-primary);
}

/* 히어로 섹션 */
.hero {
    height: 100vh;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    grid-column: 2 / 8;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-subheading {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    opacity: 0.8;
    font-weight: 400;
}

.hero-heading {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    max-width: 800px;
}

.hero-description {
    font-size: 1.5rem;
    max-width: 600px;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-btn {
    display: inline-block;
    background-color: var(--accent);
    color: var(--text-primary);
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-btn:hover::after {
    transform: translateX(0);
}

.hero-visual {
    grid-column: 8 / 12;
    position: relative;
    z-index: 2;
}

.hero-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background-color: var(--secondary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: blobAnimation 15s infinite;
}

@keyframes blobAnimation {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

.hero-icon {
    position: absolute;
    background-color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

.hero-icon:nth-child(1) {
    top: 20%;
    left: 20%;
    color: var(--primary);
}

.hero-icon:nth-child(2) {
    top: 70%;
    left: 40%;
    color: var(--accent);
}

.hero-icon:nth-child(3) {
    top: 30%;
    right: 20%;
    color: var(--secondary);
}

.hero-dot-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
}

.hero-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.03);
    top: -150px;
    right: -150px;
    z-index: 1;
}

/* 특징 섹션 */
.features {
    padding: 8rem 0;
    background-color: var(--surface);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(60, 141, 153, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.features::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(111, 204, 180, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.section-heading {
    grid-column: 3 / 11;
    text-align: center;
    margin-bottom: 5rem;
}

.section-heading h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding: 0 1.5rem;
}

.section-heading h2::before {
    content: '|';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 900;
    font-size: 3.2rem;
}

.section-heading p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

            .feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background-color: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    border: 1px solid var(--gray-200);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:nth-child(2) {
    margin-top: -2rem;
}

.feature-image {
    height: 180px;
    position: relative;
    background-color: rgba(60, 141, 153, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-image::before {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(60, 141, 153, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.feature-icon-wrapper {
    position: relative;
    z-index: 1;
    width: 100px;
    height: 100px;
    border-radius: var(--radius-full);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(60, 141, 153, 0.2);
}

.feature-icon-large {
    font-size: 3rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-large {
    transform: scale(1.1);
}

.feature-content {
    padding: 2.5rem 2rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, var(--surface) 0%, rgba(249, 250, 251, 0.5) 100%);
}

.feature-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.feature-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

.feature-card:hover .feature-content h3::after {
    width: 60px;
}

.feature-content p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    flex: 1;
}

.feature-link {
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
    justify-content: center;
    padding: 0.75rem 0;
    border-top: 1px dashed var(--gray-200);
}

.feature-link:hover {
    gap: 0.75rem;
    color: var(--primary-dark);
}

.feature-link i {
    transition: transform 0.3s ease;
}

.feature-link:hover i {
    transform: translateX(5px);
}

/* 프로세스 섹션 */
.process {
    padding: 8rem 0;
    background-color: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.process-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(60, 141, 153, 0.05);
    z-index: 0;
}

.process-steps {
    position: relative;
    z-index: 1;
    padding: 3rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--gray-200);
    z-index: -1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(60, 141, 153, 0.2);
}

.process-number::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(60, 141, 153, 0.1);
    z-index: -1;
}

.process-content {
    text-align: center;
    max-width: 220px;
}

.process-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.process-content p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* 분할 섹션 */
.split {
    padding: 8rem 0;
    background-color: var(--surface);
}

.split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.split-row:last-child {
    margin-bottom: 0;
}

.split-row:nth-child(even) {
    direction: rtl;
}

.split-row:nth-child(even) .split-content {
    direction: ltr;
}

.split-row:nth-child(even) .split-image {
    direction: ltr;
}

.split-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(60, 141, 153, 0.1);
    border-radius: var(--radius-full);
}

.split-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.split-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.split-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.split-link:hover {
    gap: 1rem;
    color: var(--primary-dark);
}

.split-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blobAnimation 15s infinite;
}

.split-icon {
    position: absolute;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.5);
}

/* CTA 섹션 */
.cta {
    padding: 8rem 0;
    background-color: var(--primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
}

.cta-circle:nth-child(1) {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.cta-circle:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-heading {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: var(--radius-full);
}

.cta-input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
}

.cta-input:focus {
    outline: none;
}

.cta-button {
    background-color: var(--accent);
    color: var(--text-primary);
    font-weight: 700;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: var(--radius-full);
    margin-left: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* 푸터 */
.footer {
    background-color: var(--surface);
    padding: 5rem 0 2rem;
}

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

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-about {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 400px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(60, 141, 153, 0.1);
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
}

.footer-link {
    margin-bottom: 1rem;
}

.footer-link a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-secondary);
}

/* 모바일 메뉴 */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--surface);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    z-index: 200;
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-link {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

/* 스크롤 다운 애로우 */
.scroll-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* 반응형 */
@media (max-width: 1200px) {
    .hero-heading {
        font-size: 4rem;
    }

    .feature-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 3rem;
    }

    .feature-card:nth-child(2) {
        margin-top: 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 3rem;
    }

    .process-line {
        display: none;
    }
}

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

    .hero-content {
        grid-column: 1;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .hero-description {
        margin: 0 auto 3rem;
    }

    .hero-visual {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1;
        opacity: 0.4;
        grid-column: 1;
    }
    
    .hero-blob {
        width: 300px;
        height: 300px;
    }

    .section-heading {
        grid-column: 1;
    }

    .split-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .split-row:nth-child(even) {
        direction: ltr;
    }

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

    .split-content p {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .split-image {
        order: -1;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .mobile-menu-toggle {
        display: block;
    }

    .side-nav {
        display: none;
    }

    .hero-heading {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }
    
    .hero-content {
        position: relative;
        z-index: 3;
    }
    
    .hero-visual {
        opacity: 0.25;
    }
    
    .hero-blob {
        width: 250px;
        height: 250px;
    }
    
    .hero-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .hero-icon:nth-child(1) {
        top: 15%;
        left: 15%;
    }

    .hero-icon:nth-child(2) {
        top: 70%;
        left: 25%;
    }

    .hero-icon:nth-child(3) {
        top: 30%;
        right: 15%;
    }

    .cta-form {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: 1rem;
    }

    .cta-input, .cta-button {
        width: 100%;
        margin: 0;
        border-radius: var(--radius-lg);
    }

    .cta-heading {
        font-size: 2.5rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}