: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;
}

.label {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    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;
    }
}

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

.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, #9a3412 0%, #ea580c 50%, #9a3412 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);
}

.navbar.topbar-hidden {
    top: 15px;
}

.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-webbhotell {
    background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
    border-bottom: 1px solid rgba(186, 230, 253, 0.5);
}

.hero-kamera {
    background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
    border-bottom: 1px solid rgba(233, 213, 255, 0.5);
}

.hero-kodning {
    background: linear-gradient(135deg, #ECFDF5 0%, #A7F3D0 100%);
    border-bottom: 1px solid rgba(167, 243, 208, 0.5);
}

.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-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: 1600 / 900;
    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: #E11D48;
}

.hero-contact-content h1 {
    margin-bottom: 1.5rem;
}

.hero-contact-content p {
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-contact-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(251, 113, 133, 0.2);
    box-shadow: 0 4px 15px rgba(251, 113, 133, 0.1);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 113, 133, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.trust-badge i {
    color: #E11D48;
    font-size: 1.1rem;
}

.trust-badge span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-main);
}

.hero-contact-visual {
    position: relative;
}

.contact-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.contact-icon-card {
    background: white;
    padding: 30px 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(251, 113, 133, 0.15);
    border: 1px solid rgba(251, 113, 133, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.contact-icon-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 70%;
    margin: 0 auto;
}

.contact-icon-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 45px rgba(251, 113, 133, 0.25);
    border-color: rgba(251, 113, 133, 0.3);
}

.floating-1 {
    animation-name: float-1;
    animation-delay: 0s;
}

.floating-2 {
    animation-name: float-2;
    animation-delay: 1s;
}

.floating-3 {
    animation-name: float-3;
    animation-delay: 2s;
}

@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);
    }
}

.contact-icon-card .icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FFF1F2 0%, #FCE7F3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.4s ease;
    border: 2px solid rgba(251, 113, 133, 0.2);
}

.contact-icon-card:hover .icon-wrapper {
    background: linear-gradient(135deg, #E11D48 0%, #BE123C 100%);
    border-color: #E11D48;
    transform: rotate(10deg) scale(1.1);
}

.contact-icon-card .icon-wrapper i {
    font-size: 1.8rem;
    color: #E11D48;
    transition: color 0.4s ease;
}

.contact-icon-card:hover .icon-wrapper i {
    color: white;
}

.contact-icon-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-main);
}

.contact-icon-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    margin: 0;
}

.hero-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-about-content {
    max-width: 600px;
}

.hero-about-actions {
    display: flex;
    gap: 12px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-about-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.about-stat-card {
    background: white;
    padding: 32px 28px;
    border-radius: 16px;
    border: 1px solid rgba(3, 105, 161, 0.1);
    box-shadow: 0 8px 24px rgba(3, 105, 161, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0EA5E9, #0369A1);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.about-stat-card:hover {
    transform: translateX(-4px);
    box-shadow: 0 12px 32px rgba(3, 105, 161, 0.15);
    border-color: rgba(3, 105, 161, 0.2);
}

.about-stat-card:hover::before {
    transform: scaleY(1);
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0369A1;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.about-stat-card:hover .stat-icon {
    background: linear-gradient(135deg, #0EA5E9 0%, #0369A1 100%);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.about-stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: #0369A1;
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-card .stat-label {
    font-size: 0.95rem;
    color: var(--text-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


.hero-moved {
    padding: 160px 0 110px;
    background: linear-gradient(135deg, var(--bg-warm) 0%, white 100%);
    position: relative;
}

.moved-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-light);
    text-align: center;
}

.icon-glow {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.moved-actions {
    margin: 2rem 0;
}

.moved-note {
    font-size: 0.9rem;
    color: var(--text-body);
    margin-top: 1rem;
}

.moved-features {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-body);
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--primary);
}

.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-bg-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px),
        linear-gradient(0deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

.hero-case .container {
    position: relative;
    z-index: 1;
}

.hero-case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-case-content {
    max-width: 600px;
}

.hero-case-content h1 {
    color: white;
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-case-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-case-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-case-badge i {
    color: #06B6D4;
    font-size: 1rem;
}

.hero-case-badge span {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #06B6D4;
}

.hero-case-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number-hero {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #06B6D4;
    line-height: 1;
    text-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
}

.stat-label-hero {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.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);
}

.label-box {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hero-case-img-wrapper {
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero-case-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow:
        0 0 60px rgba(6, 182, 212, 0.3),
        0 30px 80px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(6, 182, 212, 0.2);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.hero-case-img:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 0 80px rgba(6, 182, 212, 0.5),
        0 40px 100px rgba(0, 0, 0, 0.6);
}

.hero-case-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    animation: pulse-glow 3s ease-in-out infinite;
}

@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);
    }
}

.floating-badge {
    position: absolute;
    top: -15px;
    left: -15px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(217, 109, 72, 0.4);
    z-index: 10;
    animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating-badge i {
    color: #FCD34D;
    font-size: 1rem;
}

.floating-badge span {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: white;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.case-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
}

.hero-error {
    padding: 140px 0 110px;
    background: linear-gradient(135deg, #FFFCF8 0%, #F7F2EC 100%);
    text-align: center;
}

.error-content {
    max-width: 720px;
    margin: 0 auto;
}

.error-number {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}

.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);
}

.case-metric {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.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-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    z-index: 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(15, 15, 15, 0.5) 100%);
    z-index: 1;
}

