/* ========================================
   Adrian Marmy — adrianmarmy.ch
   CRAZY EDITION
   ======================================== */

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

:root {
    --bg: #050508;
    --text: #f0f0f0;
    --text-muted: #888;
    --text-dim: #555;
    --accent: #4A9EE5;
    --accent2: #e54a8b;
    --accent3: #4ae5b5;
    --accent-glow: rgba(74, 158, 229, 0.15);
    --accent2-glow: rgba(229, 74, 139, 0.15);
    --border: #1a1a1a;
    --card-bg: rgba(15, 15, 20, 0.8);
    --font-heading: "Playfair Display", serif;
    --font-body: "Space Mono", monospace;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: var(--bg);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: transparent;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}

/* ========================================
   Custom Cursor
   ======================================== */

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.3s;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(74, 158, 229, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s;
}

.cursor-dot.hover {
    width: 50px;
    height: 50px;
    background: rgba(74, 158, 229, 0.15);
    mix-blend-mode: normal;
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: var(--accent);
}

.cursor-trail {
    position: fixed;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    background: var(--accent);
    opacity: 0;
    transform: translate(-50%, -50%);
}

/* ========================================
   Noise Grain Overlay
   ======================================== */

.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    pointer-events: none;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* ========================================
   Aurora Background
   ======================================== */

.aurora {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.07;
    animation: aurora-drift 20s ease-in-out infinite alternate;
}

.aurora-blob:nth-child(1) {
    width: 600px;
    height: 600px;
    background: var(--accent);
    top: -20%;
    left: -10%;
    animation-duration: 25s;
}

.aurora-blob:nth-child(2) {
    width: 500px;
    height: 500px;
    background: var(--accent2);
    top: 40%;
    right: -15%;
    animation-duration: 20s;
    animation-delay: -5s;
}

.aurora-blob:nth-child(3) {
    width: 450px;
    height: 450px;
    background: var(--accent3);
    bottom: -10%;
    left: 30%;
    animation-duration: 22s;
    animation-delay: -10s;
}

@keyframes aurora-drift {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(80px, -60px) scale(1.2) rotate(120deg); }
    66% { transform: translate(-40px, 80px) scale(0.9) rotate(240deg); }
    100% { transform: translate(60px, 20px) scale(1.1) rotate(360deg); }
}

/* ========================================
   Scanline effect
   ======================================== */

.scanlines {
    position: fixed;
    inset: 0;
    z-index: 8999;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.03) 2px,
        rgba(0, 0, 0, 0.03) 4px
    );
}

/* ========================================
   Container
   ======================================== */

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    border-left: 1px dashed #8b2020;
    border-right: 1px dashed #8b2020;
    border-image: repeating-linear-gradient(
        to bottom,
        #8b2020 0px,
        #8b2020 12px,
        transparent 12px,
        transparent 28px
    ) 1;
    border-style: dashed;
    border-width: 0 1px;
    background: rgba(0, 0, 0, 0.3);
}

/* ========================================
   Language Toggle
   ======================================== */

.lang-toggle {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    cursor: none;
    border-radius: 6px;
    transition: color 0.3s, border-color 0.3s, box-shadow 0.3s;
    font-family: var(--font-body);
    z-index: 100;
}

.lang-toggle:hover {
    color: var(--text);
    border-color: var(--accent);
    box-shadow: 0 0 20px var(--accent-glow), inset 0 0 20px var(--accent-glow);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* ========================================
   Background Name — Glitch Effect
   ======================================== */

.bg-name {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 6vh 0;
    pointer-events: none;
    user-select: none;
    opacity: 0.03;
    margin: 0;
    overflow: hidden;
}

.bg-name span {
    font-family: "Orbitron", sans-serif;
    font-weight: 900;
    font-style: normal;
    font-size: clamp(8vw, 16vw, 28rem);
    line-height: 0.85;
    letter-spacing: 0.4em;
    text-indent: 0.4em;
    color: var(--text);
    text-transform: uppercase;
    width: max-content;
    display: block;
    position: relative;
    text-align: center;
}

/* Glitch layers */
.bg-name span::before,
.bg-name span::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    text-indent: inherit;
    text-align: inherit;
}

.bg-name span::before {
    color: var(--accent);
    animation: glitch-1 4s infinite linear alternate-reverse;
    clip-path: inset(0 0 65% 0);
}

.bg-name span::after {
    color: var(--accent2);
    animation: glitch-2 3s infinite linear alternate-reverse;
    clip-path: inset(65% 0 0 0);
}

@keyframes glitch-1 {
    0%, 90% { transform: translate(0); }
    91% { transform: translate(-3px, 2px); }
    92% { transform: translate(3px, -1px); }
    93% { transform: translate(-2px, -2px); }
    94%, 100% { transform: translate(0); }
}

