:root {
    --bg-white: #FFFFFF;
    --bg-warm: #FFFCF8;
    --bg-alt: #F4F4F5;
    --bg-dark: #0F0F0F;
    --text-main: #111111;
    --text-body: #555555;
    --text-white: #FFFFFF;
    --primary: #C84A2E;
    --primary-dark: #A83E20;
    --primary-light: rgba(200, 74, 46, 0.08);
    --primary-on-dark: #FF9E7A;
    --border-light: rgba(0, 0, 0, 0.06);
    --border-dark: rgba(255, 255, 255, 0.1);
    --radius: 12px;
    --header-h: 80px;
    --topbar-h: 24px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
}
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}
body {
    background-color: var(--bg-white);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text-main);
}
h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    letter-spacing: -0.02em;
}
h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: -0.01em;
}
h3 {
    font-size: 1.35rem;
}
p {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 1.5rem;
    max-width: 60ch;
}
.text-center {
    text-align: center;
}
.text-center p {
    margin-left: auto;
    margin-right: auto;
}
.text-center h2 {
    margin-left: auto;
    margin-right: auto;
}
.text-center .label {
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
}
.text-center.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.section, .reviews-section, .faq-section, .footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 1000px; /* Approximation of section height to prevent scrollbar jumping */
}
.label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #6B2810;
    display: block;
    margin-bottom: 1rem;
}
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}
.section {
    padding: 50px 0;
}
@media (max-width: 768px) {
.section {
        padding: 42px 0;
    }
    /* Fix excessive 4rem (64px) margins on tablet */
.text-center[style*="margin-bottom: 4rem"], .text-center[style*="margin-bottom: 60px"], div[style*="margin-bottom: 4rem"], div[style*="margin-bottom: 60px"] {
        margin-bottom: 2.5rem !important;
    }
}
@media (max-width: 480px) {
.section {
        padding: 40px 0;
    }
    /* Fix excessive 4rem (64px) margins on mobile */
.text-center[style*="margin-bottom: 4rem"], .text-center[style*="margin-bottom: 60px"], div[style*="margin-bottom: 4rem"], div[style*="margin-bottom: 60px"] {
        margin-bottom: 2rem !important;
    }
}
.d-flex {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.justify-center {
    justify-content: center;
}
.bg-white {
    background-color: var(--bg-white);
}
.bg-warm {
    background-color: var(--bg-warm);
}
.bg-alt {
    background-color: var(--bg-alt);
}
.bg-dark {
    background-color: var(--bg-dark);
    color: var(--text-white);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.2s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(217, 109, 72, 0.25);
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}
.btn-secondary {
    background: white;
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.1);
}
.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-outline-white {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}
.btn-outline-white:hover {
    background: white;
    color: black;
}
.btn-full {
    width: 100%;
}
@keyframes gradientMove {
0% {
        background-position: 0% 50%;
    }
100% {
        background-position: 200% 50%;
    }
}
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-height: var(--topbar-h);
    background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    background-size: 200% auto;
    animation: gradientMove 4s linear infinite;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 600;
    z-index: 10000;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    padding: 2px 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}
.top-bar .container {
    padding: 0;
    max-width: 100%;
    text-align: center;
}
.top-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 4px 8px;
    text-decoration: none;
    color: inherit;
}
.top-bar span {
    white-space: normal;
    word-break: break-word;
    text-align: center;
    line-height: 1.4;
}
.navbar {
    position: fixed;
    top: var(--topbar-h);
    width: 100%;
    height: auto;
    background: transparent;
    border: none;
    z-index: 9999;
    display: flex;
    justify-content: center;
    padding: 10px 20px;
    pointer-events: none;
    margin-bottom: 0;
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 10px;
    padding: 6px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    pointer-events: auto;
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin: 0 auto;
}
.top-bar.hidden {
    transform: translateY(-100%);
}
.navbar.scrolled .nav-inner {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.98);
}
.logo img {
    height: 28px;
    width: auto;
    display: block;
}
.nav-menu {
    display: flex;
    gap: 28px;
    align-items: center;
}
.nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}
.nav-link:hover {
    color: var(--primary);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}
.nav-link:hover::after {
    width: 100%;
}
a.nav-link-new {
    position: relative !important;
    display: inline-block !important;
}
span.nav-badge {
    position: absolute !important;
    top: -10px !important;
    right: -8px !important;
    transform: rotate(-8deg) !important;
    padding: 2px 6px !important;
    background: var(--primary) !important;
    color: #fff !important;
    font-size: 0.5rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
    border-radius: 3px !important;
    box-shadow: 0 2px 6px rgba(217, 109, 72, 0.3) !important;
    z-index: 999 !important;
    border: 1.5px solid rgba(255, 255, 255, 0.9) !important;
    pointer-events: none !important;
    white-space: nowrap !important;
    line-height: 1 !important;
}
.nav-link-new:hover .nav-badge {
    box-shadow: 0 3px 8px rgba(217, 109, 72, 0.4);
}
.nav-dropdown {
    position: relative;
}
.nav-dropdown .nav-link i {
    transition: transform 0.3s ease;
}
.nav-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 30px;
    background: transparent;
    z-index: 999;
}
.nav-dropdown-content {
    position: absolute;
    top: calc(100% + 25px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
}
.nav-dropdown:hover .nav-dropdown-content {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    top: calc(100% + 20px);
}
.nav-dropdown-content a {
    display: block;
    padding: 12px 24px;
    color: var(--text-body);
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}
.nav-dropdown-content a:hover {
    background: var(--bg-warm);
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 28px;
}
.desktop-cta {
    display: block;
}
.desktop-cta .btn {
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
}
.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: var(--bg-warm);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.mobile-toggle:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 109, 72, 0.25);
}
.mobile-toggle:hover .hamburger-bar {
    background: white;
}
.mobile-toggle:active {
    transform: translateY(0) scale(0.95);
}
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 20px;
    height: 16px;
    align-items: center;
}
.hamburger-bar {
    height: 2px;
    background: var(--text-main);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}
.hamburger-bar:nth-child(1) {
    width: 20px;
}
.hamburger-bar:nth-child(2) {
    width: 20px;
}
.hamburger-bar:nth-child(3) {
    width: 20px;
}
.hero {
    padding-top: 160px;
    padding-bottom: 110px;
    background: linear-gradient(135deg, var(--bg-warm) 0%, white 100%);
    position: relative;
}
.hero-oversikt {
    background: linear-gradient(135deg, #FAFAF9 0%, #E7E5E4 100%);
    border-bottom: 1px solid rgba(231, 229, 228, 0.5);
    padding-top: 180px;
}
@media (max-width: 768px) {
.hero-oversikt {
        padding-top: 140px;
        padding-bottom: 60px;
    }
}
@media (max-width: 480px) {
.hero-oversikt {
        padding-top: 160px;
        padding-bottom: 50px;
    }
}
.hero-nyhemsida {
    background: linear-gradient(135deg, #FEF9C3 0%, #FEF08A 100%);
    border-bottom: 1px solid rgba(254, 249, 195, 0.5);
}
.hero-nyhemsida .hero-grid {
    grid-template-columns: 1fr;
    max-width: 900px;
}
.hero-nyhemsida .hero-content {
    max-width: 100%;
}
.hero-seo {
    background: linear-gradient(135deg, #EEF2FF 0%, #C7D2FE 100%);
    border-bottom: 1px solid rgba(199, 210, 254, 0.5);
}
.hero-annonsering {
    background: linear-gradient(135deg, #FFF1F2 0%, #FECDD3 100%);
    border-bottom: 1px solid rgba(254, 205, 211, 0.5);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: white;
    padding: 10px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    max-width: 450px;
    margin-top: 2rem;
}
.hero-form input {
    border: none;
    padding: 14px 16px;
    font-size: 1rem;
    outline: none;
    font-family: 'Inter', sans-serif;
    background: #f9f9f9;
    border-radius: 8px;
}
.hero-form button {
    padding: 14px 24px;
    border-radius: 8px;
}
.hero-benefits {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-body);
    justify-content: flex-start;
    flex-wrap: wrap;
}
.hero-visual {
    position: relative;
}
.phone-mockup {
    position: absolute;
    bottom: -80px;
    right: -40px;
    width: 200px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.25));
}
.phone-frame {
    position: relative;
    width: 100%;
    background: #1a1a1a;
    border-radius: 24px;
    padding: 4px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}
.phone-screen {
    width: 100%;
    height: auto;
    border-radius: 20px;
    overflow: hidden;
    background: transparent;
}
.phone-screen img {
    width: 100%;
    height: auto;
    display: block;
}
.hero-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 16px;
    z-index: -1;
    opacity: 0.15;
}
.hero-img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid white;
    position: relative;
    transform: rotate(0deg);
    transition: transform 0.4s ease;
}
.hero-img:hover {
    transform: scale(1.02);
}
.hero-about {
    padding: 160px 0 110px;
    background: linear-gradient(135deg, #F0F9FF 0%, #BAE6FD 100%);
    position: relative;
    overflow: hidden;
}
.hero-about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(3, 105, 161, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-about::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-contact {
    padding: 160px 0 110px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF7ED 100%);
    position: relative;
    overflow: hidden;
}
.hero-contact::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(217, 109, 72, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-contact::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(217, 109, 72, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-contact .container {
    max-width: 1240px;
    position: relative;
    z-index: 1;
}
.hero-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-contact-content {
    text-align: left;
}
.hero-contact-content .label {
    color: #6B2810;
}
.hero-contact-content h1 {
    margin-bottom: 1.5rem;
}
.hero-contact-content p {
    margin-bottom: 2rem;
    max-width: 540px;
}
.hero-contact-visual {
    position: relative;
}
@keyframes float-1 {
    0%,
100% {
        transform: translateY(0px);
    }
50% {
        transform: translateY(-10px);
    }
}
@keyframes float-2 {
    0%,
100% {
        transform: translateY(0px);
    }
50% {
        transform: translateY(-15px);
    }
}
@keyframes float-3 {
    0%,
100% {
        transform: translateY(0px);
    }
50% {
        transform: translateY(-12px);
    }
}
.hero-case {
    padding: 160px 0 120px;
    background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 50%, #0f1419 100%);
    position: relative;
    overflow: hidden;
}
.hero-case::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(217, 109, 72, 0.1) 0%, transparent 50%);
    pointer-events: none;
}
.hero-case .container {
    position: relative;
    z-index: 1;
}
.btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 1.05rem;
    box-shadow: 0 0 30px rgba(217, 109, 72, 0.4), 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}
.btn-glow:hover {
    box-shadow: 0 0 40px rgba(217, 109, 72, 0.6), 0 15px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}