.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-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 18px 40px;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.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-main {
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    gap: 100px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo-box {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 8px;
}

.footer-tagline {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
    max-width: 380px;
}

.footer-stats {
    display: flex;
    gap: 30px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.footer-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-body);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.footer-trust {
    margin-top: 16px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-group h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-group a {
    display: block;
    color: var(--text-body);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 0;
}

.footer-group a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer-group a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.2s ease;
    color: var(--primary);
}

.footer-group a:hover::before {
    left: 0;
    opacity: 1;
}


.footer-contact-link {
    display: flex !important;
    align-items: center;
    gap: 8px;
    font-weight: 600 !important;
}

.footer-contact-link i {
    color: var(--primary);
    font-size: 0.9rem;
}

.footer-address {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-address p {
    color: rgba(85, 85, 85, 0.7);
    font-size: 0.85rem;
    margin: 6px 0;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-address p i {
    color: var(--primary);
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.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: var(--primary);
}

.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 h3 {
    color: white;
    margin-bottom: 6px;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.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%;
    }

    .hero-error {
        padding: 90px 0 70px;
    }
}

.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);
}


.page-hero {
    position: relative;
    padding: 160px 0 120px;
    background: linear-gradient(135deg, #FFF6ED 0%, #FFFFFF 45%, #F7EDE4 100%);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(217, 109, 72, 0.12), transparent 32%),
        radial-gradient(circle at 80% 10%, rgba(44, 33, 29, 0.08), transparent 35%);
    z-index: 0;
}

.page-hero.has-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(120deg, rgba(17, 17, 17, 0.6) 0%, rgba(17, 17, 17, 0.18) 55%, rgba(255, 255, 255, 0) 100%), var(--hero-image);
    background-size: cover;
    background-position: center;
    opacity: 0.24;
    filter: saturate(0.9);
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
    align-items: center;
}

.page-hero-copy h1 {
    margin-bottom: 12px;
}

.page-hero-copy p {
    margin-bottom: 12px;
    max-width: 680px;
}

.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.detail-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.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);
}

.page-hero-visual {
    display: grid;
    gap: 16px;
    align-content: start;
}

.media-card {
    position: relative;
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.media-card img {
    width: 100%;
    height: auto;
    display: block;
}

.media-body {
    padding: 18px;
}

.media-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    padding: 7px 14px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 0.75rem;
}

.stat-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.stat-pill {
    background: rgba(17, 17, 17, 0.04);
    border-radius: 12px;
    padding: 12px 14px;
    min-width: 140px;
}

.stat-pill strong {
    display: block;
    font-size: 1.2rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
}

.stat-pill span {
    font-size: 0.95rem;
    color: var(--text-body);
}

.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;
}

.card-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.75);
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
}

.review-panel {
    background: white;
    border-radius: 16px;
    padding: 26px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.contact-card {
    background: white;
    border-radius: 14px;
    border: 1px solid var(--border-light);
    padding: 18px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
}

.contact-card i {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--primary-light);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.contact-card h3 {
    margin-bottom: 6px;
}

.contact-card p {
    margin-bottom: 0;
}

.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;
}

.auth-shell {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    align-items: center;
}

.auth-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-light);
    padding: 26px;
    box-shadow: var(--shadow-md);
}

.helper-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

.helper-link:hover {
    text-decoration: underline;
}

.error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.hero-error {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #FFFCF8 0%, #F7F2EC 100%);
    text-align: center;
}

.error-content {
    max-width: 720px;
    margin: 0 auto;
}

.error-number {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.08em;
    margin-bottom: 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) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-nav {
        gap: 40px;
    }

    .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;
    }

    .page-hero {
        padding: 120px 0 80px;
    }

    .page-hero-grid {
        text-align: center;
    }

    .page-hero-actions,
    .detail-chips {
        justify-content: center;
    }

    .page-hero-visual {
        order: -1;
    }

    .hero-error {
        padding: 110px 0 80px;
    }

    .hero-about {
        padding: 90px 0 70px;
    }

    .hero-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-about-content {
        max-width: 100%;
    }

    .hero-about-actions {
        justify-content: center;
    }

    .hero-about-visual {
        order: -1;
    }

    .about-stat-card .stat-number {
        font-size: 2rem;
    }

    .hero-contact {
        padding: 90px 0 70px;
    }

    .hero-moved {
        padding: 90px 0 70px;
    }

    .moved-card {
        padding: 40px 24px;
    }

    .hero-case {
        padding: 90px 0 70px;
    }

    .hero-case-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-case-content {
        max-width: 100%;
    }

    .hero-case-stats {
        justify-content: center;
    }

    .hero-case-img-wrapper {
        order: -1;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 2px 0;
    }

    .top-bar a {
        padding: 4px 0;
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 50px;
    }

    .hero-webbhotell,
    .hero-kamera,
    .hero-kodning,
    .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-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-stats {
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .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-webbhotell,
    .hero-kamera,
    .hero-kodning,
    .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-visual {
            gap: 12px;
        }

        .about-stat-card {
            padding: 24px 20px;
        }

        .about-stat-card .stat-number {
            font-size: 1.8rem;
        }

        gap: 6px;
    }

    .hero-error {
        padding: 80px 0 60px;
    }

    .hero-about {
        padding: 70px 0 50px;
    }

    .hero-contact {
        padding: 70px 0 50px;
    }

    .hero-moved {
        padding: 70px 0 50px;
    }

    .moved-card {
        padding: 30px 20px;
    }

    .icon-glow {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .hero-case {
        padding: 70px 0 50px;
    }

    .hero-case-content h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-case-content p {
        font-size: 1rem;
    }

    .hero-case-stats {
        gap: 1.5rem;
    }

    .stat-number-hero {
        font-size: 2rem;
    }

    .stat-label-hero {
        font-size: 0.75rem;
    }

    .floating-badge {
        padding: 8px 16px;
        top: -10px;
        left: -10px;
    }

    .floating-badge span {
        font-size: 0.7rem;
    }

    .moved-features {
        gap: 1rem;
    }

    .feature-item {
        font-size: 0.85rem;
    }
}