@keyframes glitch-2 {
    0%, 88% { transform: translate(0); }
    89% { transform: translate(4px, 1px); }
    90% { transform: translate(-3px, -2px); }
    91% { transform: translate(2px, 3px); }
    92%, 100% { transform: translate(0); }
}

@keyframes shimmer {
    0%, 100% { opacity: 0.03; }
    50% { opacity: 0.06; }
}

.bg-name {
    animation: shimmer 6s ease-in-out infinite;
}

/* ========================================
   Particle Canvas
   ======================================== */

.particle-wrapper {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent),
                        linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    -webkit-mask-composite: destination-in;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent),
                linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    mask-composite: intersect;
}

#particle-canvas {
    width: 100%;
    height: auto;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2rem 2rem;
    max-width: 1080px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-left: 1px dashed #8b2020;
    border-right: 1px dashed #8b2020;
    border-image: repeating-linear-gradient(
        to bottom,
        #8b2020 0px,
        #8b2020 12px,
        transparent 12px,
        transparent 28px
    ) 1;
    border-style: dashed;
    border-width: 0 1px;
}

.hero-sub {
    margin-top: 1rem;
    font-size: clamp(0.85rem, 2vw, 1rem);
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   CTA Button — Magnetic + Neon
   ======================================== */

.cta-button {
    display: inline-block;
    margin-top: 2.2rem;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    background: transparent;
    border: 1px solid var(--accent);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    cursor: none;
}

.cta-button::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 8px;
    background: linear-gradient(45deg, var(--accent), var(--accent2), var(--accent3), var(--accent));
    background-size: 300% 300%;
    animation: gradient-rotate 4s ease infinite;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.cta-button::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 5px;
    background: var(--bg);
    z-index: -1;
    transition: background 0.3s;
}

.cta-button:hover {
    border-color: transparent;
    color: var(--text);
    box-shadow:
        0 0 20px var(--accent-glow),
        0 0 40px var(--accent-glow),
        0 0 80px rgba(74, 158, 229, 0.08);
    text-shadow: 0 0 10px var(--accent-glow);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover::after {
    background: rgba(5, 5, 8, 0.9);
}

@keyframes gradient-rotate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ========================================
   Scroll Arrow
   ======================================== */

.scroll-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-dim);
    animation: bob 2s ease-in-out infinite;
    z-index: 2;
    text-decoration: none;
    cursor: none;
    transition: color 0.3s, filter 0.3s;
}

.scroll-arrow:hover {
    color: var(--accent);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.section {
    position: relative;
}

@keyframes bob {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.8; }
}

/* ========================================
   Sections (shared)
   ======================================== */

.section {
    padding: 8rem 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.section > .container,
.footer > .container {
    width: 100%;
}

/* ========================================
   Section Title — Scramble Animation
   ======================================== */

.section-title {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
    margin: 1rem auto 0;
    transition: width 0.8s ease;
}

.section-title.visible::after {
    width: 80px;
}

/* ========================================
   Service Cards — 3D Tilt + Glass
   ======================================== */

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    perspective: 1000px;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
    cursor: none;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, transparent, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transition: background 0.4s ease;
    pointer-events: none;
}