.btn-glow i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}
.btn-glow:hover i {
    transform: translateY(3px);
}
@keyframes pulse-glow {
    0%,
100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}
@keyframes float-badge {
    0%,
100% {
        transform: translateY(0px);
    }
50% {
        transform: translateY(-10px);
    }
}
.case-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
}
.hero-visual::after {
    content: 'KUNDCASE';
    position: absolute;
    top: -15px;
    left: -15px;
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    box-shadow: 0 8px 20px rgba(217, 109, 72, 0.4);
    z-index: 10;
}
.marquee-section {
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 30px 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-warm) 0%, white 100%);
}
.marquee-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 40s linear infinite;
    align-items: center;
}
.service-item {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0 20px;
}
.service-item::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.6rem;
}
@keyframes scroll {
0% {
        transform: translateX(0);
    }
100% {
        transform: translateX(-50%);
    }
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.service-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(217, 109, 72, 0.3);
}
.service-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-warm);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 24px;
    transition: background 0.3s;
}
.service-card:hover .service-icon {
    background: var(--primary);
    color: white;
}
.cases-shell {
    position: relative;
    margin-top: 3rem;
}
.cases-grid {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 40px 40px 40px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255, 255, 255, 0.1);
    -webkit-overflow-scrolling: touch;
}
.cases-grid::-webkit-scrollbar {
    height: 8px;
}
.cases-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
.cases-grid::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
.case-item {
    position: relative;
    flex: 0 0 700px;
    height: 394px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    scroll-snap-align: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    will-change: transform;
}
.case-item.featured {
    flex: 0 0 700px;
    height: 394px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform-origin: center;
}
.case-item.featured:hover {
    transform: translateY(-6px);
}
.case-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    will-change: transform;
}
.case-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.2) 30%,
            rgba(0, 0, 0, 0.92) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    color: white;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.case-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 50px;
    margin-bottom: 16px;
    width: fit-content;
    box-shadow: 0 4px 12px rgba(217, 109, 72, 0.4);
}
.case-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: white;
    font-weight: 800;
    line-height: 1.1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.case-item.featured .case-overlay h3 {
    font-size: 2rem;
}
.case-overlay p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 450px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.case-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(217, 109, 72, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.5);
    z-index: 10;
}
.case-item:hover {
    transform: translateY(-4px);
}
.case-item:hover img {
    transform: scale(1.05);
}
.case-item:hover .case-overlay {
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            rgba(0, 0, 0, 0.98) 100%);
}
.case-item:hover .case-overlay h3 {
    transform: translateY(-6px);
}
.case-item:hover .case-overlay p {
    opacity: 1;
    transform: translateY(0);
}
.case-item:hover .case-arrow {
    opacity: 1;
    transform: scale(1);
}
.case-item.featured:hover .case-arrow {
    transform: scale(1) rotate(-45deg);
}
.cases-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cases-nav i {
    font-size: 1rem;
}
.cases-nav:hover {
    background: rgba(217, 109, 72, 0.9);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 20px 50px rgba(217, 109, 72, 0.4);
}
.cases-nav:active {
    transform: translateY(-50%) scale(0.95);
}
.cases-nav--prev {
    left: 10px;
}
.cases-nav--next {
    right: 10px;
}
.cases-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    pointer-events: none;
    z-index: 4;
}
.cases-fade--left {
    left: 0;
    background: linear-gradient(90deg, #0F0F0F 0%, rgba(15, 15, 15, 0.8) 40%, transparent 100%);
}
.cases-fade--right {
    right: 0;
    background: linear-gradient(270deg, #0F0F0F 0%, rgba(15, 15, 15, 0.8) 40%, transparent 100%);
}
.reviews-section {
    background: linear-gradient(135deg, #FFFCF8 0%, #F8F5F0 100%);
    position: relative;
    overflow: hidden;
}
.reviews-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 109, 72, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.reviews-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}
.reviews-container::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(217, 109, 72, 0.1);
    line-height: 1;
    pointer-events: none;
}
.pricing-section {
    background: white;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}
.price-card {
    background: white;
    padding: 40px 36px;
    border-radius: 20px;
    border: 2px solid rgba(0, 0, 0, 0.06);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(217, 109, 72, 0.3);
}
.price-card:hover::before {
    transform: scaleX(1);
}
.price-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 24px;
    transition: all 0.4s ease;
}
.price-card:hover .price-icon {
    transform: scale(1.1) rotate(5deg);
}
.price-card.featured {
    background: linear-gradient(135deg, var(--text-main) 0%, #1a1a1a 100%);
    color: white;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    transform: scale(1.03);
    z-index: 2;
    border: 2px solid rgba(217, 109, 72, 0.3);
}
.price-card.featured::before {
    height: 100%;
    background: linear-gradient(135deg, rgba(217, 109, 72, 0.15), rgba(176, 80, 48, 0.15));
    transform: scaleX(1);
    pointer-events: none;
}
.price-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
}
.featured-icon {
    background: rgba(217, 109, 72, 0.2);
    color: var(--primary);
}
.price-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary);
    color: white;
    padding: 6px 40px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(217, 109, 72, 0.4);
    pointer-events: none;
}
.price-card h3 {
    margin-bottom: 8px;
    font-size: 1.75rem;
    color: var(--text-main);
}
.price-card.featured h3 {
    color: white;
}
.price-desc {
    font-size: 0.95rem;
    margin-bottom: 32px;
    color: var(--text-body);
    opacity: 0.8;
}
.price-card.featured .price-desc {
    color: rgba(255, 255, 255, 0.7);
}
.price-list {
    margin-bottom: 36px;
    width: 100%;
    text-align: left;
    flex: 1;
}
.price-list li {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-body);
    font-size: 0.95rem;
}
.price-card.featured .price-list li {
    color: rgba(255, 255, 255, 0.9);
}
.price-list i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}
.price-card.featured .price-list i {
    color: var(--primary);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--text-main);
    color: var(--text-main);
    padding: 14px 32px;
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
}
.btn-outline:hover {
    background: var(--text-main);
    color: white;
    transform: translateY(-2px);
}
.faq-section {
    background: var(--bg-alt);
}
.faq-container {
    background: white;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.faq-item {
    border-radius: 12px;
    margin-bottom: 8px;
    background: transparent;
    transition: all 0.3s ease;
}
.faq-item:last-child {
    margin-bottom: 0;
}
.faq-head {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-main);
    transition: all 0.3s ease;
    border-radius: 12px;
}
.faq-head:hover {
    background: var(--bg-warm);
}
.faq-item.active .faq-head {
    background: var(--bg-warm);
    color: var(--primary);
}
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 24px;
}
.faq-item.active .faq-body {
    max-height: 300px;
    padding: 0 24px 20px 24px;
}
.faq-body p {
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
}
.faq-icon {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    color: var(--text-body);
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}
.cta-section {
    position: relative;
    padding: 100px 0;
    color: white;
    text-align: center;
    background-color: #111;
    overflow: hidden;
}
.cta-simple {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: white;
    padding: 80px 0;
}
.cta-simple .cta-content {
    max-width: 900px;
}
.cta-simple h2 {
    color: white;
    text-shadow: none;
}
.cta-simple p {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: none;
}
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}
.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.cta-content p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}
.cta-form {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    justify-content: center;
    margin-top: 2.5rem;
}
.cta-input {
    padding: 16px 24px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    flex: 1;
    max-width: 250px;
    background: white;
    color: var(--text-main);
    font-family: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.cta-input:focus {
    outline: none;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}
.cta-input::placeholder {
    color: var(--text-body);
    opacity: 0.7;
}
@media (max-width: 768px) {
.cta-form {
        flex-direction: column;
        gap: 16px;
    }
.cta-input {
        max-width: 100%;
        width: 100%;
    }
.cta-form .btn {
        width: 100%;
    }
}
.footer {
    background: var(--bg-warm);
    color: var(--text-main);
    padding: 80px 0 40px;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 109, 72, 0.2), transparent);
}
.footer-trust {
    margin-top: 16px;
}
.footer-copy {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(85, 85, 85, 0.6);
}
.footer-divider {
    color: rgba(85, 85, 85, 0.3);
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: var(--text-body);
    transition: all 0.3s ease;
    font-size: 1rem;
    text-decoration: none;
}
.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(217, 109, 72, 0.3);
}
.footer-modern {
    background: linear-gradient(180deg, #0e0e0f 0%, #0a0a0b 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 70px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-modern::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}
.footer-modern .label {
    color: #6B2810;
}
.footer-cta {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 24px;
    margin-bottom: 40px;
    background: linear-gradient(120deg, rgba(217, 109, 72, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.footer-cta .label {
    color: #FF9E7A;
}
.footer-cta h3 {
    color: white;
    margin-bottom: 6px;
}
.footer-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    white-space: nowrap;
}

@media (max-width: 1200px) {
    .footer-cta p {
        white-space: normal;
    }
}
.footer-cta-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.footer-cta .btn {
    box-shadow: none;
}
.footer-grid-modern {
    display: grid;
    grid-template-columns: 1.2fr repeat(2, 1fr) 1fr;
    gap: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 34px;
    margin-bottom: 34px;
}
.footer-brand img {
    filter: brightness(0) invert(1);
    margin-bottom: 14px;
}
.footer-brand p {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
}
.footer-links h4, .footer-contact h4 {
    margin-bottom: 12px;
    color: white;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}
.footer-list a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    padding-left: 0;
}
.footer-list a:hover {
    color: var(--primary);
    padding-left: 6px;
}
.footer-contact {
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    padding-top: 4px;
}
.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.footer-contact a:hover {
    color: var(--primary);
}
.footer-contact i {
    color: var(--primary);
    width: 16px;
}
.footer-contact p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}
.footer-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    width: fit-content;
    margin-top: 6px;
    font-weight: 700;
    letter-spacing: 0.03em;
}
.footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 22px;
}
.footer-grid-modern>div {
    align-self: flex-start;
}
.footer-meta .footer-copy {
    color: rgba(255, 255, 255, 0.6);
}
.footer-meta .footer-social a {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
}
.footer-meta .footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}
.footer-modern .footer-divider {
    color: rgba(255, 255, 255, 0.4);
}
.footer-modern .footer-trust {
    filter: none;
    max-width: none;
    width: 100%;
}
.footer-modern .footer-trust img {
    filter: none !important;
}
@media (max-width: 1024px) {
.footer-cta {
        flex-direction: column;
    }
.footer-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
.footer-modern {
        padding: 60px 0 32px;
    }
.footer-cta {
        padding: 18px;
        gap: 16px;
        margin-bottom: 28px;
    }
.footer-grid-modern {
        grid-template-columns: 1fr;
        gap: 22px;
        padding-top: 24px;
        border-top-width: 0;
    }
.footer-grid-modern>div {
        padding-top: 6px;
    }
.footer-meta {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        text-align: center;
    }
.footer-meta .footer-copy {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
.footer-meta .footer-social {
        justify-content: center;
        width: 100%;
    }
}
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--bg-warm) 0%, white 100%);
    z-index: 20000;
    display: none;
    flex-direction: column;
    overflow-y: auto;
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes slideIn {
from {
        opacity: 0;
        transform: translateX(100%);
    }
to {
        opacity: 1;
        transform: translateX(0);
    }
}
.mm-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 10;
}
.mm-close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--bg-alt);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1.2rem;
}
.mm-close:hover {
    background: var(--primary);
    color: white;
    transform: rotate(90deg);
}
.mm-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
}
.mm-nav {
    flex: 1;
}
.mm-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    color: var(--text-main);
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}
.mm-link:hover {
    color: var(--primary);
    padding-left: 8px;
}
.mm-link-highlight {
    color: var(--primary);
}
.mm-link-badge {
    position: relative;
}
.mm-badge {
    background: var(--primary);
    color: white;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(217, 109, 72, 0.3);
}
.mm-trigger {
    cursor: pointer;
}
.mm-chevron {
    width: auto !important;
    margin-left: auto;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem !important;
}
.mm-trigger.active .mm-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}
.mm-dropdown {
    background: white;
    padding: 0;
    border-radius: 12px;
    margin: 0 0 8px 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}
