/* ============================================
   株式会社CONNEKTIO - サイバー/ネオンデザイン
   ============================================ */

/* リセットと基本設定 */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* ダークテーマカラー */
    --color-bg-primary: #0a0a0f;
    --color-bg-secondary: #12121a;
    --color-bg-tertiary: #1a1a25;

    /* アクセントカラー */
    --color-accent-cyan: #00f5d4;
    --color-accent-purple: #7b2cbf;
    --color-accent-pink: #ff006e;
    --color-accent-blue: #00bbf9;

    /* テキストカラー */
    --color-text-primary: #ffffff;
    --color-text-secondary: rgba(255, 255, 255, 0.7);
    --color-text-muted: rgba(255, 255, 255, 0.4);

    /* グロウエフェクト */
    --glow-cyan: 0 0 20px rgba(0, 245, 212, 0.5), 0 0 40px rgba(0, 245, 212, 0.3);
    --glow-purple: 0 0 20px rgba(123, 44, 191, 0.5), 0 0 40px rgba(123, 44, 191, 0.3);

    /* フォント */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;

    /* トランジション */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    overflow-x: hidden;
    cursor: none;
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }
}

/* カーソル追従エフェクト */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

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

/* パーティクルキャンバス */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* コンテナ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

/* ============================================
   ヘッダー
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 245, 212, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 900;
    color: var(--color-text-primary);
    letter-spacing: 0.15em;
    text-shadow: var(--glow-cyan);
    position: relative;
}

.logo-text::before {
    content: attr(data-text);
    position: absolute;
    left: 2px;
    top: 0;
    color: var(--color-accent-pink);
    clip-path: inset(0 100% 0 0);
    animation: glitch-1 3s infinite linear alternate-reverse;
}

.logo-text::after {
    content: attr(data-text);
    position: absolute;
    left: -2px;
    top: 0;
    color: var(--color-accent-cyan);
    clip-path: inset(0 0 0 100%);
    animation: glitch-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-1 {
    0%, 90% { clip-path: inset(0 100% 0 0); }
    92% { clip-path: inset(20% 0 60% 0); }
    94% { clip-path: inset(80% 0 5% 0); }
    96% { clip-path: inset(40% 0 40% 0); }
    98%, 100% { clip-path: inset(0 100% 0 0); }
}

@keyframes glitch-2 {
    0%, 90% { clip-path: inset(0 0 0 100%); }
    91% { clip-path: inset(10% 0 70% 0); }
    93% { clip-path: inset(60% 0 20% 0); }
    95% { clip-path: inset(30% 0 50% 0); }
    97%, 100% { clip-path: inset(0 0 0 100%); }
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-list a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-list a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-cyan), var(--color-accent-purple));
    transition: width var(--transition-base);
    box-shadow: var(--glow-cyan);
}

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

.nav-list a:hover::before {
    width: 100%;
}

/* モバイルメニュー */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-accent-cyan);
    transition: all var(--transition-fast);
    box-shadow: var(--glow-cyan);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

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

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 15, 0.98);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-list a {
        font-size: 1.5rem;
    }
}

/* ============================================
   ヒーローセクション
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(0, 245, 212, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 245, 212, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(50px); }
}

.hero-scan {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-accent-cyan), transparent);
    box-shadow: var(--glow-cyan);
    animation: scan 4s ease-in-out infinite;
}

@keyframes scan {
    0%, 100% { transform: translateY(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100vh); opacity: 0; }
}

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

@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.hero-content {
    position: relative;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 245, 212, 0.1);
    border: 1px solid rgba(0, 245, 212, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards;
}

.tag-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent-cyan);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: var(--glow-cyan);
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-tag span:last-child {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-accent-cyan);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    overflow: hidden;
}

.reveal-text {
    display: inline-block;
    animation: revealText 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.3s;
    transform: translateY(100%);
}

.title-line:nth-child(2) .reveal-text {
    animation-delay: 0.5s;
}

@keyframes revealText {
    to { transform: translateY(0); }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.9s;
    opacity: 0;
}

@media (max-width: 968px) {
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ボタン */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent-cyan), var(--color-accent-blue));
    color: var(--color-bg-primary);
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.btn-icon {
    transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
    border-color: var(--color-accent-cyan);
    background: rgba(0, 245, 212, 0.1);
}

/* ヒーロービジュアル */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
}

@media (max-width: 968px) {
    .hero-visual {
        display: none;
    }
}

.dna-helix {
    width: 200px;
    height: 300px;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.helix-strand {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-accent-cyan);
    border-radius: 50%;
    animation: helix-rotate 8s linear infinite;
}

.helix-strand::before,
.helix-strand::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--color-accent-cyan);
    border-radius: 50%;
    box-shadow: var(--glow-cyan);
}

.helix-strand::before {
    top: 20%;
    left: -6px;
}

.helix-strand::after {
    bottom: 20%;
    right: -6px;
}

.helix-strand:nth-child(2) {
    animation-delay: -4s;
    border-color: var(--color-accent-purple);
}

