:root {
            --page-background: #191a1a;
            --header-background: #0f0f0f;
            --text: #ffffff;
            --muted: #ffffff;
        }

        * {
            box-sizing: border-box;
        }

        html,
        body {
            margin: 0;
            min-height: 100%;
        }

        body {
            background: var(--page-background);
            color: var(--text);
            font-family: Figtree, Arial, Helvetica, sans-serif;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button {
            border: 0;
            font: inherit;
        }

        .site-header {
            position: relative;
            z-index: 40;
            width: 100%;
        }

        .header-nav-shell {
            position: absolute;
            top: 100%;
            right: 0;
            left: 0;
            width: 100%;
            padding: 28px 50px 0;
        }

        .topbar {
            width: 100%;
            height: 35px;
            padding: 6px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            background: var(--header-background);
            font-size: 14px;
            font-weight: 400;
            line-height: 22.4px;
            letter-spacing: 0.5px;
        }

        .topbar-inner {
            display: contents;
        }

        .language {
            position: relative;
            flex: 0 0 auto;
            color: var(--muted);
        }

        .language summary {
            min-height: 22.4px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.6);
            font-family: Figtree, Arial, Helvetica, sans-serif;
            font-size: 14px;
            font-weight: 400;
            line-height: 22.4px;
            letter-spacing: 0.5px;
            cursor: pointer;
            list-style: none;
        }

        .language summary::-webkit-details-marker {
            display: none;
        }

        .language-icon {
            width: 18px;
            height: 18px;
            display: block;
        }

        .language-current {
            min-width: 28px;
            display: inline-flex;
            align-items: center;
            align-self: center;
            transform: translateY(1px);
        }

        .language-menu {
            position: absolute;
            top: calc(100% + 10px);
            left: 0;
            z-index: 20;
            min-width: 112px;
            padding: 6px;
            display: grid;
            gap: 2px;
            border: 1px solid rgba(255, 255, 255, 0.14);
            background: #0f0f0f;
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
        }

        .language-option {
            width: 100%;
            min-height: 38px;
            padding: 8px 10px;
            display: flex;
            align-items: center;
            background: transparent;
            color: rgba(255, 255, 255, 0.6);
            font-family: Figtree, Arial, Helvetica, sans-serif;
            font-size: 14px;
            font-weight: 400;
            line-height: 22.4px;
            letter-spacing: 0.5px;
            text-align: left;
            text-decoration: none;
            cursor: pointer;
        }

        .language-option:hover,
        .language-option:focus-visible,
        .language-option.active {
            background: rgba(255, 255, 255, 0.1);
        }

        .contact-list {
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 20px;
            list-style: none;
        }

        .contact-list address {
            color: rgba(255, 255, 255, 0.6);
            font-style: normal;
        }

        .contact-list strong {
            color: var(--text);
            font-weight: 400;
        }

        .contact-list a {
            white-space: nowrap;
            transition: color 160ms ease;
        }

        .contact-list a:hover,
        .contact-list a:focus-visible {
            color: #ffffff;
        }

        .hero {
            position: relative;
            height: 850px;
            overflow: hidden;
            background: #07111d url("assets/naslovna_hero.png") center center / cover no-repeat;
            isolation: isolate;
        }

        .hero::before {
            position: absolute;
            inset: 0;
            z-index: -1;
            background:
                linear-gradient(rgba(92, 92, 92, 0.14), rgba(92, 92, 92, 0.14)),
                linear-gradient(180deg, rgba(2, 8, 15, 0.34) 0%, rgba(2, 8, 15, 0.05) 45%, rgba(2, 8, 15, 0.42) 100%);
            content: "";
        }

        .hero-inner {
            width: 100%;
            height: 100%;
            padding: 28px 50px 55px;
            display: flex;
            flex-direction: column;
        }

        .main-nav {
            position: relative;
            width: 100%;
            height: 80px;
            display: grid;
            grid-template-columns: minmax(0, 1fr) 334px minmax(0, 1fr);
            align-items: center;
            color: #ffffff;
            font-family: "Helvetica Now Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-size: 18px;
            font-weight: 399;
            line-height: 22.4px;
            letter-spacing: -0.32px;
        }

        .nav-links {
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            gap: 24px;
            list-style: none;
            grid-column: 1;
            justify-self: start;
        }

        .nav-links > li > a,
        .nav-dropdown summary {
            cursor: pointer;
            transition: opacity 160ms ease;
        }

        .nav-links > li > a:hover,
        .nav-links > li > a:focus-visible,
        .nav-dropdown summary:hover,
        .nav-dropdown summary:focus-visible {
            opacity: 0.7;
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown summary {
            display: flex;
            align-items: center;
            gap: 9px;
            list-style: none;
        }

        .nav-dropdown summary::-webkit-details-marker {
            display: none;
        }

        .nav-dropdown summary::after {
            width: 7px;
            height: 7px;
            border-right: 1px solid currentColor;
            border-bottom: 1px solid currentColor;
            content: "";
            transform: translateY(-2px) rotate(45deg);
            transition: transform 160ms ease;
        }

        .nav-dropdown[open] summary::after {
            transform: translateY(2px) rotate(225deg);
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 12px);
            left: -14px;
            width: max-content;
            min-width: 160px;
            padding: 9px;
            display: grid;
            gap: 2px;
            border: 1px solid rgba(255, 255, 255, 0.16);
            background: rgba(15, 15, 15, 0.95);
        }

        .dropdown-menu a {
            padding: 8px 10px;
        }

        .dropdown-menu a:hover,
        .dropdown-menu a:focus-visible {
            background: rgba(255, 255, 255, 0.1);
        }

        .brand {
            width: 121px;
            height: 80px;
            grid-column: 2;
            justify-self: center;
        }

        .brand img {
            display: block;
            width: 100%;
            height: 100%;
        }

        .button {
            min-height: 44px;
            padding: 10px 26px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 17px;
            border: 1px solid transparent;
            border-radius: 999px;
            background: #ffffff;
            color: #151515;
            font-size: 16px;
            font-weight: 399;
            line-height: 22.4px;
            letter-spacing: -0.32px;
            white-space: nowrap;
            transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
        }

        .button:hover,
        .button:focus-visible {
            transform: translateY(-2px);
        }

        .button-arrow {
            width: 24px;
            height: 24px;
            display: block;
            flex: 0 0 24px;
        }

        .nav-cta {
            width: 211px;
            height: 40px;
            min-height: 40px;
            padding: 0 24px;
            gap: 10px;
            border-radius: 50px;
            color: #020202;
            grid-column: 3;
            justify-self: end;
        }

        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            padding: 11px;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: #ffffff;
            cursor: pointer;
        }

        .menu-toggle-lines,
        .menu-toggle-lines::before,
        .menu-toggle-lines::after {
            width: 22px;
            height: 1px;
            display: block;
            background: currentColor;
            content: "";
            transition: transform 200ms ease, background-color 200ms ease;
        }

        .menu-toggle-lines {
            position: relative;
        }

        .menu-toggle-lines::before,
        .menu-toggle-lines::after {
            position: absolute;
            left: 0;
        }

        .menu-toggle-lines::before {
            top: -7px;
        }

        .menu-toggle-lines::after {
            top: 7px;
        }

        .hero-content {
            margin-top: auto;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            align-items: end;
            gap: 0;
        }

        .hero-title {
            max-width: 720px;
            margin: 0;
            color: #ffffff;
            font-family: "Helvetica Now Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-size: 64px;
            font-weight: 400;
            line-height: 110%;
            letter-spacing: -1.28px;
        }

        .hero-title > span,
        .hero-title > a {
            display: block;
            white-space: nowrap;
        }

        .hero-title a {
            text-decoration: underline;
            text-decoration-thickness: 2px;
            text-underline-offset: 8px;
        }

        .hero-title a:hover,
        .hero-title a:focus-visible {
            color: #fb8926;
        }

        .hero-actions {
            width: 465px;
            max-width: 100%;
            padding-bottom: 4px;
            justify-self: end;
        }

        .hero-description {
            max-width: 420px;
            margin: 0 0 18px;
            color: #ffffff;
            font-size: 16px;
            line-height: 1.55;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
        }

        .button-primary {
            min-width: 260px;
            min-height: 63px;
            background: #fb8926;
            color: #ffffff;
            font-size: 16px;
            font-weight: 399;
        }

        .button-secondary {
            min-width: 188px;
            min-height: 63px;
            font-size: 16px;
            font-weight: 399;
        }

        .services {
            overflow: hidden;
            padding: 60px 0 58px;
            background: #f7f3ee;
            color: #070707;
            font-family: "Helvetica Now Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-weight: 350;
        }

        .services-heading,
        .services-carousel {
            margin-right: 78px;
            margin-left: 78px;
        }

        .services-heading {
            margin-bottom: 42px;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            align-items: end;
            gap: 30px;
        }

        .services-title {
            max-width: 420px;
            margin: 0;
            font-size: 48px;
            font-weight: 350;
            line-height: 1.12;
            letter-spacing: -0.92px;
        }

        .services-intro {
            max-width: 470px;
            margin: 0 0 2px auto;
            font-size: 16px;
            line-height: 1.5;
        }

        .services-track {
            display: flex;
            gap: 18px;
            transition: transform 360ms ease;
            will-change: transform;
        }

        .service-card {
            height: 418px;
            padding: 22px;
            display: grid;
            grid-template-columns: minmax(258px, 1fr) 370px;
            gap: 22px;
            flex: 0 0 745px;
            border-radius: 22px;
            background: #ffffff;
        }

        .service-card-content {
            min-width: 0;
            padding-top: 20px;
            display: flex;
            flex-direction: column;
        }

        .service-card h3 {
            margin: 0 0 26px;
            font-size: 32px;
            font-weight: 400;
            line-height: 1.15;
            letter-spacing: -0.6px;
        }

        .service-label {
            margin: 0 0 16px;
            color: #a2a2a2;
            font-size: 16px;
            line-height: 1.5;
        }

        .service-list {
            margin: 0;
            padding: 0;
            display: grid;
            gap: 10px;
            list-style: none;
            font-size: 16px;
            line-height: 22.4px;
            letter-spacing: -0.32px;
        }

        .service-list li::before {
            margin-right: 6px;
            content: "-";
        }

        .service-more {
            width: fit-content;
            margin-top: auto;
            padding-bottom: 2px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid #fb8926;
            color: #fb8926;
            font-size: 14px;
            line-height: 1.3;
        }

        .service-more::after {
            content: "";
            width: 20px;
            height: 20px;
            display: block;
            flex: 0 0 20px;
            background: url("/template/meddens/assets/img/arrow_left_alt.svg") center / contain no-repeat;
            filter: invert(56%) sepia(98%) saturate(1600%) hue-rotate(343deg) brightness(102%);
        }

        .service-more img {
            display: none !important;
        }

        .service-card-image {
            width: 370px;
            height: 370px;
            display: block;
            border-radius: 11px;
            object-fit: cover;
        }

        .services-footer {
            margin-top: 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .services-count {
            font-size: 14px;
            line-height: 1;
        }

        .services-controls {
            display: flex;
            gap: 10px;
        }

        .carousel-button {
            width: 52px;
            height: 52px;
            padding: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #ffffff;
            color: #151515;
            cursor: pointer;
            transition: opacity 160ms ease, transform 160ms ease;
        }

        .carousel-button:last-child {
            background: #fb8926;
            color: #ffffff;
        }

        .carousel-button:hover:not(:disabled),
        .carousel-button:focus-visible:not(:disabled) {
            transform: translateY(-2px);
        }

        .carousel-button:disabled {
            opacity: 0.45;
            cursor: default;
        }

        .carousel-chevron {
            width: 10px;
            height: 10px;
            border-top: 1px solid currentColor;
            border-right: 1px solid currentColor;
        }

        .carousel-button:first-child .carousel-chevron {
            transform: translateX(2px) rotate(-135deg);
        }

        .carousel-button:last-child .carousel-chevron {
            transform: translateX(-2px) rotate(45deg);
        }

        .reasons {
            position: relative;
            overflow: hidden;
            padding-bottom: 68px;
            background: #ff8722;
            color: #ffffff;
            font-family: "Helvetica Now Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
        }

        .reasons-cover {
            position: relative;
            height: 840px;
            background: url("assets/background_section3.png") center 5% / cover no-repeat;
        }

        .reasons-cover::after {
            position: absolute;
            inset: 34% 0 0;
            background: linear-gradient(180deg, rgba(255, 135, 34, 0) 0%, rgba(255, 135, 34, 0.2) 42%, #ff8722 100%);
            content: "";
        }

        .reasons-title {
            position: absolute;
            right: 20px;
            bottom: 470px;
            left: 20px;
            z-index: 1;
            margin: 0;
            text-align: center;
            font-size: 48px;
            font-weight: 400;
            line-height: 57.6px;
            letter-spacing: -0.96px;
        }

        .reasons-grid {
            position: relative;
            z-index: 2;
            width: calc(100% - 100px);
            max-width: 1340px;
            height: 780px;
            margin: -445px auto 0;
            padding: 20px;
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr;
            grid-template-rows: repeat(2, 360px);
            gap: 20px;
            border-radius: 28px;
            background: rgba(79, 53, 38, 0.24);
            backdrop-filter: blur(8px);
        }

        .reason-card {
            position: relative;
            overflow: hidden;
            min-width: 0;
            padding: 26px 22px;
            display: flex;
            flex-direction: column;
            border: 1px solid rgba(255, 255, 255, 0.28);
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.12);
        }

        .reason-card h3 {
            position: relative;
            z-index: 2;
            margin: 0;
            font-size: 32px;
            font-weight: 300;
            line-height: 38.4px;
            letter-spacing: -0.64px;
        }

        .reason-primary {
            grid-row: 1 / 3;
            padding: 40px 32px 20px;
            background: url("assets/section3_block1.png") 42% 45% / cover no-repeat;
        }

        .reason-primary h3 {
            font-size: 40px;
            line-height: 1.1;
            letter-spacing: -0.8px;
        }

        .reason-primary::before {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(4, 6, 9, 0.7) 0%, rgba(4, 6, 9, 0.25) 55%, rgba(4, 6, 9, 0.4) 100%);
            content: "";
        }

        .reason-copy {
            position: relative;
            z-index: 2;
            max-width: 340px;
            margin: 16px 0 0;
            font-size: 18px;
            line-height: 25.2px;
            letter-spacing: -0.36px;
            font-weight: 300;
        }

        .reason-booking {
            position: relative;
            z-index: 2;
            width: 100%;
            min-height: 40px;
            margin-top: auto;
            padding: 10px 22px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50px;
            background: #050505;
            color: #ffffff;
            font-size: 12px;
        }

        .reason-image-card {
            padding: 28px 22px;
        }

        .reason-image-card img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transform: scaleX(-1);
        }

        .reason-image-card::after {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(255, 135, 34, 0.38) 0%, rgba(255, 135, 34, 0.16) 55%, rgba(255, 135, 34, 0.04) 100%);
            content: "";
        }

        .reason-image-card h3 {
            max-width: 190px;
        }

        .reason-centered {
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .reason-centered h3 {
            max-width: 250px;
        }

        .reason-implant {
            justify-content: flex-start;
        }

        .reason-implant img {
            position: absolute;
            right: auto;
            bottom: -22%;
            left: -22%;
            width: 200%;
            max-width: none;
            height: auto;
            object-fit: contain;
            object-position: bottom left;
        }

        .reason-implant h3 {
            max-width: 240px;
        }

        .reasons-more {
            width: fit-content;
            min-width: 104px;
            min-height: 40px;
            margin: 40px auto 0;
            padding: 9px 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50px;
            background: #ffffff;
            color: #111111;
            font-size: 12px;
            transition: transform 160ms ease;
        }

        .reasons-more:hover,
        .reasons-more:focus-visible {
            transform: translateY(-2px);
        }

        .team {
            overflow: hidden;
            padding: 88px 0 28px;
            background: #f7f3ee;
            color: #080808;
            font-family: "Helvetica Now Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
        }

        .team-heading,
        .team-carousel {
            margin-right: 80px;
            margin-left: 80px;
        }

        .team-heading {
            margin-bottom: 40px;
            display: grid;
            grid-template-columns: minmax(0, 1fr) auto;
            align-items: end;
            gap: 40px;
        }

        .team-title {
            margin: 0 0 30px;
            font-size: 48px;
            font-weight: 350;
            line-height: 1.1;
            letter-spacing: -0.96px;
        }

        .team-intro {
            max-width: 470px;
            margin: 0;
            color: #737373;
            font-size: 16px;
            font-weight: 350;
            line-height: 1.45;
        }

        .team-more {
            min-width: 144px;
            min-height: 56px;
            padding: 12px 28px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50px;
            background: #fb8926;
            color: #ffffff;
            font-size: 16px;
            transition: transform 160ms ease;
            font-weight: 300;
        }

        .team-more:hover,
        .team-more:focus-visible {
            transform: translateY(-2px);
        }

        .team-track {
            display: flex;
            gap: 16px;
            transition: transform 360ms ease;
            will-change: transform;
        }

        .team-card {
            height: 468px;
            padding: 10px;
            display: flex;
            flex: 0 0 366px;
            flex-direction: column;
            border-radius: 20px;
            background: #ffffff;
        }

        .team-card img {
            width: 100%;
            height: 370px;
            display: block;
            border-radius: 14px;
            object-fit: cover;
        }

        .team-card:nth-child(1) img,
        .team-card:nth-child(5) img {
            object-position: center 35%;
        }

        .team-card-content {
            min-height: 78px;
            padding: 17px 12px 8px;
            text-align: center;
        }

        .team-card h3 {
            margin: 0 0 5px;
            font-size: 20px;
            font-weight: 400;
            line-height: 1.2;
        }

        .team-role {
            margin: 0;
            color: #737373;
            font-size: 16px;
            font-weight: 350;
            line-height: 1.3;
        }

        .team-footer {
            margin-top: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .team-count {
            font-size: 14px;
        }

        .faq {
            padding: 72px 40px 68px;
            background: #f7f3ee;
            color: #080808;
            font-family: "Helvetica Now Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
        }

        .faq-inner {
            width: 100%;
            max-width: 1060px;
            margin: 0 auto;
        }

        .faq-title {
            margin: 0 0 52px;
            text-align: center;
            font-size: 48px;
            font-weight: 350;
            line-height: 1.1;
            letter-spacing: -0.96px;
        }

        .faq-list {
            display: grid;
            gap: 16px;
        }

        .faq-item {
            border: 1px solid #8d8d8d;
            border-radius: 16px;
            background: transparent;
        }

        .faq-question {
            min-height: 80px;
            padding: 22px 26px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            list-style: none;
            cursor: pointer;
            color: #020202;
            font-size: 24px;
            font-weight: 350;
            line-height: 28.8px;
            letter-spacing: -0.48px;
        }

        .faq-question::-webkit-details-marker {
            display: none;
        }

        .faq-question::marker {
            content: "";
        }

        .faq-question::after {
            content: "";
            width: 24px;
            height: 24px;
            display: block;
            flex: 0 0 24px;
            background: url("/template/meddens/assets/img/plus.svg") center / contain no-repeat;
            transition: clip-path 160ms ease;
        }

        .faq-item[open] .faq-question::after {
            clip-path: inset(45% 0);
        }

        .faq-icon {
            display: none !important;
        }

        .faq-answer {
            max-width: 930px;
            padding: 0 64px 26px 26px;
            color: #737373;
            font-size: 18px;
            font-weight: 350;
            line-height: 25.2px;
            letter-spacing: -0.36px;
        }

        .faq-answer p {
            margin: 0;
        }

        .site-footer {
            padding: 60px 46px 28px;
            background: #0d0e0e;
            color: #ffffff;
            font-family: "Helvetica Now Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
        }

        .footer-main {
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 322px minmax(0, 1fr);
            align-items: start;
            gap: 220px;
        }

        .footer-card {
            width: 322px;
            height: 488px;
            padding: 28px 30px 26px;
            display: flex;
            flex-direction: column;
            align-self: start;
            border-radius: 20px;
            background: #191919;
        }

        .footer-logo {
            width: 150px;
            height: auto;
            display: block;
            margin-bottom: 26px;
        }

        .footer-address,
        .footer-contact {
            margin: 0;
            color: #9a9a9a;
            font-size: 14px;
            font-style: normal;
            font-weight: 350;
            line-height: 1.55;
        }

        .footer-contact {
            margin-top: 8px;
            display: grid;
            gap: 6px;
        }

        .footer-contact a {
            transition: color 160ms ease;
        }

        .footer-contact a:hover,
        .footer-contact a:focus-visible {
            color: #ffffff;
        }

        .footer-appointment {
            width: 100%;
            min-height: 54px;
            margin-top: auto;
            padding: 12px 22px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50px;
            background: #fb8926;
            color: #ffffff;
            font-size: 14px;
            transition: transform 160ms ease;
        }

        .footer-appointment:hover,
        .footer-appointment:focus-visible {
            transform: translateY(-2px);
        }

        .footer-socials {
            margin-top: 28px;
            display: flex;
            gap: 14px;
        }

        .footer-socials a {
            width: 48px;
            height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #272727;
            color: #a9a9a9;
            font-size: 14px;
            font-weight: 600;
            transition: background-color 160ms ease, color 160ms ease;
        }

        .footer-socials a:hover,
        .footer-socials a:focus-visible {
            background: #fb8926;
            color: #ffffff;
        }

        .footer-links {
            padding-top: 4px;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            align-content: start;
            column-gap: 50px;
            row-gap: 120px;
        }

        .footer-column h3 {
            margin: 0 0 18px;
            font-size: 18px;
            font-weight: 400;
            line-height: 25.2px;
            letter-spacing: -0.36px;
        }

        .footer-column ul {
            margin: 0;
            padding: 0;
            display: grid;
            gap: 11px;
            list-style: none;
        }

        .footer-column li,
        .footer-column a {
            color: #969696;
            font-size: 16px;
            font-weight: 350;
            line-height: 22.4px;
            letter-spacing: -0.32px;
            
        }

        .footer-column a:hover,
        .footer-column a:focus-visible {
            color: #ffffff;
        }

        .footer-simple-links {
            align-content: start;
        }

        .footer-simple-links a {
            color: #ffffff;
            font-size: 18px;
            line-height: 25.2px;
            letter-spacing: -0.36px;
            font-weight: 400;
        }

        .footer-bottom {
            width: 100%;
            max-width: 1300px;
            margin: 110px auto 0;
            padding-top: 26px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            border-top: 1px solid #282828;
            color: #c0c0c0;
            font-size: 16px;
            font-weight: 350;
            letter-spacing: -0.36px;
            line-height: 25.2px;
        }

        .footer-meta,
        .footer-legal {
            display: flex;
            align-items: center;
            gap: 36px;
        }

        .footer-copyright {
            width: 331px;
            height: 26px;
            flex: 0 0 331px;
            color: #ffffff;
            font-family: Figtree, Arial, Helvetica, sans-serif;
            font-size: 16px;
            font-weight: 400;
            line-height: 25.2px;
            letter-spacing: 0;
            white-space: nowrap;
        }

        .footer-legal-link {
            width: max-content;
            height: 26px;
            display: inline-block;
            color: #ffffff;
            font-family: Figtree, Arial, Helvetica, sans-serif;
            font-size: 16px;
            font-weight: 400;
            line-height: 25.2px;
            letter-spacing: -0.36px;
            white-space: nowrap;
        }

        .footer-credit strong {
            color: #fb8926;
            font-weight: 400;
        }

        .footer-legal a:hover,
        .footer-legal a:focus-visible {
            color: #ffffff;
        }

        @media (max-width: 1300px) {
            .topbar {
                height: auto;
                padding: 12px 20px;
            }

            .contact-list {
                flex-wrap: wrap;
                row-gap: 8px;
                column-gap: 20px;
            }

            .contact-list address {
                width: 100%;
                text-align: right;
            }

            .hero-inner {
                padding: 22px 28px 40px;
            }

            .header-nav-shell {
                padding: 22px 28px 0;
            }

            .main-nav {
                height: 64px;
                grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr);
            }

            .brand {
                width: 97px;
                height: 64px;
            }

            .menu-toggle {
                display: inline-flex;
                grid-column: 3;
                justify-self: end;
            }

            .nav-cta {
                display: none;
            }

            .nav-links {
                position: absolute;
                top: calc(100% + 12px);
                right: 0;
                z-index: 3;
                width: min(300px, calc(100vw - 56px));
                padding: 16px;
                display: none;
                align-items: stretch;
                gap: 2px;
                background: rgba(15, 15, 15, 0.97);
            }

            .main-nav.menu-open .nav-links {
                display: grid;
            }

            .nav-links > li > a,
            .nav-dropdown summary {
                padding: 10px;
                display: flex;
            }

            .dropdown-menu {
                position: static;
                width: 100%;
                margin-top: 2px;
                border: 0;
                background: rgba(255, 255, 255, 0.06);
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .hero-title {
                max-width: 720px;
                font-size: 48px;
            }

            .hero-actions {
                width: 100%;
                max-width: 620px;
                justify-self: start;
            }

            .services-heading,
            .services-carousel {
                margin-right: 40px;
                margin-left: 40px;
            }

            .reasons-grid {
                width: calc(100% - 56px);
                height: auto;
                grid-template-rows: repeat(2, 258px);
            }

            .reason-card {
                padding: 26px 22px;
            }

            .reason-card h3 {
                font-size: 24px;
            }

            .team-heading,
            .team-carousel {
                margin-right: 40px;
                margin-left: 40px;
            }

            .team-card {
                flex-basis: 320px;
            }

            .faq {
                padding-right: 28px;
                padding-left: 28px;
            }

            .footer-main {
                grid-template-columns: 280px minmax(0, 1fr);
                gap: 58px;
            }

            .footer-card {
                width: 100%;
            }

            .footer-links {
                column-gap: 38px;
            }
        }

        @media (min-width: 901px) and (max-width: 1300px) {
            .topbar {
                height: 35px;
                padding: 6px 20px;
            }

            .contact-list {
                flex-wrap: nowrap;
                gap: 20px;
            }

            .contact-list address {
                width: auto;
                text-align: left;
            }
        }

        @media (min-width: 561px) and (max-width: 900px) {
            .services-heading {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .services-intro {
                margin-left: 0;
            }

            .service-card {
                height: 388px;
                grid-template-columns: minmax(0, 1fr) minmax(220px, 44%);
                flex-basis: calc(100vw - 80px);
            }

            .service-card-image {
                width: 100%;
                height: 344px;
            }

            .reasons-cover {
                height: 470px;
            }

            .reasons-title {
                bottom: 120px;
                font-size: 42px;
            }

            .reasons-grid {
                margin-top: -105px;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                grid-template-rows: none;
                grid-auto-rows: 300px;
            }

            .reason-primary {
                height: auto;
                min-height: 600px;
                grid-column: 1 / -1;
                grid-row: span 2;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .footer-card {
                width: 100%;
                max-width: 360px;
            }

            .footer-links {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }
        }

        @media (min-width: 561px) and (max-width: 780px) {
            html,
            body {
                width: 100%;
                max-width: 100%;
                overflow-x: hidden;
            }

            .site-header,
            main,
            .hero,
            .services,
            .reasons,
            .team,
            .faq,
            .site-footer {
                width: 100%;
                max-width: none;
            }

            .hero-inner {
                min-width: 0;
            }
        }

        @media (min-width: 561px) and (max-width: 1300px) {
            body.menu-is-open {
                overflow: hidden;
            }

            .menu-toggle {
                z-index: 31;
            }

            .nav-links {
                position: fixed;
                inset: 0;
                z-index: 30;
                width: 100vw;
                height: 100dvh;
                padding: 104px 48px 40px;
                display: flex;
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                gap: 12px;
                overflow-y: auto;
                background: #0f0f0f;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transform: translateX(100%);
                transition: transform 320ms ease, opacity 220ms ease, visibility 0s linear 320ms;
            }

            .main-nav.menu-open .nav-links {
                display: flex;
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: translateX(0);
                transition-delay: 0s;
            }

            .nav-links > li > a,
            .nav-dropdown summary {
                min-height: 48px;
                padding: 12px 8px;
                align-items: center;
                font-size: 22px;
                line-height: 1.2;
            }

            .dropdown-menu {
                padding: 4px 8px 10px 20px;
                background: transparent;
            }

            .main-nav.menu-open .menu-toggle {
                position: fixed;
                top: 22px;
                right: 28px;
                transform: none;
            }

            .main-nav.menu-open .menu-toggle-lines {
                background: transparent;
            }

            .main-nav.menu-open .menu-toggle-lines::before {
                top: 0;
                transform: rotate(45deg);
            }

            .main-nav.menu-open .menu-toggle-lines::after {
                top: 0;
                transform: rotate(-45deg);
            }
        }

        @media (max-width: 560px) {
            body.menu-is-open {
                overflow: hidden;
            }

            .site-header {
                padding: 0;
            }

            .topbar {
                align-items: flex-start;
                gap: 20px;
                padding: 14px 16px;
            }

            .contact-list {
                display: grid;
                gap: 7px;
                text-align: right;
            }

            .contact-list address {
                display: none;
            }

            .hero {
                height: 800px;
                background-position: 58% center;
            }

            .hero-inner {
                height: 100%;
                padding: 14px 18px 28px;
            }

            .header-nav-shell {
                padding: 14px 18px 0;
            }

            .brand {
                position: absolute;
                top: 50%;
                left: 50%;
                width: 85px;
                height: 56px;
                grid-column: auto;
                transform: translate(-50%, -50%);
            }

            .main-nav {
                display: block;
                height: 64px;
            }

            .menu-toggle {
                position: absolute;
                top: 50%;
                right: 0;
                z-index: 31;
                grid-column: auto;
                transform: translateY(-50%);
            }

            .nav-links {
                position: fixed;
                inset: 0;
                z-index: 30;
                width: 100vw;
                height: 100dvh;
                padding: 104px 32px 40px;
                display: flex;
                flex-direction: column;
                align-items: stretch;
                justify-content: flex-start;
                gap: 12px;
                overflow-y: auto;
                background: #0f0f0f;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transform: translateX(100%);
                transition: transform 320ms ease, opacity 220ms ease, visibility 0s linear 320ms;
            }

            .main-nav.menu-open .nav-links {
                display: flex;
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: translateX(0);
                transition-delay: 0s;
            }

            .nav-links > li > a,
            .nav-dropdown summary {
                min-height: 48px;
                padding: 12px 8px;
                align-items: center;
                font-size: 22px;
                line-height: 1.2;
            }

            .dropdown-menu {
                padding: 4px 8px 10px 20px;
                background: transparent;
            }

            .main-nav.menu-open .menu-toggle {
                position: fixed;
                top: 22px;
                right: 18px;
                transform: none;
            }

            .main-nav.menu-open .menu-toggle-lines {
                background: transparent;
            }

            .main-nav.menu-open .menu-toggle-lines::before {
                top: 0;
                transform: rotate(45deg);
            }

            .main-nav.menu-open .menu-toggle-lines::after {
                top: 0;
                transform: rotate(-45deg);
            }

            .hero-title {
                font-size: 36px;
                line-height: 1.18;
            }

            .hero-title > span,
            .hero-title > a {
                white-space: normal;
            }

            .hero-description {
                font-size: 15px;
            }

            .hero-buttons {
                display: grid;
            }

            .button-primary,
            .button-secondary {
                width: 100%;
                min-width: 0;
                min-height: 52px;
            }

            .services {
                padding: 42px 0;
            }

            .services-heading,
            .services-carousel {
                margin-right: 18px;
                margin-left: 18px;
            }

            .services-heading {
                margin-bottom: 28px;
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .services-title {
                font-size: 36px;
            }

            .services-intro {
                margin-left: 0;
            }

            .service-card {
                height: auto;
                padding: 18px;
                grid-template-columns: 1fr;
                flex-basis: calc(100vw - 36px);
                border-radius: 16px;
            }

            .service-card-content {
                min-height: 330px;
                padding-top: 4px;
            }

            .service-card h3 {
                font-size: 27px;
            }

            .service-card-image {
                width: 100%;
                height: auto;
                aspect-ratio: 1;
            }

            .services-footer {
                margin-top: 24px;
            }

            .reasons {
                padding-bottom: 48px;
            }

            .reasons-cover {
                height: 380px;
                background-position: 58% center;
            }

            .reasons-title {
                bottom: 82px;
                font-size: 34px;
            }

            .reasons-grid {
                width: calc(100% - 28px);
                margin-top: -62px;
                padding: 10px;
                grid-template-columns: 1fr;
                grid-template-rows: none;
                grid-auto-rows: minmax(260px, auto);
                gap: 10px;
                border-radius: 22px;
            }

            .reason-card {
                min-height: 260px;
                padding: 26px 22px;
                border-radius: 17px;
            }

            .reason-card h3 {
                font-size: 25px;
            }

            .reason-primary {
                min-height: 540px;
                grid-row: auto;
            }

            .reasons-more {
                margin-top: 30px;
            }

            .team {
                padding-top: 52px;
            }

            .team-heading,
            .team-carousel {
                margin-right: 18px;
                margin-left: 18px;
            }

            .team-heading {
                margin-bottom: 28px;
                grid-template-columns: 1fr;
                gap: 22px;
            }

            .team-title {
                margin-bottom: 18px;
                font-size: 38px;
            }

            .team-more {
                width: 100%;
            }

            .team-card {
                height: auto;
                flex-basis: calc(100vw - 36px);
            }

            .team-card img {
                height: auto;
                aspect-ratio: 0.94;
            }

            .team-footer {
                margin-top: 26px;
            }

            .faq {
                padding: 52px 18px;
            }

            .faq-title {
                margin-bottom: 32px;
                font-size: 38px;
            }

            .faq-list {
                gap: 12px;
            }

            .faq-question {
                min-height: 68px;
                padding: 18px;
                font-size: 16px;
            }

            .faq-answer {
                padding: 0 48px 20px 18px;
            }

            .site-footer {
                padding: 28px 18px 22px;
            }

            .footer-main {
                grid-template-columns: 1fr;
                gap: 42px;
            }

            .footer-card {
                min-height: 430px;
                height: auto;
            }

            .footer-links {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                column-gap: 26px;
                row-gap: 38px;
            }

            .footer-bottom,
            .footer-meta,
            .footer-legal {
                align-items: flex-start;
                flex-direction: column;
                gap: 14px;
            }

            .footer-bottom {
                margin-top: 48px;
            }

            .footer-copyright {
                width: 100%;
                height: auto;
                flex-basis: auto;
                white-space: normal;
            }
        }

        /* GrapesJS shrani background z vrednostmi repeat/auto. */
        .hero-inner,
        .reasons-cover,
        .reason-card.reason-primary,
        .reason-card.reason-image-card,
        .reason-card.reason-implant {
            background-repeat: no-repeat !important;
            background-attachment: scroll !important;
        }

        .hero-inner {
            background-size: cover !important;
            background-position: center center !important;
            max-width: none !important;
            position: relative;
            isolation: isolate;
        }

        .hero-inner::before {
            position: absolute;
            inset: 0;
            z-index: 0;
            background:
                linear-gradient(rgba(92, 92, 92, 0.14), rgba(92, 92, 92, 0.14)),
                linear-gradient(180deg, rgba(2, 8, 15, 0.34) 0%, rgba(2, 8, 15, 0.05) 45%, rgba(2, 8, 15, 0.42) 100%);
            content: "";
            pointer-events: none;
        }

        .hero-inner > * {
            position: relative;
            z-index: 1;
        }

        .reasons-cover {
            background-size: cover !important;
            background-position: center 5% !important;
        }

        .reason-card.reason-primary {
            background-size: cover !important;
            background-position: 42% 45% !important;
        }

        .reason-card.reason-image-card {
            background-size: cover !important;
            background-position: center center !important;
        }

        .reason-card.reason-implant {
            background-size: contain !important;
            background-position: bottom left !important;
        }

        .reason-card.reason-image-card > img,
        .reason-card.reason-implant > img {
            display: none;
        }

        @media (min-width: 2000px) {
            .topbar-inner {
                width: 100%;
                max-width: 1960px;
                margin-inline: auto;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 32px;
            }

            .hero-inner {
                max-width: 2000px;
                margin-inline: auto;
            }

            .header-nav-shell {
                max-width: 2000px;
                margin-inline: auto;
            }

            .services-heading,
            .services-carousel {
                width: calc(100% - 156px);
                max-width: 1844px;
                margin-right: auto;
                margin-left: auto;
            }

            .services-carousel {
                overflow: hidden;
            }

            .team-heading,
            .team-carousel {
                width: calc(100% - 160px);
                max-width: 1840px;
                margin-right: auto;
                margin-left: auto;
            }

            .team-carousel {
                overflow: hidden;
            }
        }

/* Meddens database forms */
.meddens-form-slot {
    width: min(calc(100% - 36px), 1040px);
    margin: clamp(48px, 7vw, 100px) auto;
}

.form-style-1 {
    color: #171717;
    font-family: inherit;
}

.form-style-1 form {
    padding: clamp(28px, 5vw, 64px);
    background: #f7f3ee;
}

.form-style-1 .form-holder {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.form-style-1 .form-holder > h1,
.form-style-1 .form-holder > h2,
.form-style-1 .form-holder > h3,
.form-style-1 .form-holder > p,
.form-style-1 .contact-form-intro,
.form-style-1 .form-textarea-group,
.form-style-1 .form-select-group,
.form-style-1 .form-file-group,
.form-style-1 .form-image-selector,
.form-style-1 .group-separator,
.form-style-1 .form-holder > hr {
    grid-column: 1 / -1;
}

.form-style-1 .form-holder > h1,
.form-style-1 .form-holder > h2,
.form-style-1 .contact-form-intro h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.form-style-1 .form-holder > p,
.form-style-1 .contact-form-intro p {
    max-width: 720px;
    margin: 0 0 12px;
    color: #645e58;
    font-size: 17px;
    line-height: 1.65;
}

.form-style-1 .contact-form-intro {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}

.form-style-1 .contact-form-intro .eyebrow {
    margin: 0;
    color: #f58627;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.form-style-1 .form-input-group,
.form-style-1 .form-textarea-group,
.form-style-1 .form-select-group,
.form-style-1 .form-file-group {
    min-width: 0;
    margin: 0;
}

.form-style-1 label {
    display: block;
    margin-bottom: 9px;
    color: #292522;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

.form-style-1 .required-mark {
    color: #f58627;
}

.form-style-1 input[type="text"],
.form-style-1 input[type="number"],
.form-style-1 input[type="email"],
.form-style-1 input[type="date"],
.form-style-1 input[type="datetime-local"],
.form-style-1 input[type="file"],
.form-style-1 select,
.form-style-1 textarea {
    width: 100%;
    min-height: 56px;
    padding: 14px 18px;
    border: 1px solid #d7cfc7;
    border-radius: 14px;
    outline: 0;
    background: #fff;
    color: #171717;
    font: inherit;
    font-size: 16px;
    line-height: 1.4;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.form-style-1 textarea {
    min-height: 180px;
    resize: vertical;
}

.form-style-1 select {
    cursor: pointer;
}

.form-style-1 input:focus,
.form-style-1 select:focus,
.form-style-1 textarea:focus {
    border-color: #f58627;
    box-shadow: 0 0 0 4px rgba(245, 134, 39, 0.14);
}

.form-style-1 .form-checkbox-group,
.form-style-1 .form-radio-group {
    position: relative;
    grid-column: 1 / -1;
    margin: 0;
    padding-left: 34px;
}

.form-style-1 .form-checkbox-group input,
.form-style-1 .form-radio-group input {
    position: absolute;
    top: 2px;
    left: 0;
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: #f58627;
    cursor: pointer;
}

.form-style-1 .form-checkbox-group label,
.form-style-1 .form-radio-group label {
    margin: 0;
    color: #5d5751;
    font-weight: 400;
    cursor: pointer;
}

.form-style-1 a {
    color: #d86608;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.form-style-1 .validationMessages {
    display: none;
    margin-top: 7px;
    color: #b42318;
    font-size: 13px;
    line-height: 1.4;
}

.form-style-1 .errorValidation {
    border-color: #b42318 !important;
    background: #fff7f6 !important;
}

/* Skupina polja z napako. Razred doda form.js na .form-*-group.
   Potreben je tam, kjer obroba iz .errorValidation ni vidna — pri
   potrditvenih in izbirnih poljih, ki jih riše brskalnik sam. */
.form-style-1 .has-validation-error > label {
    color: #b42318;
}

.form-style-1 .form-checkbox-group.has-validation-error label,
.form-style-1 .form-radio-group.has-validation-error label {
    color: #b42318;
}

.form-style-1 .form-checkbox-group.has-validation-error input,
.form-style-1 .form-radio-group.has-validation-error input {
    accent-color: #b42318;
    outline: 2px solid #b42318;
    outline-offset: 2px;
    border-radius: 4px;
}

.form-style-1 .form-alert-message {
    display: none;
    margin-bottom: 24px;
    padding: 16px 18px;
    border-radius: 14px;
    font-size: 15px;
    line-height: 1.5;
}

.form-style-1 .alert-danger {
    border: 1px solid #f1b5af;
    background: #fff2f0;
    color: #8f1d14;
}

.form-style-1 .alert-success {
    border: 1px solid #a8d5b3;
    background: #effaf2;
    color: #176b32;
}

.form-style-1 .form-button-group {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.form-style-1 .submit-btn {
    min-width: 210px;
    min-height: 58px;
    padding: 15px 28px;
    border: 0;
    border-radius: 999px;
    background: #f58627;
    color: #fff;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.form-style-1 .submit-btn:hover {
    transform: translateY(-2px);
    background: #df741a;
    box-shadow: 0 12px 26px rgba(245, 134, 39, 0.24);
}

.form-style-1 .submit-btn:focus-visible {
    outline: 3px solid rgba(245, 134, 39, 0.3);
    outline-offset: 3px;
}

.form-style-1 .submit-btn:disabled {
    opacity: 0.65;
    cursor: wait;
    transform: none;
}

.form-style-1 .spinner {
    display: none;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #fff;
    border-radius: 50%;
    vertical-align: -3px;
    animation: meddens-form-spin 700ms linear infinite;
}

.form-style-1 .select-box-holder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.form-style-1 .select-box {
    overflow: hidden;
    border: 1px solid #d7cfc7;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
}

.form-style-1 .select-box img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.form-style-1 .select-box .title {
    padding: 12px 14px;
    font-weight: 600;
}

.form-style-1 .contact-form-details {
    display: grid;
    gap: 12px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #d7cfc7;
    font-style: normal;
}

.form-style-1 .contact-direct {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
}

@keyframes meddens-form-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 700px) {
    .meddens-form-slot {
        width: min(calc(100% - 28px), 1040px);
        margin-block: 44px;
    }

    .form-style-1 form {
        padding: 26px 20px;
        border-radius: 22px;
    }

    .form-style-1 .form-holder {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-style-1 .form-input-group,
    .form-style-1 .form-checkbox-group,
    .form-style-1 .form-radio-group {
        grid-column: 1;
    }

    .form-style-1 .form-button-group,
    .form-style-1 .submit-btn {
        width: 100%;
    }
}


/* Notranje strani imajo samostojen crn header; naslovnica ostane prosojna cez hero. */
.site-header--inner {
    background: var(--header-background);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.site-header--inner .header-nav-shell {
    position: relative;
    top: auto;
    padding: 14px 50px;
    background: var(--header-background);
}

@media (max-width: 560px) {
    .site-header--inner .header-nav-shell {
        padding: 8px 18px;
    }
}


/* Kompaktnejsa postavitev kontaktnega obrazca */
.form-editor-placeholder {
    width: min(calc(100% - 36px), 1180px);
    margin: clamp(44px, 6vw, 84px) auto;
}

.form-editor-placeholder .form-style-1,
.meddens-form-slot .form-style-1 {
    width: 100%;
}

.form-style-1 form {
    overflow: hidden;
    padding: clamp(24px, 4vw, 48px);
    border-radius: 26px;
}

.form-style-1 .form-holder {
    gap: 22px 24px;
}

.form-style-1 .form-head-content {
    grid-column: 1 / -1;
    margin-bottom: 10px;
    padding: clamp(24px, 4vw, 42px);
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(280px, 1.2fr);
    grid-auto-flow: row;
    align-items: start;
    gap: 9px 48px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 88% 12%, rgba(245, 134, 39, 0.2), transparent 34%),
        #171717;
    color: #fff;
}

.form-style-1 .form-head-content p {
    grid-column: 2;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.55;
}

.form-style-1 .form-head-content p:first-child {
    grid-column: 1;
    grid-row: 1 / span 9;
    padding-right: 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.65;
}

.form-style-1 .form-head-content p:first-child strong {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: clamp(22px, 2.3vw, 30px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.form-style-1 .form-head-content p:nth-child(4) {
    margin-top: 10px;
    color: #f58627;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.form-style-1 .form-input-group,
.form-style-1 .form-textarea-group,
.form-style-1 .form-select-group {
    align-self: start;
}

.form-style-1 .form-textarea-group {
    margin-top: 2px;
}

.form-style-1 .form-checkbox-group {
    margin-top: 2px;
}

.form-style-1 .form-button-group {
    margin-top: 26px;
}

@media (max-width: 700px) {
    .form-editor-placeholder {
        width: min(calc(100% - 28px), 1180px);
        margin-block: 36px;
    }

    .form-style-1 .form-head-content {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 24px 20px;
    }

    .form-style-1 .form-head-content p,
    .form-style-1 .form-head-content p:first-child {
        grid-column: 1;
        grid-row: auto;
        padding-right: 0;
    }

    .form-style-1 .form-head-content p:first-child {
        margin-bottom: 16px;
    }

    .form-style-1 .form-head-content p:nth-child(4) {
        margin-top: 14px;
    }
}

.site-header--inner + .site-content {
    min-height: 60vh;
    overflow: hidden;
    background: #f7f3ee;
}

/* Stran 404 */
.not-found-page {
    width: min(calc(100% - 36px), 1040px);
    margin: clamp(48px, 7vw, 100px) auto;
    color: #171717;
}

.not-found-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 640px;
}

.not-found-eyebrow {
    margin: 0 0 12px;
    color: #fb8926;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 2.8px;
}

.not-found-title {
    margin: 0;
    font-size: 48px;
    font-weight: 350;
    line-height: 1.1;
    letter-spacing: -0.96px;
}

.not-found-text {
    margin: 20px 0 0;
    color: #737373;
    font-size: 16px;
    line-height: 1.55;
}

.not-found-text p {
    margin: 0 0 12px;
}

.not-found-text p:last-child {
    margin-bottom: 0;
}

.not-found-button {
    margin-top: 36px;
}

@media (max-width: 768px) {
    .not-found-page {
        width: min(calc(100% - 28px), 1040px);
        margin-block: 44px;
    }

    .not-found-title {
        font-size: 36px;
    }

    .not-found-button {
        width: 100%;
        min-width: 0;
    }
}