.mm-dropdown.open {
    max-height: 500px;
    padding: 8px;
}
.mm-dropdown a {
    display: block;
    padding: 14px 20px;
    color: var(--text-body);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    opacity: 0;
    transform: translateX(-10px);
}
.mm-dropdown.open a {
    opacity: 1;
    transform: translateX(0);
}
.mm-dropdown.open a:nth-child(1) {
    transition-delay: 0.05s;
}
.mm-dropdown.open a:nth-child(2) {
    transition-delay: 0.1s;
}
.mm-dropdown.open a:nth-child(3) {
    transition-delay: 0.15s;
}
.mm-dropdown.open a:nth-child(4) {
    transition-delay: 0.2s;
}
.mm-dropdown.open a:nth-child(5) {
    transition-delay: 0.25s;
}
.mm-dropdown.open a:nth-child(6) {
    transition-delay: 0.3s;
}
.mm-dropdown a:last-child {
    border-bottom: none;
}
.mm-dropdown a:hover {
    color: var(--primary);
    padding-left: 24px;
    background: rgba(217, 109, 72, 0.05);
}
.mm-footer {
    margin-top: auto;
    padding-top: 30px;
}
.mm-footer .btn {
    margin-bottom: 20px;
}
.mm-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.mm-contact a {
    color: var(--text-body);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}
.mm-contact a:hover {
    color: var(--primary);
}
.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
}
.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 42px;
}
.section-heading h2 {
    margin-bottom: 10px;
}
.section-heading p {
    margin-bottom: 0;
}
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    align-items: start;
}
.info-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
    height: 100%;
}
.info-card h3 {
    margin-bottom: 10px;
}
.info-card p {
    margin-bottom: 0;
}
.icon-circle {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary);
    margin-bottom: 14px;
    font-size: 1.1rem;
}
.pill-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 16px;
}
.pill-list li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    font-weight: 600;
    width: fit-content;
    box-shadow: var(--shadow-sm);
}
.timeline {
    position: relative;
    border-left: 2px solid var(--border-light);
    padding-left: 24px;
    display: grid;
    gap: 16px;
}
.timeline-item {
    position: relative;
    padding-left: 6px;
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--primary);
    box-shadow: 0 6px 14px rgba(217, 109, 72, 0.3);
}
.timeline-year {
    display: inline-block;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    margin-bottom: 6px;
}
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.case-card {
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
}
.case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(217, 109, 72, 0.35);
}
.case-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.case-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}
.case-body h3 {
    margin-bottom: 0;
}
.case-body p {
    margin-bottom: 0;
    font-size: 0.98rem;
}
.case-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    margin-top: auto;
}
.contact-form {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    padding: 30px;
    box-shadow: var(--shadow-md);
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}
.form-input, .form-textarea, .form-select {
    width: 100%;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 14px 14px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    background: #FFFEFC;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-textarea {
    min-height: 140px;
    resize: vertical;
}
.form-select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #999 50%),
        linear-gradient(135deg, #999 50%, transparent 50%),
        linear-gradient(to right, #ccc, #ccc);
    background-position: calc(100% - 20px) calc(50% - 4px), calc(100% - 14px) calc(50% - 4px), calc(100% - 40px) 50%;
    background-size: 7px 7px, 7px 7px, 1px 24px;
    background-repeat: no-repeat;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
    outline: none;
    border-color: rgba(217, 109, 72, 0.6);
    box-shadow: 0 0 0 4px rgba(217, 109, 72, 0.12);
}
.message-area {
    display: none;
    padding: 12px 14px;
    border-radius: 12px;
    margin-top: 10px;
    background: var(--primary-light);
    color: var(--text-main);
}
.cta-panel {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #0F0F0F 0%, #1B120F 100%);
    color: white;
    border-radius: 16px;
    padding: 36px;
    box-shadow: var(--shadow-lg);
}
.cta-panel::after {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(217, 109, 72, 0.25) 0%, rgba(217, 109, 72, 0) 70%);
}
.cta-panel h2 {
    color: white;
    margin-bottom: 8px;
}
.cta-panel p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 18px;
}
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
@media (max-width: 480px) {
.mm-content {
        padding: 20px;
    }
.mm-link {
        font-size: 1rem;
        padding: 14px 16px;
    }
.mm-dropdown a {
        font-size: 0.9rem;
        padding: 10px 14px;
    }
}
@media (max-width: 1024px) {
.services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
.pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
.pricing-grid .price-card:last-child {
        grid-column: span 2;
    }
.hero-about {
        padding: 90px 0 70px;
    }
.hero-contact {
        padding: 90px 0 70px;
    }
.hero-case {
        padding: 90px 0 70px;
    }
}
@media (max-width: 768px) {
.top-bar {
        padding: 2px 0;
    }
.top-bar a {
        padding: 4px 0;
    }
.hero {
        padding-top: 140px;
        padding-bottom: 50px;
    }
.hero-oversikt, .hero-nyhemsida, .hero-seo, .hero-annonsering {
        padding-top: 140px;
        padding-bottom: 50px;
    }
.hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
.hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
.hero-content p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
.hero-form {
        margin: 1.5rem auto;
        flex-direction: column;
        padding: 0.75rem;
        max-width: 100%;
        gap: 0;
    }
.hero-form input {
        text-align: center;
        padding: 14px;
        margin-bottom: 8px;
        background: #f9f9f9;
        border-radius: 8px;
    }
.hero-form button {
        width: 100%;
        padding: 14px;
        margin-top: 4px;
    }
.hero-benefits {
        justify-content: center;
        flex-wrap: wrap;
    }
.cases-grid {
        padding: 20px; 
        gap: 16px;
        scroll-padding-left: 20px; 
    }
.case-item, .case-item.featured {
        flex: 0 0 100%; 
        height: auto;
        aspect-ratio: 16/9; 
    }
.case-item img {
        object-fit: cover; 
    }
.phone-mockup {
        width: 120px;
        bottom: -40px;
        right: -20px;
    }
.phone-frame {
        padding: 4px;
        border-radius: 20px;
    }
.phone-screen {
        border-radius: 16px;
    }
.services-grid, .pricing-grid {
        grid-template-columns: 1fr;
    }
.pricing-grid .price-card:last-child {
        grid-column: span 1;
    }
.price-card.featured {
        transform: none;
    }
.nav-menu, .desktop-cta {
        display: none;
    }
.mobile-toggle {
        display: flex;
    }
h1 {
        font-size: 2.5rem;
    }
.footer {
        padding: 60px 0 30px;
    }
.footer-copy {
        flex-direction: column;
        gap: 8px;
    }
.footer-divider {
        display: none;
    }
.top-bar {
        font-size: 0.7rem;
        letter-spacing: 0.02em;
        padding: 0 15px;
    }
.case-item {
        flex: 0 0 85vw;
        height: auto;
        flex-direction: column;
        display: flex;
    }
.case-item.featured {
        flex: 0 0 90vw;
        height: auto;
    }
.case-item img {
        position: relative;
        height: 200px;
        object-fit: cover;
    }
.case-overlay {
        position: relative;
        padding: 16px;
        background: #0F0F0F;
        color: white;
    }
.case-overlay h3 {
        font-size: 1.1rem;
        color: white;
    }
.case-tag {
        background: var(--primary);
        color: white;
        margin-bottom: 8px;
    }
.case-item.featured .case-overlay h3 {
        font-size: 1.2rem;
    }
.case-overlay p {
        font-size: 0.9rem;
        opacity: 1;
        transform: translateY(0);
        color: rgba(255, 255, 255, 0.8);
    }
.case-arrow {
        display: none;
    }
.cases-shell .cases-grid {
        gap: 16px;
        padding: 10px 20px 30px 20px;
        scrollbar-width: auto;
    }
.cases-shell .cases-grid::-webkit-scrollbar {
        height: 6px;
    }
.cases-shell .cases-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 10px;
        margin: 0 20px;
    }
.cases-shell .cases-grid::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 10px;
    }
.cases-nav {
        width: 40px;
        height: 40px;
        display: flex;
        top: 45%;
    }
.cases-nav--prev {
        left: 5px;
    }
.cases-nav--next {
        right: 5px;
    }
.cases-nav i {
        font-size: 0.9rem;
    }
.cases-fade {
        display: none;
    }
.contact-form {
        padding: 22px;
    }
.cta-panel {
        text-align: center;
    }
.cta-actions {
        justify-content: center;
    }
}
@media (max-width: 480px) {
.top-bar {
        font-size: 0.65rem;
        letter-spacing: 0.01em;
        padding: 0 10px;
    }
.hero-oversikt, .hero-nyhemsida, .hero-seo, .hero-annonsering {
        padding-top: 70px;
        padding-bottom: 50px;
    }
.hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.15;
    }
.hero-content p {
        font-size: 0.95rem;
    }
.case-card img {
        height: 150px;
    }
.chip {
        width: 100%;
        justify-content: center;
    }
.cta-panel {
        padding: 26px;
    }
.footer-meta .footer-copy {
        justify-content: center;
        flex-wrap: wrap;
    }
.hero-about {
        padding: 70px 0 50px;
    }
.hero-contact {
        padding: 70px 0 50px;
    }