.helix-strand:nth-child(2)::before,
.helix-strand:nth-child(2)::after {
    background: var(--color-accent-purple);
    box-shadow: var(--glow-purple);
}

@keyframes helix-rotate {
    from { transform: rotateY(0deg) rotateX(70deg); }
    to { transform: rotateY(360deg) rotateX(70deg); }
}

/* スクロールインジケーター */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-accent-cyan), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--color-accent-cyan);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0% { transform: translateY(-20px); }
    100% { transform: translateY(80px); }
}

/* ============================================
   セクション共通
   ============================================ */
section {
    padding: 8rem 0;
    position: relative;
}

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

.section-number {
    display: block;
    font-family: var(--font-display);
    font-size: 0.875rem;
    color: var(--color-accent-cyan);
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title.glitch {
    animation: glitch-text 5s infinite;
}

@keyframes glitch-text {
    0%, 95%, 100% { text-shadow: none; }
    96% { text-shadow: 2px 0 var(--color-accent-pink), -2px 0 var(--color-accent-cyan); }
    97% { text-shadow: -2px 0 var(--color-accent-pink), 2px 0 var(--color-accent-cyan); }
    98% { text-shadow: 2px 2px var(--color-accent-pink), -2px -2px var(--color-accent-cyan); }
}

.section-lead {
    font-size: 1rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
}

/* ============================================
   事業内容セクション
   ============================================ */
.services {
    background: var(--color-bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    background: var(--color-bg-tertiary);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--transition-slow);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: attr(data-index);
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 245, 212, 0.05);
    line-height: 1;
}

.card-border {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.3), transparent, rgba(123, 44, 191, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover .card-border {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-content {
    padding: 2.5rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.1), rgba(123, 44, 191, 0.1));
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: var(--color-accent-cyan);
    transition: all var(--transition-base);
}

.service-card:hover .card-icon {
    box-shadow: var(--glow-cyan);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.card-text {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.card-tags span {
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    color: var(--color-accent-cyan);
    background: rgba(0, 245, 212, 0.1);
    border: 1px solid rgba(0, 245, 212, 0.2);
    border-radius: 50px;
}

/* ============================================
   会社概要セクション
   ============================================ */
.about {
    background: var(--color-bg-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.about-visual {
    position: sticky;
    top: 120px;
}

.visual-frame {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 245, 212, 0.2);
}

.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-accent-cyan);
}

.frame-corner.top-left {
    top: -1px;
    left: -1px;
    border-right: none;
    border-bottom: none;
}

.frame-corner.top-right {
    top: -1px;
    right: -1px;
    border-left: none;
    border-bottom: none;
}

.frame-corner.bottom-left {
    bottom: -1px;
    left: -1px;
    border-right: none;
    border-top: none;
}

.frame-corner.bottom-right {
    bottom: -1px;
    right: -1px;
    border-left: none;
    border-top: none;
}

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

.big-text {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--color-text-muted);
    letter-spacing: 0.3em;
}

.year {
    display: block;
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-text-primary);
    text-shadow: var(--glow-cyan);
}

.about-info {
    padding-top: 1rem;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.info-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(-20px);
    transition: all var(--transition-slow);
}

.info-item.visible {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 600px) {
    .info-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

.info-item dt {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-accent-cyan);
    letter-spacing: 0.05em;
}

.info-item dd {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

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

.business-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.business-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent-cyan);
}

/* ============================================
   お問い合わせセクション
   ============================================ */
.contact {
    position: relative;
    background: var(--color-bg-secondary);
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bg-grid {
    position: absolute;
    inset: -50%;
    background-image:
        radial-gradient(circle at center, rgba(0, 245, 212, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: perspective(500px) rotateX(60deg);
    animation: grid-scroll 30s linear infinite;
}

@keyframes grid-scroll {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(40px); }
}

.contact-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-description {
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(26, 26, 37, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 245, 212, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(20px);
}

.contact-card.visible {
    opacity: 1;
    transform: translateY(0);
}

a.contact-card:hover {
    border-color: var(--color-accent-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-4px);
}

.contact-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 245, 212, 0.1);
    border-radius: 12px;
    color: var(--color-accent-cyan);
    flex-shrink: 0;
}

.contact-card-content {
    flex: 1;
    text-align: left;
}

.contact-card-label {
    display: block;
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.contact-card-value {
    font-size: 1.1rem;
    color: var(--color-text-primary);
    font-style: normal;
}

.contact-card-arrow {
    font-size: 1.5rem;
    color: var(--color-accent-cyan);
    transition: transform var(--transition-fast);
}

a.contact-card:hover .contact-card-arrow {
    transform: translateX(8px);
}

/* ============================================
   フッター
   ============================================ */
.footer {
    background: var(--color-bg-primary);
    padding: 4rem 0 2rem;
    position: relative;
}

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

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    text-shadow: var(--glow-cyan);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent-cyan);
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.footer-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent-cyan), var(--color-accent-purple), transparent);
}

/* ============================================
   レスポンシブ
   ============================================ */
@media (max-width: 768px) {
    section {
        padding: 5rem 0;
    }

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

    .about-visual {
        position: static;
    }

    .hero-description br {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }
}