/* Card shine effect */
.card::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(74, 158, 229, 0.08) 0%,
        transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.card:hover {
    border-color: rgba(74, 158, 229, 0.15);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(74, 158, 229, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.card:hover::before {
    background: linear-gradient(135deg, var(--accent), var(--accent2) 50%, transparent 80%);
}

.card:hover::after {
    opacity: 1;
}

.card-icon {
    color: var(--accent);
    margin-bottom: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s;
}

.card:hover .card-icon {
    transform: scale(1.15) translateZ(20px);
    filter: drop-shadow(0 0 12px var(--accent-glow));
}

.card-title {
    font-family: "Orbitron", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    transform: translateZ(10px);
}

.card-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========================================
   Trust Section
   ======================================== */

.section-trust {
    border-top: 1px solid var(--border);
}

.trust-intro {
    text-align: center;
    margin-bottom: 3.5rem;
}

.trust-photo {
    width: 180px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    aspect-ratio: 1 / 1;
    filter: grayscale(0.2);
    transition: filter 0.4s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
    border: 2px solid transparent;
}

.trust-photo:hover {
    filter: grayscale(0);
    transform: scale(1.05);
    border-color: var(--accent);
    box-shadow:
        0 0 30px var(--accent-glow),
        0 0 60px rgba(74, 158, 229, 0.08);
}

.trust-statements {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    transition: background 0.3s, transform 0.3s;
    cursor: none;
}

.trust-item:hover {
    background: rgba(74, 158, 229, 0.03);
    transform: translateX(8px);
}

.trust-accent {
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.15rem;
    transition: text-shadow 0.3s;
}

.trust-item:hover .trust-accent {
    text-shadow: 0 0 12px var(--accent-glow);
}

.trust-item p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.7;
    color: var(--text-muted);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    padding: 6rem 0 3rem;
    text-align: center;
    border-top: 1px solid var(--border);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.footer-glow {
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
        rgba(74, 158, 229, 0.06) 0%,
        rgba(229, 74, 139, 0.04) 40%,
        transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: footer-pulse 8s ease-in-out infinite;
}

@keyframes footer-pulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.footer > .container {
    position: relative;
    z-index: 1;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 3rem auto;
    transition: width 0.6s;
}

.footer:hover .footer-divider {
    width: 120px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.05em;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-dim);
    opacity: 0.5;
}

.footer-headline {
    font-family: "Orbitron", sans-serif;
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-email {
    display: inline-block;
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.3s, text-shadow 0.3s, letter-spacing 0.3s;
    cursor: none;
}

.footer-email:hover {
    border-color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
    letter-spacing: 0.08em;
}

.footer-location {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
}

/* ========================================
   Fade-in Animation
   ======================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger cards */
.cards-grid .card:nth-child(2) { transition-delay: 0.15s; }
.cards-grid .card:nth-child(3) { transition-delay: 0.3s; }

/* Stagger trust items */
.trust-item:nth-child(2) { transition-delay: 0.1s; }
.trust-item:nth-child(3) { transition-delay: 0.2s; }
.trust-item:nth-child(4) { transition-delay: 0.3s; }

/* ========================================
   Scroll Progress Bar
   ======================================== */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3));
    z-index: 10000;
    transform-origin: left;
    transform: scaleX(0);
    transition: none;
}

/* ========================================
   Floating Particles (ambient)
   ======================================== */

.ambient-particle {
    position: fixed;
    width: 2px;
    height: 2px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    animation: float-up linear infinite;
}

@keyframes float-up {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0);
    }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% {
        opacity: 0;
        transform: translateY(-100vh) translateX(50px);
    }
}

/* ========================================
   Back to Top Button
   ======================================== */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 52px;
    height: 52px;
    border: none;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.4s,
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    box-shadow:
        0 0 20px var(--accent-glow),
        0 0 40px rgba(74, 158, 229, 0.08),
        inset 0 0 20px rgba(74, 158, 229, 0.05);
}

.back-to-top:active {
    transform: translateY(0) scale(0.92);
}

/* Arrow icon */
.btt-icon {
    position: absolute;
    color: var(--accent);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s;
    z-index: 2;
}

.back-to-top:hover .btt-icon {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 6px var(--accent-glow));
}

/* SVG ring progress */
.btt-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    z-index: 1;
}

.btt-ring circle {
    fill: none;
    stroke: var(--accent);
    stroke-width: 2;
    stroke-dasharray: 289;
    stroke-dashoffset: 289;
    stroke-linecap: round;
    transition: stroke 0.3s;
}

.back-to-top:hover .btt-ring circle {
    stroke: var(--accent2);
}

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .cursor-dot,
    .cursor-ring,
    .cursor-trail {
        display: none !important;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .section {
        padding: 4rem 0;
        min-height: auto;
    }

    .section-title {
        margin-bottom: 2.5rem;
    }

    .card {
        padding: 2rem 1.5rem;
        cursor: auto;
    }

    .trust-statements {
        gap: 2rem;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-content {
        padding: 0 1.2rem 1.5rem;
    }

    .particle-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .footer {
        padding: 4rem 0 2rem;
        min-height: auto;
    }

    .footer-glow {
        width: 100%;
        max-width: 400px;
    }

    .bg-name span {
        letter-spacing: 0.3em;
        text-indent: 0.3em;
    }

    .trust-photo {
        width: 140px;
    }

    .container,
    .hero-content {
        border-left: none;
        border-right: none;
    }

    .trust-item {
        cursor: auto;
    }

    .cta-button,
    .scroll-arrow,
    .footer-email,
    .lang-toggle,
    .back-to-top {
        cursor: auto;
    }

    .aurora-blob {
        opacity: 0.04;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 0 1rem 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .card {
        padding: 1.5rem 1.2rem;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .footer-headline {
        font-size: 1.1rem;
    }

    .trust-item {
        gap: 0.8rem;
    }

    .bg-name span {
        letter-spacing: 0.2em;
        text-indent: 0.2em;
    }
}