.hero-case {
        padding: 70px 0 50px;
    }
}
@media (max-width: 1024px) {
.hero-contact-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
.hero-contact-content {
        text-align: center;
    }
.hero-contact-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
.hero-contact-visual {
        order: -1;
    }
}
@media (max-width: 768px) {
.hero-contact {
        padding: 90px 0 70px;
    }
.hero-contact-inner {
        gap: 30px;
    }
}
@media (max-width: 480px) {
.hero-contact {
        padding: 70px 0 50px;
    }
.hero-contact::before {
        width: 300px;
        height: 300px;
        top: -60px;
        right: -60px;
    }
.hero-contact::after {
        width: 250px;
        height: 250px;
        bottom: -50px;
        left: -50px;
    }
.hero-contact-content h1 {
        font-size: 2rem;
    }
}
.hero-campaign {
            background-color: #0a0a0a;
            background-image:
                radial-gradient(circle at 20% 30%, rgba(217, 109, 72, 0.15) 0%, transparent 40%),
                linear-gradient(180deg, #000000 0%, #1a1a1a 100%);
            color: white;
            padding: 140px 0 80px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
.bw-badge {
            background: var(--primary);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 1.5rem;
            box-shadow: 0 0 20px rgba(217, 109, 72, 0.6);
            border: 2px solid rgba(255, 255, 255, 0.2);
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
0% {
                transform: scale(1);
            }
50% {
                transform: scale(1.05);
            }
100% {
                transform: scale(1);
            }
        }
.hero-campaign h1 {
            font-size: 4.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -1px;
            color: white;
            text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
        }
.hero-campaign h1 span {
            color: var(--primary);
        }
.campaign-intro {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto;
            color: #e0e0e0;
            font-weight: 400;
            line-height: 1.6;
        }
.countdown-wrapper {
            margin-top: 3rem;
            background: rgba(255, 255, 255, 0.05);
            display: inline-block;
            padding: 20px 40px;
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
.countdown-title {
            color: var(--primary);
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 15px;
            text-transform: uppercase;
            font-size: 0.9rem;
        }
.countdown-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
.countdown-box {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
.countdown-number {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            font-family: 'Outfit', sans-serif;
            line-height: 1;
        }
.countdown-label {
            font-size: 0.8rem;
            color: #aaa;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 5px;
        }
.offer-section {
            padding: 80px 0;
            background: #fff;
            position: relative;
        }
.main-deal-card {
            background: white;
            border-radius: 30px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            border: 1px solid #eee;
            max-width: 900px;
            margin: -100px auto 0;
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
        }
.deal-content {
            padding: 50px;
        }
.deal-visual {
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            border-left: 1px solid #eee;
            flex-direction: column;
            text-align: center;
        }
.deal-tag {
            background: #000;
            color: white;
            padding: 6px 12px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            margin-bottom: 1rem;
            display: inline-block;
        }
.deal-price {
            font-size: 4rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin: 10px 0;
        }
.deal-price span {
            font-size: 1.2rem;
            color: #666;
            font-weight: 500;
            display: block;
            text-decoration: line-through;
            margin-bottom: 5px;
        }
.deal-list {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }
.deal-list li {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            color: var(--text-main);
            font-size: 1.1rem;
            display: flex;
            align-items: center;
        }
.deal-list li i {
            color: var(--primary);
            margin-right: 15px;
            font-size: 1.2rem;
        }
.deal-list li:last-child {
            border-bottom: none;
        }
.deal-note {
            font-size: 0.9rem;
            color: #666;
            background: #fff8f6;
            padding: 15px;
            border-radius: 8px;
            margin-top: 20px;
            border-left: 3px solid var(--primary);
        }
.campaign-form-section {
            background: #f4f4f4;
            padding: 80px 0;
        }
.form-wrapper {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        @media (max-width: 900px) {
.main-deal-card {
                grid-template-columns: 1fr;
                margin-top: -50px;
            }
.deal-visual {
                border-left: none;
                border-top: 1px solid #eee;
                order: -1;
                padding: 30px;
            }
.deal-content {
                padding: 30px;
            }
.hero-campaign h1 {
                font-size: 3rem;
            }
.countdown-number {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
.hero-campaign {
                padding: 140px 0 60px;
            }
.hero-campaign h1 {
                font-size: 2.5rem;
            }
.campaign-intro {
                font-size: 1.1rem;
            }
.countdown-wrapper {
                padding: 15px 20px;
                margin-top: 2rem;
            }
.countdown-number {
                font-size: 1.8rem;
            }
.countdown-label {
                font-size: 0.7rem;
            }
.offer-section {
                padding: 50px 0;
            }
.campaign-form-section {
                padding: 50px 0;
            }
        }
        @media (max-width: 480px) {
.hero-campaign {
                padding: 160px 0 50px;
            }
.hero-campaign h1 {
                font-size: 2rem;
            }
.bw-badge {
                font-size: 0.85rem;
                padding: 6px 16px;
            }
.campaign-intro {
                font-size: 1rem;
            }
.countdown-container {
                gap: 12px;
            }
.countdown-number {
                font-size: 1.5rem;
            }
.deal-price {
                font-size: 3rem;
            }
.offer-section {
                padding: 40px 0;
            }
.campaign-form-section {
                padding: 40px 0;
            }
.deal-list li {
                font-size: 1rem;
            }
.form-wrapper {
                padding: 30px 20px;
            }
        }
.hero-cases-page {
            background: #FDF6F3;
            position: relative;
            padding: 160px 0 100px;
            overflow: hidden;
            color: #111;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
.hero-cases-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            background-image: radial-gradient(var(--primary) 0.5px, transparent 0.5px);
            background-size: 20px 20px;
            opacity: 0.1;
        }
.hero-cases-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
.case-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(217, 109, 72, 0.1);
            border: 1px solid rgba(217, 109, 72, 0.2);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
.hero-cases-content h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            font-weight: 800;
            color: #111;
        }
.text-gradient {
            color: var(--primary);
        }
.hero-cases-content p {
            font-size: 1.15rem;
            color: #555;
            margin-bottom: 2.5rem;
            max-width: 540px;
        }
.hero-actions {
            display: flex;
            gap: 20px;
            align-items: center;
            flex-wrap: wrap;
        }
.trust-box {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-left: 20px;
            border-left: 1px solid rgba(0, 0, 0, 0.1);
        }
.trust-box span {
            font-size: 0.9rem;
            font-weight: 600;
            color: #333;
        }
.hero-cases-visual {
            position: relative;
            perspective: 1000px;
        }
.main-case-img {
            width: 100%;
            height: auto;
            aspect-ratio: 16 / 9;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            border: 4px solid white;
            transform: rotateY(-5deg) rotateX(5deg);
            transition: transform 0.5s ease;
        }
.hero-cases-visual:hover .main-case-img {
            transform: rotateY(0) rotateX(0);
        }
.floating-card {
            position: absolute;
            background: white;
            padding: 15px 20px;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 12px;
            color: #111;
            font-weight: 600;
            font-size: 0.9rem;
            z-index: 2;
            animation: float 6s ease-in-out infinite;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
.floating-card i {
            color: var(--primary);
            font-size: 1.2rem;
        }
.card-1 {
            top: 10%;
            left: -30px;
            animation-delay: 0s;
        }
.card-2 {
            bottom: 15%;
            right: -20px;
            animation-delay: 3s;
        }
.case-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }
.case-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            color: inherit;
            border: 1px solid rgba(0, 0, 0, 0.03);
            display: flex;
            flex-direction: column;
        }
.case-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
        }
.case-image-wrapper {
            position: relative;
            width: 100%;
            padding-top: 56.25%;
            overflow: hidden;
            border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        }
.case-image-wrapper img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
.case-card:hover .case-image-wrapper img {
            transform: scale(1.05);
        }
.case-body {
            padding: 12px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
.case-body h3 {
            font-size: 1.2rem;
            margin-bottom: 2px;
            color: #111;
            font-weight: 700;
            line-height: 1.2;
        }
.case-body p {
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 6px;
            line-height: 1.4;
        }
.case-link {
            font-weight: 600;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        @keyframes float {
            0%,
100% {
                transform: translateY(0);
            }
50% {
                transform: translateY(-15px);
            }
        }
        @media (max-width: 900px) {
.hero-cases-page {
                padding: 140px 0 80px;
            }
.hero-cases-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
.hero-cases-content p {
                margin-left: auto;
                margin-right: auto;
            }
.hero-actions {
                justify-content: center;
            }
.trust-box {
                border-left: none;
                padding-left: 0;
            }
.main-case-img {
                transform: none;
            }
.card-1 {
                left: 0;
            }
.card-2 {
                right: 0;
            }
.case-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
.hero-cases-page {
                padding: 160px 0 30px;
            }
        }
:root {
            --lab-primary: var(--primary);     
            --lab-accent: #38bdf8;      
            --lab-dark: #0f172a;        
            --lab-light: #f8fafc;       
            --lab-border: #e2e8f0;
            --lab-success: #22c55e;
            --lab-danger: #ef4444;
        }
body {
            background-color: #ffffff;
            overflow-x: hidden;
        }
.lab-hero {
            padding: 160px 0 100px;
            position: relative;
            background: radial-gradient(circle at 50% 0%, #fff7ed 0%, #ffffff 60%);
            overflow: hidden;
        }
.lab-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 24px;
            position: relative;
            z-index: 10;
        }
.bg-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
            z-index: 0;
            opacity: 0.5;
            mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
        }
.hero-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 40px;
            text-align: left;
        }
.hero-text { z-index: 2; }
.tech-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: white;
            border: 1px solid var(--lab-border);
            padding: 6px 16px;
            border-radius: 50px;
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--lab-primary);
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.03);
            letter-spacing: 0.05em;
        }
.tech-badge span {
            width: 8px; height: 8px;
            background: var(--lab-success);
            border-radius: 50%;
            box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
            animation: pulse-green 2s infinite;
        }
        @keyframes pulse-green {
0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
        }
.lab-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            color: var(--lab-dark);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }
.lab-subtitle {
            font-size: 1.15rem;
            color: #64748b;
            max-width: 500px;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }
.console-wrapper {
            background: #1e293b;
            padding: 8px;
            border-radius: 12px;
            box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
            display: flex;
            max-width: 620px;
            border: 1px solid #334155;
            position: relative;
            overflow: hidden;
        }
.console-wrapper::before {
            content: '>';
            position: absolute; left: 24px; top: 50%; transform: translateY(-50%);
            color: var(--lab-success); font-family: monospace; font-weight: bold; font-size: 1.2rem;
        }
.console-input {
            flex: 1;
            background: transparent; border: none;
            padding: 16px 16px 16px 40px;
            font-size: 1rem; outline: none;
            color: #fff; font-family: 'Inter', sans-serif;
        }
.console-input::placeholder { color: #94a3b8; }
.scan-btn {
            background: var(--lab-primary); color: white; border: none;
            padding: 0 32px; font-weight: 700; font-family: 'Outfit', sans-serif;
            font-size: 0.9rem; border-radius: 8px; cursor: pointer;
            transition: all 0.2s ease; display: flex; align-items: center; gap: 10px;
        }
.scan-btn:hover { background: var(--primary-dark); box-shadow: 0 0 15px rgba(234, 88, 12, 0.3); }
.hero-illustration {
            display: flex; justify-content: center; 
            animation: float-hero 6s ease-in-out infinite; 
        }
.svg-hero { width: 100%; max-width: 500px; height: auto; }
        @keyframes float-hero {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-15px); }
        }
.float-x { animation: float-x 3s infinite ease-in-out; }
.float-y { animation: float-y 4s infinite ease-in-out; }
        @keyframes float-x { 0%, 100% { transform: translateX(0); }
50% { transform: translateX(10px); }
 }
        @keyframes float-y { 0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
 }
.particle { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--lab-primary); opacity: 0.2; pointer-events: none; }
.p1 { top: 20%; left: 10%; animation: float-y 5s infinite; }
.p2 { bottom: 30%; right: 5%; animation: float-x 6s infinite; background: var(--lab-accent); }
.p3 { top: 15%; right: 20%; width: 10px; height: 10px; background: #22c55e; }
.scanner-zone {
            background: #fff; 
            padding: 100px 0;
            border-top: 1px solid #e2e8f0;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
.scanner-zone.hidden { display: none; }
.modern-scan-ui {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
            width: 100%;
        }
.scan-center-visual {
            position: relative;
            width: 100px; height: 100px;
            margin: 0 auto 40px;
            display: flex; align-items: center; justify-content: center;
        }
.scan-icon-wrapper {
            width: 80px; height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            position: relative; z-index: 2;
            box-shadow: 0 10px 30px rgba(234, 88, 12, 0.3);
        }
.pulse-ring {
            position: absolute;
            width: 100%; height: 100%;
            border-radius: 50%;
            border: 2px solid var(--primary);
            opacity: 0;
            animation: ring-pulse 2s infinite ease-out;
        }
.pulse-ring.delay-1 { animation-delay: 0.6s; }
        @keyframes ring-pulse {
0% { transform: scale(1); opacity: 0.5; }
100% { transform: scale(2.5); opacity: 0; }
        }
.scan-status-title {
            font-size: 2rem; font-weight: 800; color: #0f172a;
            margin-bottom: 10px;
        }
.scan-status-desc {
            color: #64748b; font-size: 1.1rem; margin-bottom: 50px;
        }
.scan-progress-steps {
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }
.scan-step {
            display: flex; flex-direction: column; align-items: center; gap: 10px;
            position: relative; z-index: 2;
            transition: all 0.3s ease;
            opacity: 0.5;
        }
.scan-step.active { opacity: 1; transform: scale(1.1); }
.scan-step.completed { opacity: 1; color: #22c55e; }
.scan-progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 40px auto 0;
    position: relative;
    padding: 10px; /* Add padding to prevent shadow clipping */
}
.scan-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    flex-shrink: 0; /* Prevent shrinking on mobile */
}
.step-indicator {
    width: 50px; height: 50px;
    background: #f1f5f9; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #64748b;
    transition: all 0.3s ease;
    flex-shrink: 0; /* Crucial for mobile */
}
.scan-step.active .step-indicator {
    background: #fff7ed; color: var(--primary);
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px #fed7aa;
}
.scan-step.completed .step-indicator {
            background: #dcfce7; color: #22c55e;
        }
.scan-step span {
            font-size: 0.85rem; font-weight: 600; color: #0f172a;
        }
.progress-line {
            flex: 1; height: 3px; background: #f1f5f9; margin: 0 10px; position: relative; top: -15px;
        }
.results-panel {
            padding: 80px 0 120px;
            background: #f8fafc;
        }
.results-panel.hidden { display: none; }
.winner-crown {
            position: absolute;
            top: -20px;
            right: 20px;
            background: var(--primary);
            color: white;
            width: 40px; height: 40px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(234, 88, 12, 0.4);
            animation: bounce 2s infinite;
        }
        @keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-5px); }
        }