.navbar.nav-dark-experiment .nav-inner {
    background: rgba(17, 17, 17, 0.95) !important;
    
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.navbar.nav-dark-experiment .logo img {
    filter: invert(1) grayscale(1) brightness(10);
    
}

.navbar.nav-dark-experiment .nav-menu .nav-link {
    color: rgba(255, 255, 255, 0.9);
}

.navbar.nav-dark-experiment .nav-menu .nav-link::after {
    background: white;
    
}

.navbar.nav-dark-experiment .nav-menu .nav-link:hover {
    color: white;
}

.navbar.nav-dark-experiment .mobile-toggle {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
}

.navbar.nav-dark-experiment .mobile-toggle .hamburger-bar {
    background: white;
}

.navbar.nav-dark-experiment .mobile-toggle:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.navbar.nav-dark-experiment .btn-secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.navbar.nav-dark-experiment .btn-secondary:hover {
    background: white;
    color: black;
}


@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-actions {
        justify-content: center;
    }

    .hero-trust-badges {
        justify-content: center;
    }

    .hero-contact-visual {
        order: -1;
    }

    .contact-icon-grid {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-contact {
        padding: 90px 0 70px;
    }

    .hero-contact-inner {
        gap: 30px;
    }

    .hero-contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-contact-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-trust-badges {
        flex-direction: column;
        gap: 10px;
    }

    .trust-badge {
        width: 100%;
        justify-content: center;
    }

    .contact-icon-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-icon-card:nth-child(3) {
        max-width: 100%;
    }

    .contact-icon-card {
        padding: 24px 20px;
    }

    .contact-icon-card .icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .contact-icon-card .icon-wrapper i {
        font-size: 1.5rem;
    }
}

@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-contact-actions .btn {
        padding: 14px 24px;
        font-size: 0.95rem;
    }

    .trust-badge {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .trust-badge i {
        font-size: 1rem;
    }

    .contact-icon-card {
        padding: 20px 16px;
    }

    .contact-icon-card .icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .contact-icon-card .icon-wrapper i {
        font-size: 1.3rem;
    }

    .contact-icon-card h4 {
        font-size: 1rem;
    }

    .contact-icon-card p {
        font-size: 0.85rem;
    }
}


.hero-reverse .hero-grid {
    grid-template-columns: 1.2fr 1fr;
}

.hero-reverse .hero-content {
    order: 2;
}

.hero-reverse .hero-visual {
    order: 1;
}

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

.hero-center .hero-grid {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
    gap: 50px;
}

.hero-center .hero-content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-center .hero-benefits {
    justify-content: center;
}

.hero-center .hero-visual {
    margin: 0 auto;
    max-width: 800px;
}


.hero-contact-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero-contact-compact h1 {
    margin-bottom: 0.25rem;
}

.hero-contact-compact p {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-contact-compact .hero-contact-actions {
    justify-content: center;
    margin-bottom: 0;
}

.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 #D96D48;
        }

        
        .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: #ea580c;     
            --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: #c2410c; 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 #ea580c;
            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; }

        .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;
        }

        .scan-step.active .step-indicator {
            background: #fff7ed; color: #ea580c;
            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; }

        .dashboard-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); 
            gap: 30px;
            margin-bottom: 80px;
        }

        .dash-card {
            background: white;
            border-radius: 20px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            border: 1px solid #e2e8f0;
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
            border-top: 4px solid transparent; 
        }
        .dash-card:hover { 
            transform: translateY(-5px); 
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border-top-color: var(--lab-primary);
        }

        
        .mini-meter { margin-top: 20px; }
        
        .meter-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 8px;
        }
        .meter-header label { 
            font-size: 0.9rem; 
            color: #1e293b; 
            font-weight: 700; 
            margin: 0;
        }
        .meter-header .val { 
            font-size: 0.95rem; 
            font-weight: 800; 
            color: #0f172a; 
        }

        .bar-bg { 
            height: 10px; 
            background: #f1f5f9; 
            border-radius: 6px; 
            overflow: hidden; 
            width: 100%; 
        }
        .bar-fill { 
            height: 100%; 
            width: 0%; 
            background: #cbd5e1; 
            transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1); 
        }

        
        .mediase-ref {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 6px;
            font-size: 0.75rem;
            color: #64748b;
            background: #f8fafc;
            padding: 4px 8px;
            border-radius: 6px;
            border: 1px dashed #e2e8f0;
        }
        .mediase-ref strong { color: var(--lab-primary); }

        .card-icon {
            width: 56px; height: 56px;
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.4rem;
            margin-bottom: 20px;
        }

        
        .battle-container {
            display: grid;
            grid-template-columns: 1fr 80px 1fr;
            gap: 0;
            align-items: stretch;
            margin-top: 40px;
            position: relative;
        }

        .battle-card {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 24px;
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 1;
        }

        .battle-card.user-side {
            border-top-right-radius: 0;
            border-bottom-right-radius: 0;
            border-right: none;
            background: #f8fafc;
        }

        .battle-card.mediase-side {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
            border-left: none;
            background: linear-gradient(145deg, #ffffff 0%, #fff7ed 100%);
            border-color: #fed7aa;
            box-shadow: 0 20px 40px rgba(234, 88, 12, 0.08);
            z-index: 2;
        }

        .battle-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        
        .battle-url {
            font-size: 1.1rem;
            font-weight: 700;
            color: #0f172a;
            display: block;
            margin-bottom: 5px;
            word-break: break-all;
        }

        .battle-tag {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 20px;
            display: inline-block;
        }
        .tag-user { background: #e2e8f0; color: #64748b; }
        .tag-mediase { background: #ffedd5; color: #ea580c; }

        
        .battle-vs {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 10;
        }
        .vs-circle {
            width: 60px; height: 60px;
            background: white;
            border: 4px solid #f1f5f9;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-weight: 900;
            font-style: italic;
            color: #cbd5e1;
            font-size: 1.2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin: 0 -30px; 
        }

        
        .stat-row {
            margin-bottom: 25px;
        }
        .stat-label {
            font-size: 0.85rem;
            color: #64748b;
            font-weight: 600;
            margin-bottom: 8px;
            display: flex;
            justify-content: space-between;
        }
        
        
        .visual-track {
            height: 12px;
            background: #e2e8f0;
            border-radius: 6px;
            overflow: hidden;
            position: relative;
        }
        .visual-bar {
            height: 100%;
            border-radius: 6px;
            transition: width 1.5s ease-out;
        }
        .bar-red { background: #ef4444; }
        .bar-orange { background: #f97316; }
        .bar-green { background: #22c55e; }
        
        
        .time-display {
            font-family: 'Courier New', monospace;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .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) {
            .battle-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .battle-card { border-radius: 24px; border: 1px solid #e2e8f0; }
            .vs-circle { margin: 0 auto; transform: rotate(90deg); }
            .battle-vs { height: 40px; }
        }
        .comparison-section {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }
        .comp-card {
            background: white; padding: 50px 40px; border-radius: 24px;
            text-align: center; border: 1px solid #e2e8f0;
            height: 100%;
        }
        .comp-card.mediase-side {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
            transform: scale(1.05);
            box-shadow: 0 30px 60px rgba(234, 88, 12, 0.2);
            position: relative;
            border: none;
            z-index: 2;
        }
        .comp-card h4 { font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; opacity: 0.9; }
        
        .best-badge {
            position: absolute; top: 20px; right: 20px;
            background: rgba(255,255,255,0.2);
            padding: 6px 16px; border-radius: 20px;
            font-size: 0.75rem; font-weight: 700;
            backdrop-filter: blur(5px);
        }
        .big-stat { font-size: 4rem; font-weight: 800; line-height: 1; margin: 15px 0; letter-spacing: -0.02em; }
        
        .mediase-list { list-style: none; padding: 0; text-align: left; margin: 30px 0; }
        .mediase-list li { margin-bottom: 12px; display: flex; gap: 12px; font-size: 1rem; align-items: center; font-weight: 500; }
        .mediase-list i { color: #fcd34d; font-size: 1.1rem; }

        .btn-white {
            background: white; color: #ea580c; padding: 16px 36px;
            border-radius: 50px; font-weight: 700; text-decoration: none;
            display: inline-block; transition: transform 0.2s;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .btn-white:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); }

        .vs-divider {
            width: 60px; height: 60px; background: #f1f5f9;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            font-weight: 900; color: #94a3b8;
            font-style: italic; font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .skeleton-line { height: 12px; width: 80%; background: #f1f5f9; display: block; border-radius: 6px; }

        @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; }
                .comparison-section { grid-template-columns: 1fr; gap: 40px; }            .vs-divider { margin: 0 auto; transform: rotate(90deg); }
            .comp-card.mediase-side { transform: scale(1); }
            .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;
            }
        }

.hero-about-page {
            position: relative;
            height: 80vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            overflow: hidden;
        }

        .hero-about-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-about-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            
            z-index: 1;
        }

        .hero-about-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
        }

        .about-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: white;
            margin-bottom: 2rem;
        }

        .hero-about-content h1 {
            font-size: clamp(3rem, 6vw, 5.5rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
            font-weight: 800;
            letter-spacing: -0.02em;
            color: white;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .hero-about-content p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 auto 2.5rem;
            max-width: 600px;
            line-height: 1.6;
            font-weight: 400;
        }

        .hero-about-actions {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .btn-hero-white {
            background: white;
            color: #111;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .btn-hero-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            background: #f0f0f0;
        }

        .btn-hero-outline {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.5);
            padding: 13px 33px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-hero-outline:hover {
            background: white;
            color: #111;
            border-color: white;
        }

        @media (max-width: 768px) {
            .hero-about-page {
                height: auto;
                padding: 180px 0 100px;
            }
        }

.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-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-form {
                            padding: 40px !important;
                        }

                        .g-recaptcha {
                            transform: scale(1);
                        }
                    }

.hero-portal-moved {
            background-color: #F8FAFC;
            
            position: relative;
            padding: 160px 0 120px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 80vh;
        }

        .hpm-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(148, 163, 184, 0.1) 1px, transparent 1px),
                linear-gradient(90deg, rgba(148, 163, 184, 0.1) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 0;
            pointer-events: none;
        }

        .hpm-card {
            position: relative;
            z-index: 1;
            background: #fff;
            max-width: 600px;
            width: 100%;
            margin: 0 20px;
            padding: 60px 40px;
            border-radius: 24px;
            box-shadow:
                0 20px 50px -12px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(0, 0, 0, 0.05);
            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;
        }

        .hpm-icon-wrapper::after {
            content: '';
            position: absolute;
            inset: -8px;
            border-radius: 50%;
            border: 1px solid rgba(217, 109, 72, 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: var(--primary);
        }

        .hpm-title {
            font-family: 'Outfit', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: #0F172A;
            margin-bottom: 1rem;
            letter-spacing: -0.02em;
        }

        .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;
        }

        .hpm-btn:hover {
            background: #1E293B;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
        }

        .hpm-note {
            margin-top: 1.5rem;
            font-size: 0.9rem;
            color: #94A3B8;
        }

        .hpm-features {
            display: flex;
            justify-content: center;
            gap: 20px;
            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: 500;
        }

        .hpm-feature i {
            color: #10B981;
            
        }

        @media (max-width: 768px) {
            .hero-portal-moved {
                padding: 120px 0 80px;
                min-height: auto;
            }

            .hpm-card {
                padding: 40px 20px;
            }

            .hpm-title {
                font-size: 2rem;
            }
        }

.hero-nyhemsida { padding-top: 220px; } 
                    
                    .price-list { text-align: left; } 
                    .price-list li { align-items: flex-start; } 
            
                    .browser-mockup {
                        background: white;
                        border-radius: 12px;
                        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
                        overflow: hidden;
                        border: 1px solid rgba(0,0,0,0.1);
                        transform: rotateY(-5deg) rotateX(2deg);
                        transition: transform 0.3s ease;
                        max-width: 600px;
                        margin: 0 auto;
                    }
                    
                    .browser-mockup:hover {
                        transform: rotateY(0) rotateX(0);
                    }
            
                    .browser-header {
                        background: #f1f5f9;
                        padding: 12px 16px;
                        display: flex;
                        align-items: center;
                        border-bottom: 1px solid #e2e8f0;
                        gap: 16px;
                    }
            
                    .browser-dots {
                        display: flex;
                        gap: 6px;
                    }
            
                    .browser-dots span {
                        width: 10px;
                        height: 10px;
                        border-radius: 50%;
                        background-color: #cbd5e1;
                    }
            
                    .browser-dots span:nth-child(1) { background-color: #ef4444; }
                    .browser-dots span:nth-child(2) { background-color: #f59e0b; }
                    .browser-dots span:nth-child(3) { background-color: #22c55e; }
            
                    .browser-url {
                        flex-grow: 1;
                        background: white;
                        border-radius: 4px;
                        padding: 4px 12px;
                        font-size: 0.8rem;
                        color: #64748b;
                        text-align: center;
                        border: 1px solid #e2e8f0;
                    }
                    
                    .hero-visual {
                        perspective: 1000px;
                    }
                    
                    @media (max-width: 900px) {
                        .browser-mockup {
                            transform: none;
                        }
                        .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;
        }

        .lens-container {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, #444, #000);
            box-shadow: 
                0 0 0 10px #222,
                0 0 0 20px #111,
                0 0 60px rgba(255,255,255,0.1);
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: breathe 6s ease-in-out infinite;
        }
        
        .lens-glass {
            width: 240px;
            height: 240px;
            border-radius: 50%;
            background: radial-gradient(circle at 40% 40%, rgba(255,255,255,0.1), rgba(0,0,0,0.8)),
                        url('../images/hero-kameradronare.webp'); 
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            box-shadow: inset 0 0 40px rgba(0,0,0,0.8);
        }

        .lens-reflection {
            position: absolute;
            top: 20%;
            left: 20%;
            width: 40px;
            height: 20px;
            background: rgba(255,255,255,0.4);
            border-radius: 50%;
            transform: rotate(-45deg);
            filter: blur(5px);
        }

        
        .drone-float {
            position: absolute;
            top: 10%;
            right: 0;
            font-size: 4rem;
            color: rgba(255,255,255,0.8);
            animation: drone-hover 4s ease-in-out infinite;
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
        }

        @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); }

        .video-container {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            background: #000;
            position: relative;
            aspect-ratio: 16/9;
        }
        .video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .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; }
            .lens-container { width: 220px; height: 220px; }
            .lens-glass { width: 180px; height: 180px; }
            .drone-float { top: 0; font-size: 3rem; right: 10%; }
            
            .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: #0f172a; 
            color: white;
        }

        .code-bg-pattern {
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(56, 189, 248, 0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(56, 189, 248, 0.05) 1px, transparent 1px);
            background-size: 20px 20px;
            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-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.2);
            color: #34d399;
            padding: 6px 16px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .hero-code-content h1 {
            color: white;
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-code-content p {
            color: rgba(255,255,255,0.8);
            font-size: 1.15rem;
            margin-bottom: 2.5rem;
        }

        
        .hero-code-visual {
            position: relative;
            height: 450px;
            display: flex;
            justify-content: center;
            align-items: center;
            perspective: 1000px;
        }

        .terminal-window {
            width: 100%;
            max-width: 500px;
            background: #1e293b;
            border-radius: 12px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.5);
            border: 1px solid #334155;
            overflow: hidden;
            font-family: 'Courier New', Courier, monospace;
            transform: rotateY(-10deg) rotateX(5deg);
            transition: transform 0.3s ease;
        }
        
        .terminal-window:hover {
            transform: rotateY(0) rotateX(0);
        }

        .terminal-header {
            background: #334155;
            padding: 10px 15px;
            display: flex;
            gap: 8px;
            align-items: center;
        }
        .term-dot { width: 12px; height: 12px; border-radius: 50%; }
        .term-red { background: #ef4444; }
        .term-yellow { background: #f59e0b; }
        .term-green { background: #22c55e; }

        .terminal-body {
            padding: 20px;
            color: #e2e8f0;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .code-line { display: block; margin-bottom: 5px; }
        .c-green { color: #4ade80; }
        .c-blue { color: #60a5fa; }
        .c-purple { color: #c084fc; }
        .c-gray { color: #94a3b8; }
        
        .cursor {
            display: inline-block;
            width: 8px;
            height: 15px;
            background: #4ade80;
            animation: blink 1s infinite;
            vertical-align: middle;
        }

        
        .fix-card {
            position: absolute;
            background: white;
            padding: 12px 20px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            gap: 10px;
            bottom: 40px;
            left: -20px;
            z-index: 10;
            animation: float 4s ease-in-out infinite;
        }
        .fix-icon {
            background: #22c55e;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }
        .fix-text {
            color: #0f172a;
            font-weight: 700;
            font-size: 0.9rem;
        }

        @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
        @keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

        @media (max-width: 900px) {
            .hero-code-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
            .hero-code-content { margin: 0 auto; }
            .hero-code-visual { height: 400px; margin-top: 20px; }
            .terminal-window { max-width: 100%; transform: none; }
            .hero-actions { justify-content: center; }
            .fix-card { left: 50%; transform: translateX(-50%); bottom: 20px; }
        }

.support-hero-card {
                background: rgba(30, 41, 59, 0.8);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                border: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 24px;
                padding: 30px;
                width: 100%;
                max-width: 400px;
                box-shadow: 0 25px 50px rgba(0,0,0,0.5);
                transform: rotateY(-10deg) rotateX(5deg);
                transition: transform 0.3s ease;
            }
            .support-hero-card:hover {
                transform: rotateY(0) rotateX(0);
            }
            .sh-header {
                display: flex;
                align-items: center;
                gap: 15px;
                margin-bottom: 20px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
                padding-bottom: 20px;
            }
            .sh-avatar {
                width: 60px;
                height: 60px;
                background: linear-gradient(135deg, #34d399, #059669);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.5rem;
                color: white;
                box-shadow: 0 4px 12px rgba(52, 211, 153, 0.3);
            }
            .sh-name {
                font-weight: 700;
                font-size: 1.1rem;
                color: white;
            }
            .sh-status {
                font-size: 0.85rem;
                color: #34d399;
                display: flex;
                align-items: center;
                gap: 6px;
            }
            .sh-dot {
                width: 8px;
                height: 8px;
                background: #34d399;
                border-radius: 50%;
                box-shadow: 0 0 8px #34d399;
                animation: pulse-dot 2s infinite;
            }
            .sh-body h3 {
                color: white;
                font-size: 1.3rem;
                margin-bottom: 10px;
            }
            .sh-body p {
                color: rgba(255,255,255,0.8);
                font-size: 1rem;
                line-height: 1.6;
                margin-bottom: 20px;
            }
            .sh-footer {
                display: flex;
                gap: 10px;
            }
            .sh-badge {
                background: rgba(255,255,255,0.1);
                padding: 8px 14px;
                border-radius: 8px;
                font-size: 0.85rem;
                color: white;
                display: flex;
                align-items: center;
                gap: 8px;
            }
            .sh-badge i { color: #34d399; }
            
            @keyframes pulse-dot {
                0% { opacity: 1; }
                50% { opacity: 0.5; }
                100% { opacity: 1; }
            }

            .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: #c2410c;
            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(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
        }

        .hosting-bg-pattern {
            position: absolute;
            inset: 0;
            background-image: 
                radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
            background-size: 30px 30px;
            mask-image: linear-gradient(to bottom, black, transparent);
            -webkit-mask-image: linear-gradient(to bottom, black, transparent);
            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: rgba(56, 189, 248, 0.1);
            border: 1px solid rgba(56, 189, 248, 0.2);
            color: #38bdf8;
            padding: 6px 16px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.85rem;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .hero-hosting-content h1 {
            color: white;
            margin-bottom: 1.5rem;
        }

        .hero-hosting-content p {
            color: rgba(255,255,255,0.8);
            font-size: 1.15rem;
            margin-bottom: 2rem;
        }

        .hosting-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 2.5rem;
        }

        .h-feat {
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            font-weight: 500;
        }
        .h-feat i { color: #38bdf8; }

        .hero-hosting-visual {
            position: relative;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
            perspective: 1000px;
        }

        
        .server-stack {
            position: relative;
            width: 280px;
            transform: rotateY(-15deg) rotateX(5deg);
            transform-style: preserve-3d;
            animation: float-server 6s ease-in-out infinite;
        }

        .server-unit {
            height: 60px;
            background: linear-gradient(90deg, #334155 0%, #475569 100%);
            border-radius: 8px;
            margin-bottom: 15px;
            position: relative;
            border-top: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
            display: flex;
            align-items: center;
            padding: 0 20px;
            justify-content: space-between;
        }

        .server-unit::before {
            content: '';
            position: absolute;
            left: 0; top: 0; bottom: 0; width: 6px;
            background: #38bdf8;
            border-radius: 8px 0 0 8px;
            opacity: 0.5;
        }

        .server-lights {
            display: flex;
            gap: 6px;
        }
        .s-light {
            width: 6px; height: 6px; border-radius: 50%;
            background: #22c55e;
            box-shadow: 0 0 8px #22c55e;
            animation: blink 2s infinite;
        }
        .s-light:nth-child(2) { animation-delay: 0.5s; }
        .s-light:nth-child(3) { animation-delay: 1s; background: #38bdf8; box-shadow: 0 0 8px #38bdf8; }

        .server-vent {
            display: flex;
            gap: 4px;
        }
        .s-line { width: 3px; height: 20px; background: rgba(0,0,0,0.3); border-radius: 2px; }

        
        .h-stat-card {
            position: absolute;
            background: rgba(15, 23, 42, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(56, 189, 248, 0.2);
            padding: 15px 25px;
            border-radius: 12px;
            color: white;
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
        }
        
        .h-stat-card h4 { margin: 0; font-size: 1.5rem; color: #38bdf8; font-weight: 800; }
        .h-stat-card span { font-size: 0.8rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.05em; }

        .stat-uptime { top: 20%; right: 0; animation: float-opp 5s infinite; }
        .stat-speed { bottom: 20%; left: -20px; animation: float-opp 7s infinite; }

        @keyframes float-server {
            0%, 100% { transform: rotateY(-15deg) rotateX(5deg) translateY(0); }
            50% { transform: rotateY(-15deg) rotateX(5deg) translateY(-15px); }
        }
        @keyframes float-opp {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(10px); }
        }
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.4; }
        }

        @media (max-width: 900px) {
            .hero-hosting-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
            .hero-hosting-content { margin: 0 auto; }
            .hosting-features { text-align: left; max-width: 400px; margin: 0 auto 2.5rem; }
            .hero-hosting-visual { height: 400px; }
            .stat-uptime { right: 10%; }
            .stat-speed { left: 10%; }
        }

.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;
                }
            }

.hero-overview-pro {
            position: relative;
            padding: 180px 0 120px;
            overflow: hidden;
            background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
        }

        .hero-overview-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-overview-content {
            max-width: 650px;
        }

        .overview-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            border: 1px solid rgba(0,0,0,0.05);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        
        .hero-overview-visual {
            position: relative;
            height: 450px;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-rows: 1fr 1fr 1fr;
            gap: 20px;
            perspective: 1000px;
        }

        .overview-icon-card {
            background: white;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary);
            box-shadow: 0 10px 30px rgba(0,0,0,0.07);
            border: 1px solid white;
            animation: float-overview 5s ease-in-out infinite;
            transform-style: preserve-3d;
        }

        .overview-icon-card:nth-child(1) { animation-delay: 0.5s; }
        .overview-icon-card:nth-child(2) { animation-delay: 1.2s; grid-column: 2 / 4; }
        .overview-icon-card:nth-child(3) { animation-delay: 2.1s; }
        .overview-icon-card:nth-child(4) { animation-delay: 0.2s; grid-column: 1 / 3; }
        .overview-icon-card:nth-child(5) { animation-delay: 1.8s; }
        .overview-icon-card:nth-child(6) { animation-delay: 2.5s; grid-column: 2 / 4; }

        @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) {
                        .hero-overview-grid { 
                            display: flex;
                            flex-direction: column;
                            text-align: center; 
                            gap: 40px; 
                        }
                        .hero-overview-content { 
                            margin: 0 auto; 
                            order: 1; 
                        }
                        .hero-overview-visual { 
                            height: 300px; 
                            margin-bottom: 30px; 
                            order: 2; 
                            width: 100%;
                            display: flex;
                            justify-content: center;
                        }
                        .orbit-system { 
                            transform: scale(0.7); 
                            transform-origin: center;
                            max-width: 100%;
                        }
                        .overview-icon-card { font-size: 1.5rem; }
                    }

.orbit-system {
                position: relative;
                width: 400px;
                height: 400px;
                display: flex;
                justify-content: center;
                align-items: center;
                margin: 0 auto;
            }

            .orbit-core {
                width: 100px;
                height: 100px;
                background: linear-gradient(135deg, var(--primary), #b05030);
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                color: white;
                font-size: 2.5rem;
                box-shadow: 0 0 30px rgba(217, 109, 72, 0.4);
                z-index: 10;
                position: relative;
            }

            .core-pulse {
                position: absolute;
                inset: -10px;
                border-radius: 50%;
                border: 2px solid var(--primary);
                opacity: 0.5;
                animation: pulse-core 2s infinite;
            }

            .orbit-ring {
                position: absolute;
                border: 1px solid rgba(0,0,0,0.05);
                border-radius: 50%;
                box-shadow: 0 0 20px rgba(0,0,0,0.02);
            }

            .ring-1 {
                width: 220px;
                height: 220px;
                animation: rotate-right 20s linear infinite;
            }

            .ring-2 {
                width: 360px;
                height: 360px;
                animation: rotate-left 35s linear infinite;
            }

            .orbit-planet {
                position: absolute;
                width: 50px;
                height: 50px;
                background: white;
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                color: #0f172a;
                font-size: 1.2rem;
                box-shadow: 0 5px 15px rgba(0,0,0,0.1);
                border: 1px solid rgba(0,0,0,0.05);
                transition: transform 0.3s;
            }

            
            .planet-1 { top: -25px; left: 50%; transform: translateX(-50%); }
            .planet-2 { bottom: -25px; left: 50%; transform: translateX(-50%) rotate(180deg); } 

            
            .ring-1 .orbit-planet i { animation: rotate-left 20s linear infinite; }
            .ring-2 .orbit-planet i { animation: rotate-right 35s linear infinite; }

            
            .planet-3 { top: 20px; right: 20px; }
            .planet-4 { bottom: 20px; right: 20px; }
            .planet-5 { top: 50%; left: -25px; transform: translateY(-50%); }

            .planet-tooltip {
                position: absolute;
                top: -30px;
                background: #0f172a;
                color: white;
                padding: 4px 8px;
                border-radius: 4px;
                font-size: 0.7rem;
                font-weight: 700;
                opacity: 0;
                transition: opacity 0.3s;
                pointer-events: none;
                white-space: nowrap;
            }

            .orbit-planet:hover {
                transform: scale(1.1);
                color: var(--primary);
            }

            .orbit-planet:hover .planet-tooltip {
                opacity: 1;
            }

            @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) {
                .orbit-system { transform: scale(0.7); }
                .hero-overview-visual { height: 300px; }
            }
            .overview-actions {
                display: flex;
                gap: 12px;
                margin-top: 2rem;
                flex-wrap: wrap;
            }

            @media (max-width: 900px) {
                .overview-actions {
                    justify-content: center;
                }
            }

        @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; }
        }



.battle-container {
    gap: 20px; 
    align-items: center; 
}

.battle-card {
    padding: 40px 30px;
    border-radius: 30px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.battle-card:hover {
    transform: translateY(-5px);
}

.battle-card.user-side {
    background: #f1f5f9; 
    border: 2px solid #cbd5e1;
}

.battle-card.mediase-side {
    background: white;
    border: 2px solid #ea580c; 
    box-shadow: 0 20px 60px rgba(234, 88, 12, 0.15);
    transform: scale(1.02); 
    z-index: 5;
}

.card-visual-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: center;
    opacity: 0.8;
}

.battle-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(0,0,0,0.05);
    padding-bottom: 20px;
}

.battle-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    padding: 6px 12px;
    border-radius: 50px;
}

.tag-user {
    background: #cbd5e1;
    color: #475569;
}

.tag-mediase {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.battle-url {
    font-size: 1.3rem; 
    font-weight: 700;
    display: block;
}

.stat-group {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-row-large {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-title {
    font-size: 1rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.big-number {
    font-size: 2.5rem; 
    font-weight: 800;
    line-height: 1;
    color: #0f172a;
}

.text-green {
    color: #16a34a;
}

.icon-check {
    font-size: 1.5rem;
    color: #16a34a;
}

.visual-track-large {
    height: 16px; 
    background: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
}

.visual-bar {
    height: 100%;
    border-radius: 8px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-summary-box {
    margin-top: 30px;
    background: #e2e8f0;
    padding: 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    font-style: italic;
    border-left: 4px solid #94a3b8;
}

.mediase-cta-box {
    margin-top: 30px;
    text-align: center;
}

.mediase-cta-box p {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.vs-circle {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    font-size: 1.8rem;
    font-weight: 900;
    border: 6px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 10;
    transform: rotate(-10deg); 
}


@media (max-width: 900px) {
    .battle-container {
        grid-template-columns: 1fr; 
        gap: 40px;
    }
    
    .battle-card.mediase-side {
        transform: scale(1);
        order: -1; 
        
        order: 2; 
    }
    
    .battle-vs {
        height: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 20;
        order: 1;
    }
    
    .vs-circle {
        transform: rotate(0) translateY(0);
        margin: 0;
    }
}

/* --- 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(135deg, #F0F9FF 0%, #E0F2FE 100%); /* Soft Blue Gradient */
    overflow: hidden;
}

.hero-about-redesign::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(217, 109, 72, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    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;
}

.result-header {
    text-align: center;
    margin-bottom: 40px;
}

.result-header h2 {
    font-size: 3rem;
    color: #0f172a;
    margin-bottom: 10px;
    font-weight: 800;
}

#resultUrl {
    color: #64748b;
    font-size: 1.2rem;
    font-weight: 500;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 60px;
}

.chart-card {
    background: white;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
    height: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mini-score-card {
    background: white;
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease;
}

.mini-score-card:hover {
    transform: translateY(-5px);
    border-color: #cbd5e1;
}

.mini-label {
    display: block;
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    margin-bottom: 10px;
}

.mini-val {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
}

.action-bar {
    background: #0f172a;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.25);
    position: relative;
    overflow: hidden;
}

.action-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 100% 0%, #334155 0%, transparent 60%);
    pointer-events: none;
}

.action-text h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.action-text p {
    color: #94a3b8;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.data-footnote {
    text-align: center;
    margin-top: 40px;
    color: #94a3b8;
    font-size: 0.8rem;
}

@media (max-width: 900px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }
    
    .chart-card {
        min-height: 300px;
    }
    
    .action-bar {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
}
@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;
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cols on desktop */
    gap: 24px;
    margin-bottom: 50px;
}

/* Card Styles */
.insight-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.main-score-card {
    grid-column: span 1; /* Takes 1 slot, but we might span it on mobile */
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e2e8f0;
}

/* Card Top Section */
.card-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0;
}

/* Icon Colors */
.box-purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.box-blue { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.box-green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.box-orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.box-red { background: linear-gradient(135deg, #ef4444, #dc2626); }
.box-cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }

.card-titles h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
}

.card-titles p {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b;
}

/* Comparison Bars */
.comparison-bars {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.comp-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.comp-label {
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    color: #475569;
}

.mediase-row .comp-label {
    color: #16a34a; /* Green text for Mediase */
}

.progress-track {
    height: 10px;
    background: #f1f5f9;
    border-radius: 5px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 5px;
    width: 0%; /* Animated via JS */
    transition: width 1s ease-out, background-color 0.3s;
    background-color: #cbd5e1; /* Default gray */
}

.fill-green { background-color: #22c55e; }
.fill-orange { background-color: #f97316; }
.fill-red { background-color: #ef4444; }

/* Card Footer */
.card-footer-text {
    font-size: 0.8rem;
    color: #64748b;
    background: #f8fafc;
    padding: 10px;
    border-radius: 8px;
    display: flex;
    align-items: start;
    gap: 8px;
    line-height: 1.4;
}

.card-footer-text i {
    color: #3b82f6;
    margin-top: 2px;
}

/* Circular Gauge (CSS Only) */
.big-gauge-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 140px;
    max-height: 140px;
}

.circle-bg {
    fill: none;
    stroke: #f1f5f9;
    stroke-width: 2.5;
}

.circle {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke: #22c55e; /* Default green */
    transition: stroke-dasharray 1s ease-out, stroke 0.3s;
}

.gauge-circle {
    position: relative;
}

.percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    font-family: 'Outfit', sans-serif;
}

.score-context {
    margin-top: 15px;
}

.score-context h4 {
    margin: 0;
    font-size: 1.2rem;
    color: #0f172a;
}

.score-context p {
    font-size: 0.9rem;
    color: #64748b;
}

.mediase-benchmark {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #16a34a;
}

/* Final Verdict Section */
.final-verdict {
    background: #0f172a;
    border-radius: 24px;
    padding: 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.3);
}

.final-verdict h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.final-verdict p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .report-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 cols on tablet */
    }
}

@media (max-width: 600px) {
    .report-grid {
        grid-template-columns: 1fr; /* 1 col on mobile */
        gap: 20px;
    }
    
    .main-score-card {
        grid-column: span 1;
    }
    
    .final-verdict {
        padding: 30px 20px;
    }
    
    .final-verdict h3 {
        font-size: 1.5rem;
    }
}

/* --- 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 */
.cms-warning {
    background: #fff1f2;
    border-left: 6px solid #e11d48;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 50px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 10px 30px rgba(225, 29, 72, 0.1);
    animation: slideDown 0.5s ease-out;
}

.warning-icon {
    font-size: 2.5rem;
    color: #e11d48;
}

.warning-content h3 {
    color: #9f1239;
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 800;
}

.warning-content p {
    color: #881337;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Score Circles Row */
.score-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.score-circle-card {
    text-align: center;
    width: 140px;
}

.circle-chart {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    position: relative;
    border: 6px solid #e2e8f0; /* Default gray ring */
}

.circle-val {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
}

.score-circle-card h4 {
    font-size: 1rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

/* 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; }
.icon-good { color: #22c55e; }

/* Battle Visual */
.comparison-battle {
    margin-bottom: 60px;
    text-align: center;
}

.battle-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 800;
}

.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 #ea580c;
    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: #ea580c; }

.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;
}

/* Mobile */
@media (max-width: 800px) {
    .score-row { gap: 20px; }
    .score-circle-card { width: 45%; }
    
    .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) --- */
.score-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.comp-card {
    background: white;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comp-card h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    margin-bottom: 0;
    text-align: center;
}

.mini-score-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
}

.mini-score-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.mini-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-val {
    font-size: 1.2rem;
    font-weight: 800;
}

.mini-val.mediase {
    color: #22c55e;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.2);
}

.mini-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: #64748b;
}

.mini-icon.mediase {
    background: #dcfce7;
    color: #22c55e;
}

/* --- 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; /* Back to left align for content */
}

.bloat-card h4 {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.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;
    }
}