.data-footnote {
            text-align: center;
            font-size: 0.75rem;
            color: #94a3b8;
            margin-top: 30px;
            font-style: italic;
        }
        @media (max-width: 800px) {
        }
        @media (max-width: 900px) {
.lab-hero { padding: 120px 0 80px; }
.scanner-zone { padding: 60px 0; }
.results-panel { padding: 60px 0; }
.hero-layout { grid-template-columns: 1fr; text-align: center; }
.hero-illustration { order: 1; margin-top: 40px; }
.scan-progress-steps { overflow-x: auto; padding-bottom: 10px; }
        }
        @media (max-width: 600px) {
.lab-hero { padding: 160px 0 60px; }
.scanner-zone { padding: 40px 0; }
.results-panel { padding: 40px 0; }
.console-wrapper {
                flex-direction: column;
                padding: 6px; /* Slightly more padding */
                gap: 10px; /* Add gap between input and button */
            }
.console-wrapper::before { display: none; }
.console-input {
                width: 100%;
                padding: 16px;
                text-align: center;
                border-radius: 12px; /* Softer corners */
            }
.scan-btn {
                width: 100%;
                justify-content: center;
                margin-top: 0; /* Removed margin, handled by gap */
                padding: 16px; /* Larger touch target */
                font-size: 1.1rem; /* Larger text */
                border-radius: 12px;
            }
        }
.hero-404-brand {
            background-color: #ffffff;
            position: relative;
            padding: 180px 0 140px;
            overflow: hidden;
            text-align: center;
            color: #111;
            min-height: 80vh;
            display: flex;
            align-items: center;
        }
.h404-grid-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(#e5e5e5 1.5px, transparent 1.5px);
            background-size: 24px 24px;
            opacity: 0.6;
            z-index: 0;
            pointer-events: none;
            mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
            -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
        }
.h404-inner {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
.h404-number {
            font-size: clamp(8rem, 20vw, 15rem);
            font-weight: 900;
            line-height: 0.8;
            color: #F3F4F6;
            background: linear-gradient(180deg, #F3F4F6 0%, #ffffff 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow:
                -1px -1px 0 #E5E7EB,
                1px -1px 0 #E5E7EB,
                -1px 1px 0 #E5E7EB,
                1px 1px 0 #E5E7EB;
            margin-bottom: -2rem;
            position: relative;
            z-index: -1;
            user-select: none;
        }
.h404-title {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: #111;
            letter-spacing: -0.02em;
        }
.h404-text {
            font-size: 1.2rem;
            color: #666;
            margin: 0 auto 2.5rem;
            max-width: 500px;
            line-height: 1.6;
        }
.h404-actions {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }
.h404-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #111;
            color: #fff;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
.h404-btn:hover {
            background: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(217, 109, 72, 0.2);
        }
.h404-btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: #111;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #E5E7EB;
        }
.h404-btn-outline:hover {
            border-color: #111;
            background: #FAFAFA;
        }
        @media (max-width: 768px) {
.hero-404-brand {
                padding: 160px 0 100px;
            }
.h404-number {
                font-size: 8rem;
                margin-bottom: 0;
            }
.h404-title {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
        }
.hero-contact-brand {
            background-color: #F4F4F4;
            position: relative;
            padding: 160px 0 60px;
            overflow: hidden;
            text-align: center;
            color: #111;
        }
.hcb-grid-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(#e5e5e5 1.5px, transparent 1.5px);
            background-size: 24px 24px;
            opacity: 0.6;
            z-index: 0;
            pointer-events: none;
            mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 90%);
            -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 90%);
        }
.hcb-inner {
            position: relative;
            z-index: 1;
            max-width: 720px;
            margin: 0 auto;
            padding: 0 20px;
        }
.hcb-badge {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: var(--primary);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            background: rgba(217, 109, 72, 0.08);
            padding: 6px 14px;
            border-radius: 4px;
        }
.hcb-title {
            font-size: clamp(3rem, 7vw, 5rem);
            font-weight: 900;
            line-height: 1.05;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
            color: #111;
        }
.hcb-accent {
            color: var(--primary);
            position: relative;
            display: inline-block;
        }
.hcb-accent::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 0.15em;
            background-color: rgba(217, 109, 72, 0.15);
            z-index: -1;
            border-radius: 4px;
        }
.hcb-text {
            font-size: 1.25rem;
            color: #555;
            line-height: 1.6;
            margin: 0 auto 2.5rem;
            max-width: 580px;
            font-weight: 400;
        }
.hcb-actions {
            display: flex;
            justify-content: center;
        }
.hcb-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #111;
            color: #fff;
            padding: 18px 42px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.05rem;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
.hcb-btn:hover {
            background: var(--primary);
            transform: translateY(-4px);
            box-shadow: 0 15px 35px rgba(217, 109, 72, 0.25);
        }
        @media (max-width: 768px) {
.hero-contact-brand {
                padding: 160px 0 50px;
            }
.hcb-title {
                font-size: 2.8rem;
            }
.hcb-text {
                font-size: 1.1rem;
                padding: 0 10px;
            }
.hcb-btn {
                width: 100%;
                max-width: 300px;
            }
        }
        @media (max-width: 480px) {
.hero-contact-brand {
                padding: 160px 0 30px;
            }
        }
.contact-wrapper {
                        display: grid;
                        grid-template-columns: 1fr;
                        gap: 40px;
                        align-items: start;
                    }
.contact-main {
                        order: -1;
                    }
.contact-form {
                        padding: 20px !important;
                    }
.g-recaptcha {
                        transform: scale(0.77);
                        transform-origin: 0 0;
                        margin-bottom: 0;
                    }
                    @media (min-width: 400px) {
.g-recaptcha {
                            transform: scale(0.85);
                        }
                    }
                    @media (min-width: 900px) {
.contact-wrapper {
                            grid-template-columns: 1fr 2fr;
                            gap: 60px;
                        }
.contact-main {
                            order: unset;
                        }
.contact-form {
                            padding: 40px !important;
                        }
.g-recaptcha {
                            transform: scale(1);
                        }
                    }
.hero-portal-moved {
            background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
            position: relative;
            padding: 160px 0 120px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 85vh;
        }
.hero-portal-moved::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(56, 189, 248, 0.05) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 0;
        }
.hpm-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(148, 163, 184, 0.07) 1px, transparent 1px),
                linear-gradient(90deg, rgba(148, 163, 184, 0.07) 1px, transparent 1px);
            background-size: 30px 30px;
            z-index: 0;
            pointer-events: none;
        }
.hpm-card {
            position: relative;
            z-index: 1;
            background: #ffffff;
            max-width: 580px;
            width: 100%;
            margin: 0 20px;
            padding: 60px 50px;
            border-radius: 24px;
            box-shadow:
                0 25px 50px -12px rgba(15, 23, 42, 0.08),
                0 0 0 1px rgba(15, 23, 42, 0.03);
            text-align: center;
        }
.hpm-icon-wrapper {
            width: 80px;
            height: 80px;
            background: #fff7ed;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            position: relative;
            border: 1px solid rgba(249, 115, 22, 0.1);
        }
.hpm-icon-wrapper::after {
            content: '';
            position: absolute;
            inset: -6px;
            border-radius: 50%;
            border: 1px solid rgba(249, 115, 22, 0.2);
            animation: pulseBorder 2s infinite;
        }
        @keyframes pulseBorder {
0% {
                transform: scale(1);
                opacity: 1;
            }
100% {
                transform: scale(1.2);
                opacity: 0;
            }
        }
.hpm-icon {
            font-size: 2rem;
            color: #f97316;
        }
.hpm-title {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }
.hpm-text {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 2.5rem;
        }
.hpm-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: #0f172a;
            color: #fff;
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
            width: 100%;
            max-width: 300px;
            box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.1);
        }
.hpm-btn:hover {
            background: #1e293b;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.15);
        }
.hpm-note {
            margin-top: 1.5rem;
            font-size: 0.85rem;
            color: #94a3b8;
            font-weight: 500;
        }
.hpm-features {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #f1f5f9;
            flex-wrap: wrap;
        }
.hpm-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: #475569;
            font-weight: 600;
        }
.hpm-feature i {
            color: #10b981;
        }
        @media (max-width: 768px) {
.hero-portal-moved {
                padding: 120px 0 80px;
                min-height: auto;
            }
.hpm-card {
                padding: 40px 24px;
            }
.hpm-title {
                font-size: 2rem;
            }
        }
.hero-nyhemsida { padding-top: 180px; }
.price-list { text-align: left; }
.price-list li { align-items: flex-start; }
.hero-visual {
                        perspective: 1000px;
                    }
                    @media (max-width: 900px) {
.hero-nyhemsida { padding-top: 140px; }
                    }
.hero-photo-pro {
            position: relative;
            padding: 180px 0 120px;
            overflow: hidden;
            background-color: #121212; 
            color: white;
        }
.photo-overlay-pattern {
            position: absolute;
            inset: 0;
            background-image: radial-gradient(#333 1px, transparent 1px);
            background-size: 40px 40px;
            opacity: 0.1;
            pointer-events: none;
        }
.hero-photo-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
.hero-photo-content {
            max-width: 600px;
        }
.photo-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #e2e8f0;
            padding: 6px 16px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
.hero-photo-content h1 {
            color: white;
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }
.hero-photo-content p {
            color: rgba(255,255,255,0.85);
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
        }
.hero-photo-visual {
            position: relative;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        @keyframes breathe {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.02); }
        }
        @keyframes drone-hover {
0%, 100% { transform: translateY(0) rotate(2deg); }
50% { transform: translateY(-20px) rotate(-2deg); }
        }
.gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }
.gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: var(--shadow-md);
            transition: transform 0.3s ease;
            background: #fff;
            aspect-ratio: 1 / 1;
        }
.gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
.gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
.gallery-item:hover img {
            transform: scale(1.05);
        }
#lightbox {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.95);
            z-index: 10000;
            display: none;
            justify-content: center;
            align-items: center;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
#lightbox.active { display: flex; opacity: 1; }
#lightbox img {
            max-width: 90%;
            max-height: 85vh;
            border-radius: 4px;
            box-shadow: 0 0 50px rgba(0,0,0,0.5);
        }
.lightbox-close {
            position: absolute;
            top: 30px; right: 40px;
            font-size: 3rem; color: white;
            cursor: pointer;
            transition: color 0.3s;
        }
.lightbox-close:hover { color: var(--primary); }
.custom-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
            align-items: center;
        }
        @media (min-width: 992px) {
.custom-grid {
                grid-template-columns: 1fr 1.2fr;
            }
        }
        @media (max-width: 768px) {
.hero-photo-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }
.hero-photo-content { margin: 0 auto; }
.hero-photo-visual { height: auto; margin-top: 50px; margin-bottom: 20px; }
.hero-actions { justify-content: center; }
        }
        @media (max-width: 768px) {
.hero-photo-pro {
                padding: 140px 0 80px;
            }
        }
        @media (max-width: 480px) {
.hero-photo-pro {
                padding: 160px 0 30px;
            }
        }
.hero-code-pro {
            position: relative;
            padding: 180px 0 120px;
            overflow: hidden;
            background: linear-gradient(180deg, #02040a 0%, #0f172a 100%); 
            color: white;
        }
.hero-code-pro::before {
            content: '';
            position: absolute;
            top: 20%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
            filter: blur(80px);
            z-index: 0;
            pointer-events: none;
        }
.code-bg-pattern {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 90%);
            -webkit-mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 90%);
            pointer-events: none;
        }
.hero-code-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
.hero-code-content {
            max-width: 600px;
        }
.code-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            color: #34d399;
            padding: 8px 18px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 28px;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            box-shadow: 0 0 15px rgba(16, 185, 129, 0.1);
            font-family: 'Courier New', monospace;
        }
.code-badge i {
            /* No animation */
        }
.hero-code-content h1 {
            color: white;
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            font-family: 'Outfit', sans-serif;
            text-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
        }
.hero-code-content p {
            color: #94a3b8;
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }
.hero-code-visual {
            position: relative;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
            perspective: 1200px;
        }
.cursor {
            display: none; /* Hide cursor completely if it's annoying, or remove animation */
        }
        @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
        @media (max-width: 900px) {
.hero-code-grid { grid-template-columns: 1fr; text-align: center; gap: 50px; }
.hero-code-content { margin: 0 auto; }
.hero-code-visual { height: 450px; margin-top: 20px; }
.hero-actions { justify-content: center; }
        }
.support-hero-card {
                background: rgba(15, 23, 42, 0.85);
                backdrop-filter: blur(16px);
                -webkit-backdrop-filter: blur(16px);
                border: 1px solid rgba(16, 185, 129, 0.2);
                border-radius: 16px;
                padding: 40px;
                width: 100%;
                max-width: 440px;
                box-shadow: 
                    0 0 0 1px rgba(16, 185, 129, 0.1),
                    0 25px 50px -12px rgba(0, 0, 0, 0.7);
                transform: rotateY(-10deg) rotateX(5deg);
                transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            }
.support-hero-card:hover {
                transform: rotateY(0) rotateX(0) scale(1.02);
                border-color: rgba(16, 185, 129, 0.4);
            }
.sh-header {
                display: flex;
                align-items: center;
                gap: 18px;
                margin-bottom: 25px;
                border-bottom: 1px solid rgba(255,255,255,0.05);
                padding-bottom: 25px;
            }
.sh-avatar {
                width: 64px;
                height: 64px;
                background: linear-gradient(135deg, #10b981, #047857);
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.8rem;
                color: white;
                box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
                border: 1px solid rgba(255,255,255,0.1);
            }
.sh-name {
                font-weight: 700;
                font-size: 1.15rem;
                color: white;
                font-family: 'Outfit', sans-serif;
            }
.sh-status {
                font-size: 0.85rem;
                color: #34d399;
                display: flex;
                align-items: center;
                gap: 8px;
                font-family: 'Courier New', monospace;
                font-weight: 600;
            }
.sh-dot {
                width: 8px;
                height: 8px;
                background: #34d399;
                border-radius: 50%;
                box-shadow: 0 0 8px #34d399;
                animation: pulse-dot 1.5s infinite;
            }
.sh-body h3 {
                color: white;
                font-size: 1.4rem;
                margin-bottom: 12px;
                font-family: 'Outfit', sans-serif;
            }
.sh-body p {
                color: #94a3b8;
                font-size: 1.05rem;
                line-height: 1.6;
                margin-bottom: 25px;
            }
.sh-footer {
                display: flex;
                gap: 12px;
                flex-wrap: wrap;
            }
.sh-badge {
                background: rgba(16, 185, 129, 0.1);
                padding: 8px 14px;
                border-radius: 6px;
                font-size: 0.8rem;
                color: #e2e8f0;
                display: flex;
                align-items: center;
                gap: 8px;
                border: 1px solid rgba(16, 185, 129, 0.15);
            }
.sh-badge i { color: #34d399; }
            @keyframes pulse-dot {
0% { opacity: 1; box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4); }
70% { opacity: 1; box-shadow: 0 0 0 6px rgba(52, 211, 153, 0); }
100% { opacity: 1; box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
            }
.support-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 60px;
                align-items: center;
            }
.expert-card {
                background: white;
                padding: 40px 30px;
                border-radius: 24px;
                box-shadow: 0 20px 60px rgba(0,0,0,0.08);
                text-align: center;
                position: relative;
                width: 100%;
                max-width: 400px;
                border: 1px solid rgba(0,0,0,0.05);
                overflow: hidden;
                margin: 0 auto;
            }
            @media (max-width: 900px) {
.hero-code-visual { height: auto; margin-top: 40px; }
.support-hero-card { transform: none; max-width: 100%; }
.sh-footer { justify-content: center; }
.support-grid { grid-template-columns: 1fr; gap: 40px; }
.expert-card { padding: 30px 20px; }
            }
        @media (max-width: 768px) {
.hero-code-pro {
                padding: 140px 0 80px;
            }
        }
        @media (max-width: 480px) {
.hero-code-pro {
                padding: 160px 0 30px;
            }
        }
.hero-seo-pro {
            position: relative;
            padding: 160px 0 100px;
            background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
            color: #0f172a;
            overflow: hidden;
        }
.seo-grid-bg {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(217, 109, 72, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(217, 109, 72, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
            -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
            pointer-events: none;
        }
.hero-seo-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
.hero-seo-content {
            max-width: 600px;
        }
.seo-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #ffedd5;
            border: 1px solid #fed7aa;
            color: var(--primary-dark);
            padding: 6px 16px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
.hero-seo-content h1 {
            color: #0f172a;
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }
.hero-seo-content p {
            color: #475569;
            font-size: 1.15rem;
            margin-bottom: 2.5rem;
        }
.hero-seo-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            perspective: 1000px;
        }
.seo-dashboard-light {
            width: 100%;
            max-width: 480px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 25px 60px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,0,0,0.06);
            position: relative;
            transform: rotateY(-10deg) rotateX(5deg);
            transition: transform 0.3s ease;
            margin: 0 auto;
        }
.seo-dashboard-light:hover {
            transform: rotateY(0) rotateX(0);
        }
.sdl-header {
            padding: 15px 20px;
            border-bottom: 1px solid #f1f5f9;
            display: flex;
            gap: 15px;
            align-items: center;
        }
.sdl-dots { display: flex; gap: 6px; }
.sdl-dot { width: 10px; height: 10px; border-radius: 50%; background: #e2e8f0; }
.sdl-dot:nth-child(1) { background: #ef4444; }
.sdl-dot:nth-child(2) { background: #f59e0b; }
.sdl-dot:nth-child(3) { background: #22c55e; }
.sdl-url-bar { flex: 1; height: 10px; background: #f1f5f9; border-radius: 5px; }
.sdl-body { padding: 25px; }
.sdl-chart-section { margin-bottom: 25px; }
.sdl-label-row { display: flex; justify-content: space-between; margin-bottom: 15px; font-size: 0.9rem; font-weight: 600; color: #64748b; }
.sdl-val { color: #22c55e; }
.sdl-chart-lines {
            display: flex;
            align-items: flex-end;
            gap: 10px;
            height: 80px;
            border-bottom: 2px solid #f1f5f9;
            padding-bottom: 5px;
        }
.sdl-line {
            flex: 1;
            background: #cbd5e1;
            border-radius: 4px 4px 0 0;
            transition: height 1s ease;
        }
.sdl-line.active { background: var(--primary); }
.sdl-table-section {
            background: #f8fafc;
            border-radius: 12px;
            padding: 5px;
        }
.sdl-table-row {
            display: flex;
            justify-content: space-between;
            padding: 10px 15px;
            font-size: 0.9rem;
            color: #334155;
            border-bottom: 1px solid #f1f5f9;
        }
.sdl-table-row:last-child { border-bottom: none; }
.sdl-table-row.header {
            font-size: 0.75rem;
            text-transform: uppercase;
            color: #94a3b8;
            font-weight: 700;
            letter-spacing: 0.05em;
        }
.sdl-rank { font-weight: 700; color: #0f172a; }
.sdl-rank i { color: #22c55e; margin-left: 4px; }
.sdl-float-card {
            position: absolute;
            top: 20px;
            right: -30px;
            background: white;
            padding: 12px 20px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            font-weight: 700;
            font-size: 0.9rem;
            color: #0f172a;
            display: flex;
            align-items: center;
            gap: 8px;
            animation: float-y 4s ease-in-out infinite;
        }
.sdl-float-card i { color: #22c55e; }
        @keyframes float-y {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
        }
        @media (max-width: 900px) {
.hero-seo-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
.hero-seo-content { margin: 0 auto; }
.hero-seo-visual { height: auto; margin-top: 20px; }
.hero-actions { justify-content: center; }
.seo-dashboard-light { max-width: 100%; transform: none; }
.sdl-float-card { right: 0; top: -15px; }
        }
.seo-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
.seo-feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: left;
        }
.seo-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
.seo-icon {
            width: 60px; height: 60px;
            background: #fff7ed;
            color: var(--primary);
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
.seo-feature-card h3 {
            font-size: 1.25rem;
            margin-bottom: 10px;
            color: #0f172a;
        }
.seo-feature-card p {
            color: #64748b;
            margin: 0;
            line-height: 1.6;
        }
.process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
.step-card-adv {
            background: rgba(255,255,255,0.05);
            padding: 30px;
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.1);
            position: relative;
        }
.step-number {
            font-size: 3rem; font-weight: 800; color: rgba(255,255,255,0.1);
            position: absolute; top: 20px; right: 20px; line-height: 1;
        }
.step-content h3 { color: white; margin-bottom: 10px; }
.step-content p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin: 0; }
        @media (max-width: 768px) {
.hero-seo-pro {
                padding: 120px 0 70px;
            }
        }
        @media (max-width: 480px) {
.hero-seo-pro {
                padding: 160px 0 30px;
            }
        }
.hero-hosting-pro {
            position: relative;
            padding: 180px 0 120px;
            overflow: hidden;
            background: linear-gradient(180deg, #020617 0%, #0f172a 100%);
            color: white;
        }
.hosting-bg-pattern {
            position: absolute;
            inset: 0;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 80%);
            -webkit-mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 80%);
            pointer-events: none;
        }
.hero-hosting-pro::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
            filter: blur(60px);
            z-index: 0;
            pointer-events: none;
        }
.hero-hosting-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
.hero-hosting-content {
            max-width: 600px;
        }
.hosting-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(90deg, rgba(14, 165, 233, 0.1), rgba(14, 165, 233, 0.05));
            border: 1px solid rgba(14, 165, 233, 0.3);
            color: #38bdf8;
            padding: 8px 18px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 28px;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            box-shadow: 0 0 20px rgba(56, 189, 248, 0.1);
        }
.hero-hosting-content h1 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 3.5rem;
            line-height: 1.1;
            text-shadow: 0 0 40px rgba(56, 189, 248, 0.1);
        }
.hero-hosting-content p {
            color: #94a3b8;
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }
.hosting-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-bottom: 3rem;
        }
.h-feat {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #e2e8f0;
            font-weight: 500;
            font-size: 1.05rem;
        }
.h-feat i { 
            color: #38bdf8; 
            filter: drop-shadow(0 0 8px rgba(56, 189, 248, 0.4));
        }
.hero-hosting-visual {
            position: relative;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
            perspective: 1200px;
        }
.server-stack {
            position: relative;
            width: 300px;
            transform: rotateY(-20deg) rotateX(5deg);
            transform-style: preserve-3d;
            animation: float-server 8s ease-in-out infinite;
        }
.server-unit {
            height: 70px;
            background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
            border-radius: 6px;
            margin-bottom: 12px;
            position: relative;
            border: 1px solid rgba(255,255,255,0.08);
            box-shadow: 0 0 0 1px rgba(0,0,0,0.2), 0 10px 20px rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            padding: 0 24px;
            justify-content: space-between;
            transition: transform 0.3s ease;
        }
.server-unit:hover {
            transform: translateZ(20px);
            border-color: rgba(56, 189, 248, 0.3);
        }
.server-unit::before {
            content: '';
            position: absolute;
            left: -1px; top: 10px; bottom: 10px; width: 4px;
            background: #38bdf8;
            border-radius: 4px;
            opacity: 0.8;
            box-shadow: 0 0 10px #38bdf8;
        }
.server-lights {
            display: flex;
            gap: 8px;
        }
.s-light {
            width: 8px; height: 8px; border-radius: 50%;
            background: #22c55e;
            box-shadow: 0 0 10px #22c55e;
            animation: blink 1.5s infinite alternate;
        }
.s-light:nth-child(2) { animation-delay: 0.3s; }
.s-light:nth-child(3) { animation-delay: 0.7s; background: #0ea5e9; box-shadow: 0 0 10px #0ea5e9; }
.server-vent {
            display: flex;
            gap: 5px;
        }
.s-line { width: 4px; height: 24px; background: rgba(0,0,0,0.4); border-radius: 2px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.h-stat-card {
            position: absolute;
            background: rgba(15, 23, 42, 0.8);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 30px;
            border-radius: 16px;
            color: white;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
            min-width: 140px;
        }
.h-stat-card h4 { margin: 0; font-size: 1.8rem; color: #38bdf8; font-weight: 800; text-shadow: 0 0 20px rgba(56, 189, 248, 0.3); }
.h-stat-card span { font-size: 0.85rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-top: 4px; display: block;}
.stat-uptime { top: 15%; right: -20px; animation: float-opp 6s infinite ease-in-out; border-left: 3px solid #22c55e; }
.stat-speed { bottom: 15%; left: -40px; animation: float-opp 8s infinite ease-in-out reverse; border-left: 3px solid #38bdf8; }
        @keyframes float-server {
0%, 100% { transform: rotateY(-20deg) rotateX(5deg) translateY(0); }
50% { transform: rotateY(-20deg) rotateX(5deg) translateY(-20px); }
        }
        @keyframes float-opp {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(15px); }
        }
        @keyframes blink {
0% { opacity: 1; box-shadow: 0 0 12px currentColor; }
100% { opacity: 0.3; box-shadow: none; }
        }
        @media (max-width: 900px) {
.hero-hosting-grid { grid-template-columns: 1fr; text-align: center; gap: 50px; }
.hero-hosting-content { margin: 0 auto; }
.hero-hosting-content h1 { font-size: 2.5rem; }
.hosting-features { text-align: left; max-width: 450px; margin: 0 auto 2.5rem; }
.hero-hosting-visual { height: 450px; }
.server-stack { width: 260px; }
.stat-uptime { right: 5%; }
.stat-speed { left: 5%; }
        }
.migration-card {
                background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
                padding: 40px;
                border-radius: 24px;
                box-shadow: 0 20px 60px rgba(0,0,0,0.08);
                position: relative;
                border: 1px solid rgba(0,0,0,0.05);
            }
.migration-badge {
                position: absolute;
                top: -20px;
                right: -20px;
                width: 80px;
                height: 80px;
                background: #e0f2fe;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--primary);
                font-size: 2rem;
                transform: rotate(15deg);
                z-index: 10;
            }
            @media (max-width: 768px) {
.hero-hosting-grid {
                    grid-template-columns: 1fr;
                    text-align: center;
                    gap: 40px;
                }
.hero-hosting-content {
                    margin: 0 auto;
                }
.hero-actions {
                    justify-content: center;
                }
.hero-hosting-visual {
                    height: 400px;
                    margin-top: 20px;
                }
.hosting-features {
                    justify-content: center;
                    text-align: left;
                    margin: 0 auto 2rem;
                }
.stat-uptime { right: 5%; top: 15%; }
.stat-speed { left: 5%; bottom: 15%; }
.server-stack { transform: scale(0.8) rotateY(-15deg) rotateX(5deg); }
.migration-card {
                    margin-top: 30px;
                    padding: 30px 20px;
                }
.migration-badge {
                    width: 60px;
                    height: 60px;
                    font-size: 1.4rem;
                    right: 10px; 
                    top: -30px;
                }
            }
        @keyframes float-overview {
0%, 100% { transform: translateY(0) rotateX(0deg) rotateY(0deg); }
50% { transform: translateY(-15px) rotateX(5deg) rotateY(-5deg); box-shadow: 0 25px 40px rgba(0,0,0,0.1); }
        }
                    @media (max-width: 900px) {
                    }
            @keyframes rotate-right {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
            }
            @keyframes rotate-left {
from { transform: rotate(360deg); }
to { transform: rotate(0deg); }
            }
            @keyframes pulse-core {
0% { transform: scale(1); opacity: 0.5; }
70% { transform: scale(1.2); opacity: 0; }
100% { transform: scale(1); opacity: 0; }
            }
            @media (max-width: 768px) {
            }
            @media (max-width: 900px) {
            }
        @media (max-width: 768px) {
.hero-hosting-pro {
                padding: 140px 0 80px;
            }
        }
        @media (max-width: 480px) {
.hero-hosting-pro {
                padding: 160px 0 30px;
            }
        }
.hero-ads-pro {
            position: relative;
            padding: 160px 0 100px;
            overflow: hidden;
            background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
        }
.hero-ads-pro::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(217, 109, 72, 0.04) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
        }
.ads-grid-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
            background-size: 30px 30px;
            z-index: 0;
            pointer-events: none;
            mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
            -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
        }
.ads-hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }
.ads-hero-content {
            max-width: 600px;
        }
.ads-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(217, 109, 72, 0.1);
            color: var(--primary);
            padding: 8px 16px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
.ads-hero-visual {
            position: relative;
            height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1000px;
        }
.ads-dashboard-mockup {
            width: 360px;
            height: 280px;
            background: white;
            border-radius: 20px;
            box-shadow: 
                0 20px 50px rgba(0,0,0,0.1),
                0 0 0 1px rgba(0,0,0,0.05);
            position: relative;
            z-index: 1;
            transform: rotateY(-10deg) rotateX(5deg);
            transition: transform 0.5s ease;
            padding: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
.ads-dashboard-mockup:hover {
            transform: rotateY(0) rotateX(0);
        }
.db-header {
            height: 20px;
            width: 100%;
            display: flex;
            gap: 8px;
            align-items: center;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
        }
.db-dot { width: 10px; height: 10px; border-radius: 50%; background: #eee; }
.db-dot.red { background: #ff5f56; }
.db-dot.yellow { background: #ffbd2e; }
.db-dot.green { background: #27c93f; }
.db-body {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
.db-chart {
            background: #f9f9f9;
            border-radius: 10px;
            grid-column: span 2;
            height: 100px;
            position: relative;
            overflow: hidden;
        }
.db-chart::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60%;
            background: linear-gradient(to top, rgba(217, 109, 72, 0.2), transparent);
            clip-path: polygon(0 100%, 0 60%, 20% 40%, 40% 80%, 60% 20%, 80% 50%, 100% 10%, 100% 100%);
        }
.db-stat {
            background: #f9f9f9;
            border-radius: 10px;
            height: 60px;
        }
.ads-float-card {
            position: absolute;
            background: white;
            padding: 16px 24px;
            border-radius: 14px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            gap: 15px;
            z-index: 2;
            border: 1px solid rgba(0,0,0,0.05);
            animation: float-y 6s ease-in-out infinite;
        }
.ads-float-card h4 { margin: 0; font-size: 0.9rem; color: #333; }
.ads-float-card span { font-size: 0.75rem; color: #666; }
.ads-icon-circle {
            width: 42px; 
            height: 42px; 
            border-radius: 10px; 
            display: flex; 
            align-items: center; 
            justify-content: center; 
            font-size: 1.2rem; 
            color: white;
        }
.card-google {
            top: 15%;
            right: 0;
            animation-delay: 0s;
        }
.card-google .ads-icon-circle { background: #4285F4; }
.card-meta {
            bottom: 20%;
            left: -20px;
            animation-delay: 2s;
        }
.card-meta .ads-icon-circle { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.card-roi {
            top: 60%;
            right: -30px;
            background: #111;
            color: white;
            padding: 12px 20px;
            animation-delay: 1s;
        }
.card-roi h4 { color: white; font-size: 1.2rem; }
.card-roi span { color: #aaa; }
        @keyframes float-y {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-15px); }
        }
        @media (max-width: 900px) {
.ads-hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }
.ads-hero-content { margin: 0 auto; }
.ads-hero-visual { height: 400px; margin-top: 20px; }
.card-google { right: 10%; top: 5%; }
.card-meta { left: 5%; bottom: 10%; }
.card-roi { right: 5%; top: 70%; }
.ads-dashboard-mockup { width: 300px; height: 240px; }
        }
@media (max-width: 900px) {
}
/* --- NEW HERO ABOUT (Om Oss) STYLES --- */
        @media (max-width: 768px) {
.hero-ads-pro {
                padding: 120px 0 70px;
            }
        }
        @media (max-width: 480px) {
.hero-ads-pro {
                padding: 160px 0 20px;
            }
        }
.hero-about-redesign {
    position: relative;
    padding: 180px 0 120px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}
.hero-about-redesign::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}
.about-redesign-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.about-text-content .badge-label {
    display: inline-block;
    padding: 8px 16px;
    background: #fff7ed;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 50px;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
    text-transform: uppercase;
    border: 1px solid rgba(234, 88, 12, 0.15);
}
.about-text-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 24px;
    font-weight: 800;
}
.text-highlight {
    position: relative;
    color: var(--primary);
    display: inline-block;
}
.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(234, 88, 12, 0.15);
    z-index: -1;
    transform: skewX(-10deg);
}
.about-text-content p {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
}
.about-stats-row {
    display: flex;
    gap: 40px;
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
}
.stat-item-simple strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
}
.stat-item-simple span {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}
.about-visual-content {
    position: relative;
}
.main-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
    border: 6px solid white;
}
.main-image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}
.main-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.float-card {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 220px;
    animation: float-y 4s ease-in-out infinite;
}
@keyframes float-y {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.float-icon-circle {
    width: 48px;
    height: 48px;
    background: #fff7ed;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}
.float-text {
    display: flex;
    flex-direction: column;
}
.float-text strong {
    font-size: 0.95rem;
    color: #0f172a;
    font-weight: 700;
}
.float-text span {
    font-size: 0.8rem;
    color: #64748b;
}
.deco-dots {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 0;
    opacity: 0.6;
}
@media (max-width: 900px) {
.hero-about-redesign {
        padding: 140px 0 80px;
    }
.about-redesign-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
.about-text-content h1 {
        font-size: 2.5rem;
    }
.about-text-content p {
        margin: 0 auto 30px;
    }
.about-stats-row {
        justify-content: center;
    }
.main-image-wrapper {
        transform: rotate(0);
        margin: 0 20px;
    }
.float-card {
        right: 0;
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
        animation: none;
    }
}
@media (max-width: 480px) {
.hero-about-redesign {
        padding: 160px 0 30px;
    }
}
/* --- NEW DASHBOARD STYLES --- */
.results-panel {
    background: #f8fafc;
    padding: 80px 0;
    min-height: 80vh;
}
#resultUrl {
    color: #64748b;
    font-size: 1.2rem;
    font-weight: 500;
}
.data-footnote {
    text-align: center;
    margin-top: 40px;
    color: #94a3b8;
    font-size: 0.8rem;
}
@media (max-width: 900px) {
}
@media (max-width: 768px) {
.hero-oversikt {
        padding-top: 140px !important;
    }
}
/* --- ADVANCED REPORT GRID --- */
.results-panel {
    background: #f8fafc;
    padding: 60px 0 100px;
}
.report-header {
    margin-bottom: 50px;
}
.analyzed-url {
    font-size: 1.2rem;
    color: #64748b;
    font-family: monospace;
    background: #e2e8f0;
    padding: 6px 16px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 10px;
}
/* Card Styles */
/* Card Top Section */
/* Icon Colors */
/* Comparison Bars */
/* Card Footer */
/* Circular Gauge (CSS Only) */
.circle {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke: #22c55e; /* Default green */
    transition: stroke-dasharray 1s ease-out, stroke 0.3s;
}
/* Final Verdict Section */
/* Responsiveness */
@media (max-width: 1024px) {
}
@media (max-width: 600px) {
}
/* --- HIGH IMPACT SALES REPORT --- */
.results-panel {
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}
.report-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.02em;
}
/* CMS Warning */
/* Score Circles Row */
/* The Truth Section */
.truth-section {
    margin-bottom: 60px;
}
.truth-section h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #0f172a;
}
.truth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.truth-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.truth-card.critical {
    border-color: #fca5a5;
    background: #fffafa;
}
.truth-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.truth-card p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}
.icon-bad { color: #e11d48; }
.icon-warn { color: #f59e0b; }
/* Battle Visual */
.comparison-battle {
    margin-bottom: 60px;
    text-align: center;
}
.battle-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}
.fighter-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
}
.fighter-card.user {
    background: #f8fafc;
    border: 2px solid #cbd5e1;
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.fighter-card.mediase {
    background: linear-gradient(135deg, #fff 0%, #fff7ed 100%);
    border: 2px solid var(--primary);
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 25px 60px rgba(234, 88, 12, 0.15);
}
.fighter-header {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.user .fighter-header { color: #64748b; }
.mediase .fighter-header { color: var(--primary); }
.fighter-stats {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}
.fighter-stats li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.fighter-stats li:last-child { border-bottom: none; }
.fighter-stats span {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}
.fighter-stats strong {
    font-size: 1.1rem;
    font-weight: 800;
}
.bad-stat { color: #e11d48; }
.good-stat { color: #22c55e; }
.vs-badge {
    background: #0f172a;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-style: italic;
    font-size: 1.2rem;
    z-index: 10;
    margin: 0 -30px;
    border: 4px solid white;
}
/* Final CTA */
.final-cta {
    background: #0f172a;
    color: white;
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.4);
}
.final-cta h3 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
}
.final-cta p {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 600px) {
    .final-cta {
        padding: 40px 24px;
    }
    .final-cta h3 {
        font-size: 1.75rem;
    }
    .final-cta p {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }
}
/* Mobile */
@media (max-width: 800px) {
.battle-visual {
        flex-direction: column;
        gap: 20px;
    }
.fighter-card.user, .fighter-card.mediase {
        width: 100%;
        border-radius: 24px;
        border: 1px solid #e2e8f0;
        transform: none;
    }
.vs-badge {
        margin: -40px auto;
    }
}
/* --- CMS Info Box (Neutral) --- */
.cms-info {
    background: #eff6ff; /* Light blue */
    border-left: 6px solid #3b82f6;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 50px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    animation: slideDown 0.5s ease-out;
}
.cms-info .info-icon {
    font-size: 2.5rem;
    color: #3b82f6;
}
.cms-info .info-content h3 {
    color: #1e40af;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 800;
}
.cms-info .info-content p {
    color: #1e3a8a;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}
/* Chart Section */
.chart-section {
    margin-bottom: 60px;
    text-align: center;
}
.chart-section h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #0f172a;
}
.chart-container-box {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    height: 400px;
    max-width: 900px;
    margin: 0 auto;
}
/* Battle Cards Enhancements */
.winner-crown {
    position: absolute;
    top: -25px;
    right: 20px;
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(234, 88, 12, 0.4);
    animation: bounce 2s infinite;
    z-index: 20;
    border: 4px solid white;
}
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-8px); }
}
/* --- DEVICE TABS --- */
.device-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    background: rgba(226, 232, 240, 0.9); /* Semi-transparent */
    padding: 10px;
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    position: sticky;
    top: 100px; /* Moved down to clear navbar */
    z-index: 90; /* Slightly lower than navbar (9999) */
    backdrop-filter: blur(10px); /* Blur effect behind */
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: top 0.3s ease;
}
.device-tab {
    padding: 12px 30px;
    border-radius: 40px;
    border: none;
    background: transparent;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}
.device-tab.active {
    background: white;
    color: #0f172a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.device-tab:hover:not(.active) {
    color: #0f172a;
}
/* --- SCORE COMPARISON (NEW) --- */
/* --- DEEP DIVE / AGENCY KILLER (Fixed Design) --- */
.deep-dive-section {
    margin-top: 60px;
    margin-bottom: 60px;
}
.deep-dive-section h3, .deep-dive-section > p {
    text-align: center; /* Keep header centered */
}
.deep-dive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.bloat-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    text-align: left;
}
.bloat-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}
.bloat-card h4 {
    font-size: 1.0rem;
    color: #64748b;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}
.benchmark-badge {
    font-size: 0.75rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid #e2e8f0;
}
.bloat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 5px;
}
.bloat-unit {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 600;
}
.bloat-desc {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.5;
}
.waste-bar {
    height: 6px;
    background: #f1f5f9;
    border-radius: 3px;
    margin: 15px 0;
    position: relative;
}
.waste-fill {
    height: 100%;
    border-radius: 3px;
    background: #ef4444;
    width: 0%;
    transition: width 1s ease;
}
/* --- DEVICE TABS --- */
.device-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    background: rgba(226, 232, 240, 0.95); /* Increased opacity */
    padding: 8px; /* Slightly smaller padding */
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    position: sticky;
    top: 90px; /* Adjusted to clear navbar */
    z-index: 900; /* High z-index */
    backdrop-filter: blur(12px); /* Stronger blur */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.5);
}
.device-tab {
    padding: 12px 30px;
    border-radius: 40px;
    border: none;
    background: transparent;
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}
.device-tab.active {
    background: white;
    color: #0f172a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.device-tab:hover:not(.active) {
    color: #0f172a;
}
/* --- SCORE CARDS (User vs Mediase) --- */
.score-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
    align-items: stretch;
}
.summary-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: transform 0.3s ease;
}
.summary-card.mediase-card {
    border: 2px solid #22c55e;
    background: #f0fdf4;
    position: relative;
}
.summary-card.mediase-card::before {
    content: 'MÅLBILD';
    position: absolute;
    top: -12px;
    right: 20px;
    background: #22c55e;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.05em;
}
.card-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.card-header-row h3 {
    font-size: 1.4rem;
    margin: 0;
    color: #0f172a;
}
.score-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.score-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    color: #475569;
    font-weight: 500;
}
.score-val {
    font-weight: 800;
    font-size: 1.1rem;
    color: #0f172a;
}
.score-val.perfect {
    color: #22c55e;
}
.score-val.bad {
    color: #ef4444;
}
.score-val.mid {
    color: #f59e0b;
}
@media (max-width: 768px) {
.score-cards-container {
        grid-template-columns: 1fr;
    }
}
/* --- DEEP DIVE (Centered) --- */
.deep-dive-section {
    margin-top: 60px;
    margin-bottom: 60px;
    text-align: center;
}
.deep-dive-section h3 {
    text-align: center;
    margin-bottom: 15px;
}
.deep-dive-section > p {
    text-align: center !important;
    margin: 0 auto 40px auto !important;
    max-width: 600px;
    display: block;
}
.deep-dive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    text-align: left;
}
.bloat-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    text-align: left; /* Reset text align */
}
.bloat-card h4 {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 15px;
    display: flex;
    justify-content: flex-start; /* Reset justify content */
    align-items: center;
    gap: 10px;
}
.device-preview-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    perspective: 1000px;
}
.device-frame {
    border: 8px solid #0f172a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    background: #0f172a;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Mobile State (Default) */
.device-frame.mobile-view {
    width: 280px;
    height: 500px;
    border-radius: 30px;
    border-width: 12px;
}
/* Desktop State */
.device-frame.desktop-view {
    width: 600px;
    height: 380px;
    border-radius: 12px;
    border-width: 12px;
    border-bottom-width: 20px; /* Thicker bottom like a laptop chin */
}
.device-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    background: white;
    display: block;
}
/* Add a subtle gloss/reflection */
.device-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    pointer-events: none;
}
@media (max-width: 700px) {
.device-frame.desktop-view {
        width: 100%;
        height: 250px;
    }
}
/* Override large inline margins on mobile */
@media (max-width: 480px) {
    .text-center[style*="margin-bottom: 60px"],
    .text-center[style*="margin-bottom: 4rem"],
.section-heading[style*="margin-bottom: 4rem"] {
        margin-bottom: 2rem !important;
    }
div[style*="margin-bottom: 60px"], div[style*="margin-bottom: 4rem"] {
        margin-bottom: 2rem !important;
    }
}/* --- COMPARISON ROWS (Deep Dive - Redesigned) --- */
.deep-dive-section { margin-top: 60px; }
.comparison-rows { display: flex; flex-direction: column; gap: 30px; margin-top: 30px; }

.comp-row-wrapper {
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.comp-header-group {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 25px;
    text-align: left; /* Force left alignment */
}

.comp-header {
    font-weight: 700;
    color: #0f172a; /* Darker color for header */
    font-size: 1.05rem;
    text-transform: none; /* Remove uppercase for cleaner reading */
    letter-spacing: normal;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.explanation-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    padding-left: 0; /* Align with start of box, not indented */
    max-width: 95%;
}

.comp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

/* Divider Line */
.comp-grid::after {
    content: '';
    position: absolute;
    top: 10%; bottom: 10%;
    left: 50%;
    width: 1px;
    background: #e2e8f0;
}

.comp-cell {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* User Side */
.user-cell { background: white; }
.user-cell.bad .val-big { color: #ef4444; }
.user-cell.ok .val-big { color: #f59e0b; }
.user-cell.good .val-big { color: #22c55e; }

/* Mediase Side */
.mediase-cell {
    background: #f0fdf4; /* Light Green */
    color: #15803d;
    overflow: hidden;
}

.mediase-cell .val-big {
    color: #16a34a;
}

.mediase-cell .watermark {
    position: absolute;
    bottom: 10px;
    right: 15px;
    width: 80px;
    height: auto;
    opacity: 0.25;
    filter: grayscale(100%); 
    pointer-events: none;
    transform: none; /* Reset any rotation */
}

.val-big {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
    color: #0f172a;
}

.val-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}
.mediase-cell .val-label { color: #166534; opacity: 0.8; }

/* --- TRUTH CARDS (Nackdelar) --- */
.truth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.truth-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.truth-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.truth-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.truth-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.truth-card.critical { border-left: 4px solid #ef4444; }
.truth-card.warning { border-left: 4px solid #f59e0b; }

.icon-bad { color: #ef4444; }
.icon-warn { color: #f59e0b; }

@media (max-width: 600px) {
    .comp-grid { grid-template-columns: 1fr; }
    .comp-grid::after { 
        width: 80%; height: 1px; 
        top: auto; bottom: auto; left: 10%; right: 10%;
        position: relative; /* Changed from absolute */
        margin: 0 auto; /* Center it */
        display: block;
    }
    /* Since we can't easily insert an element between grid items in CSS only without changing HTML order, 
       we might just let them stack with a border-bottom on the first one. 
    */
    .comp-grid::after { display: none; }
    .user-cell { border-bottom: 1px solid #e2e8f0; }
}
