/* Outfit - latin-ext (for Slovak characters) */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('fonts/outfit-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Outfit - latin */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('fonts/outfit-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Inter - latin-ext */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Inter - latin */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --primary: #1E88E5;
    --primary-dark: #1565C0;
    --primary-light: #42A5F5;
    --accent: #FF8C42;
    --accent-hover: #E67300;
    --black: #0A0A0A;
    --dark: #111111;
    --gray-dark: #1E1E1E;
    --gray: #2D2D2D;
    --gray-light: #888888;
    --white: #FFFFFF;
    --off-white: #F5F5F5;
    --cream: #FAFAFA;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

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

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

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes drawLine {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.8);
    }

    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes slideReveal {
    from {
        clip-path: inset(0 100% 0 0);
    }

    to {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(10px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(10px) rotate(-360deg);
    }
}

@keyframes morphBlob {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.6rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 4%;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--white);
    transition: transform 0.3s;
    gap: 1.3rem;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.nav-logo img {
    height: 42px;
    width: auto;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--white);
    position: relative;
    padding: 0.3rem 0.3rem;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

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

.nav-cta {
    background: var(--accent);
    color: var(--white);
    padding: 0.7rem 2.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s var(--transition-smooth);
    border: 2px solid var(--accent);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 140, 66, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--transition-smooth);
    border-radius: 2px;
}

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

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

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

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: center;
    justify-items: center;
    position: relative;
    overflow: hidden;
    background: var(--black);
    padding: 90px 4% 1.5rem;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(30, 136, 229, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 140, 66, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(30, 136, 229, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    grid-row: 1;
    align-self: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(30, 136, 229, 0.1);
    border: 1px solid rgba(30, 136, 229, 0.3);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    letter-spacing: 1.5px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta-group {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.hero-scroll-indicator {
    position: relative;
    grid-row: 2;
    z-index: 2;
    padding-top: 1.5rem;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: float 1.5s ease-in-out infinite;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--accent);
    bottom: 20%;
    right: -3%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--primary-light);
    top: 50%;
    right: 15%;
    animation-delay: 4s;
}

/* ===== SECTIONS COMMON ===== */
section {
    padding: 6rem 4%;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-label .line {
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 600px;
    line-height: 1.7;
    margin-top: 0.7rem
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--dark);
    padding: 8rem 4%;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

.about-image-frame:hover img {
    transform: scale(1.05);
}

.about-image-frame::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--accent);
    border-radius: 20px;
    z-index: -1;
    transition: all 0.4s;
}

.about-image-frame:hover::before {
    top: -20px;
    left: -20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-top: 0.3rem;
}

.about-text {
    position: relative;
    top: -2rem;
}

.about-text p {
    color: var(--gray-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 500;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: var(--black);
    padding: 5rem 4%;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 90%;
    margin: 0 auto;
}

.service-card {
    background: var(--gray-dark);
    border-radius: 20px;
    padding: 2rem 1.8rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s var(--transition-smooth);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(30, 136, 229, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    transition: transform 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.service-card p {
    color: var(--gray-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 0.8rem;
}

.service-link svg {
    transition: transform 0.3s;
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
    background: var(--dark);
    padding: 6rem 4%;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1200px;
    margin: 0 auto 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}


.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-category {
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.portfolio-title {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 600;
}

.portfolio-item.featured {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background: var(--black);
    padding: 8rem 4%;
}

.process-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: 0.3;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gray-dark);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    transition: all 0.4s;
}

.process-step:hover .step-number {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(30, 136, 229, 0.4);
}

.process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.6;
}

/* ===== CASE STUDIES SECTION ===== */
.blog-section {
    padding: 7rem 4%;
    background: var(--dark);
}

.blog-header {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-header .section-label {
    justify-content: center;
}

.blog-header .section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.blog-header .section-desc {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: var(--gray-dark);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(255, 140, 66, 0.2);
}

.blog-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 2rem;
}

.blog-category {
    display: inline-block;
    background: rgba(255, 140, 66, 0.15);
    color: var(--accent);
    padding: 0.4rem 0.9rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.blog-content p {
    font-size: 0.95rem;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.blog-card:hover .read-more {
    gap: 0.8rem;
}

/* ===== BLOG MODAL ===== */
.blog-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--transition-smooth);
}

.blog-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--gray-dark);
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s var(--transition-smooth);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.modal-close:hover {
    background: var(--accent);
    transform: rotate(90deg);
}

.modal-header {
    position: relative;
    z-index: 1;
}

.modal-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.modal-header h2 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.modal-result {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.modal-text {
    padding: 2rem;
}

.modal-text h3 {
    font-size: 1.3rem;
    color: var(--accent);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.modal-text h3:first-child {
    margin-top: 0;
}

.modal-text p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.modal-text ul {
    list-style: none;
    margin: 1.5rem 0;
}

.modal-text ul li {
    color: var(--gray-light);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.modal-text ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.modal-text strong {
    color: var(--accent);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    padding: 6rem 4%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.cta-btn {
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--white);
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    padding: 5rem 4% 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-desc {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
    border-color: var(--primary);
}

.footer-col h4 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: var(--gray-light);
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.footer-col ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.footer-col ul li a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20rem;
    color: var(--gray-light);
    font-size: 0.9rem;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-bottom p {
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

.legal-links a {
    color: var(--gray-light);
    font-size: 0.9rem;
    transition: color 0.3s;
    position: relative;
}

.legal-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s;
}

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

.legal-links a:hover::after {
    width: 100%;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--dark);
    z-index: 999;
    padding: 6rem 2rem 2rem;
    transition: right 0.4s var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* When mobile menu is open, hide the navbar logo so hamburger button is fully visible on top */
body.menu-open .navbar .nav-logo,
.mobile-menu.active~.navbar .nav-logo,
.mobile-menu-overlay.active~.navbar .nav-logo {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}


.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 1.5rem;
}

.mobile-menu ul li a {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    transition: color 0.3s;
}

.mobile-menu ul li a:hover {
    color: var(--accent);
}

.mobile-menu .nav-cta {

    display: inline-block;
}






/* ===== PAGE HERO (subpages) ===== */
.page-hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--black);
    padding: 11rem 4% 4rem;
    text-align: center;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.breadcrumb {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: 1.8rem;
    letter-spacing: 0.5px;
}

.breadcrumb a {
    color: var(--gray-light);
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb .sep {
    color: var(--gray-light);
    opacity: 0.4;
}

.breadcrumb .current {
    color: var(--accent);
}

.page-hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.3rem;
}

.page-hero-subtitle {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--gray-light);
    max-width: 640px;
    margin: 0 auto 2.2rem;
    font-weight: 300;
}

/* ===== DETAIL SECTIONS (subpages) ===== */
.detail-section {
    background: var(--dark);
    padding: 6rem 4%;
}

.detail-section.alt {
    background: var(--black);
}

.detail-container {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: var(--gray-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s var(--transition-smooth);
}

.feature-item:hover {
    transform: translateY(-6px);
    border-color: rgba(30, 136, 229, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.feature-item .feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
}

.feature-item h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.feature-item p {
    color: var(--gray-light);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* Split block (image + text) */
.split-block {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
}

.split-block.reverse .split-image {
    order: 2;
}

.split-block.reverse .split-text {
    order: 1;
}

.split-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.split-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid var(--accent);
    border-radius: 20px;
    z-index: -1;
}

.split-image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.check-list {
    list-style: none;
    margin-top: 1.6rem;
}

.check-list li {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    color: var(--gray-light);
    margin-bottom: 1.1rem;
    font-size: 1rem;
    line-height: 1.5;
}

.check-list li svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
    color: var(--accent);
}

/* Pricing / packages */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.pricing-card {
    background: var(--gray-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.6rem 2rem;
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
}

.pricing-card.highlight {
    border-color: var(--accent);
    transform: scale(1.03);
}

.pricing-card.highlight::before {
    content: 'Odporúčame';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

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

.pricing-card.highlight:hover {
    transform: scale(1.03) translateY(-6px);
}

.pricing-card h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    margin: 1rem 0;
}

.pricing-card .price span {
    font-size: 0.9rem;
    color: var(--gray-light);
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0 2rem;
}

.pricing-card ul li {
    color: var(--gray-light);
    font-size: 0.9rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Related services */
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.related-card {
    background: var(--gray-dark);
    border-radius: 16px;
    padding: 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.related-card:hover {
    border-color: rgba(255, 140, 66, 0.3);
    transform: translateY(-4px);
}

.related-card h5 {
    color: var(--white);
    font-size: 1.05rem;
}

.related-card p {
    color: var(--gray-light);
    font-size: 0.88rem;
    line-height: 1.5;
}

.related-card span.rlink {
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.3rem;
}

/* ===== RESPONSIVE ===== */

/* ===== MOBILE DROPDOWN MENU ===== */
.mobile-menu .mobile-dropdown {
    position: relative;
}

.mobile-menu .mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s;
}

.mobile-menu .mobile-dropdown-toggle:hover {
    color: var(--accent);
}

.mobile-menu .mobile-dropdown-toggle svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s var(--transition-smooth);
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.mobile-menu .mobile-dropdown.open .mobile-dropdown-toggle svg {
    transform: rotate(180deg);
}

.mobile-menu .mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--transition-smooth), opacity 0.3s, margin 0.3s;
    opacity: 0;
}

.mobile-menu .mobile-dropdown.open .mobile-dropdown-menu {
    max-height: 500px;
    opacity: 1;
    margin-top: 1rem;
}

.mobile-menu .mobile-dropdown-menu li {
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu .mobile-dropdown-menu li:last-child {
    margin-bottom: 0;
}

.mobile-menu .mobile-dropdown-menu li a {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: color 0.3s, padding-left 0.3s;
    padding: 0.3rem 0;
}

.mobile-menu .mobile-dropdown-menu li a:hover {
    color: var(--accent);
    padding-left: 0.5rem;
}

.mobile-menu .mobile-dropdown-menu li a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--primary-light);
}

.mobile-menu .mobile-dropdown-menu .mobile-dropdown-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0.8rem 0;
    padding: 0;
    border-left: none;
}

.mobile-menu .mobile-dropdown-menu .mobile-dropdown-best-deal {
    background: rgba(255, 140, 66, 0.08);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    margin-left: -1rem;
    border-left: 3px solid var(--accent);
}

.mobile-menu .mobile-dropdown-menu .mobile-dropdown-best-deal a {
    color: var(--white);
    font-weight: 600;
}

.mobile-menu .mobile-dropdown-menu .mobile-dropdown-best-deal a .best-deal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: auto;
    background: var(--accent);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-menu .mobile-dropdown-menu .mobile-dropdown-best-deal a .best-deal-badge svg {
    width: 10px;
    height: 10px;
    color: var(--white);
}

@media (max-width: 1400px) {
    .services-grid {
        max-width: 95%;
    }
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 90%;
    }
}

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 90%;
    }

    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-item.featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps::before {
        display: none;
    }

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

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split-block {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .split-block.reverse .split-image,
    .split-block.reverse .split-text {
        order: initial;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .pricing-card.highlight {
        transform: scale(1);
    }

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

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

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .services-grid,
    .case-studies-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .portfolio-item.featured {
        grid-column: span 1;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .legal-links {
        gap: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    section {
        padding: 4rem 4%;
    }

    .page-hero {
        padding: 9rem 4% 3rem;
    }

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gray);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ===== LOADING ANIMATION ===== */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.5rem;
    transition: opacity 0.6s, visibility 0.6s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 80px;
    height: auto;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 120px;
    height: 3px;
    background: var(--gray-dark);
    border-radius: 3px;
    overflow: hidden;
}

.loader-bar-inner {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    animation: drawLine 1.5s ease-in-out infinite;
}







/*kontakt.html*/

/* ===== CONTACT HERO - Simple Style ===== */
.contact-hero {
    min-height: auto;
    padding: 10rem 4% 5rem;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(30, 136, 229, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 140, 66, 0.03) 0%, transparent 40%);
    pointer-events: none;
}

.contact-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.kontakt-breadcrumb {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.kontakt-breadcrumb a {
    color: var(--gray-light);
    transition: color 0.3s;
}

.kontakt-breadcrumb a:hover {
    color: var(--accent);
}

.kontakt-sep {
    color: var(--gray-light);
    opacity: 0.4;
}

.kontakt-current {
    color: var(--accent);
}

.contact-hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.kontakt-highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2rem;
}

.contact-hero-cta {
    margin-top: 1rem;
}

.kontakt-btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--accent);
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.kontakt-btn-primary:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 140, 66, 0.3);
}

/* Contact Info Card */
.contact-info-card {
    background: var(--gray-dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-info-item>.contact-info-value {
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    transition: color 0.3s;
}

.contact-info-item>.contact-info-value:hover {
    color: var(--accent);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.15), rgba(255, 140, 66, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    flex-shrink: 0;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-info-label {
    font-size: 0.8rem;
    color: var(--gray-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
}

.contact-info-value {
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    transition: color 0.3s;
}

.contact-info-value:hover {
    color: var(--accent);
}

/* ===== CONTACT FORM SECTION ===== */
.contact-form-section {
    background: var(--black);
    padding: 5rem 4%;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.kontakt-section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.kontakt-section-label .kontakt-line {
    width: 40px;
    height: 2px;
    background: var(--accent);
}

.contact-form-header .kontakt-section-label {
    justify-content: center;
}

.kontakt-section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.kontakt-section-desc {
    font-size: 1.1rem;
    color: var(--gray-light);
    max-width: 600px;
    line-height: 1.7;
    margin: 0.7rem auto 0;
}

.contact-form {
    background: var(--gray-dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.form-group label .required {
    color: var(--accent);
    margin-left: 0.2rem;
}

.form-group .form-hint {
    font-size: 0.8rem;
    color: var(--gray-light);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Error messages above fields */
.error-message {
    display: none;
    font-size: 0.85rem;
    color: #FF5252;
    font-family: 'Inter', sans-serif;
    padding: 0.5rem 0.8rem;
    background: rgba(255, 82, 82, 0.08);
    border-radius: 8px;
    border-left: 3px solid #FF5252;
    margin-bottom: 0.3rem;
    animation: fadeInError 0.3s ease;
}

.error-message.visible {
    display: block;
}

@keyframes fadeInError {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--black);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s var(--transition-smooth);
    outline: none;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(136, 136, 136, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 136, 229, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #FF5252;
    box-shadow: 0 0 0 4px rgba(255, 82, 82, 0.08);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 18px;
    padding-right: 3rem;
}

.form-group select option {
    background: var(--gray-dark);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-submit {
    text-align: center;
    margin-top: 1rem;
}

.btn-submit {
    padding: 1rem 3rem;
    font-size: 1.05rem;
}

.form-note {
    font-size: 0.8rem;
    color: var(--gray-light);
    margin-top: 1rem;
}

/* Success Message */
.form-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--gray-dark);
    border-radius: 20px;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.form-success.visible {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.contact-form.submitted .form-row,
.contact-form.submitted .form-group.full-width,
.contact-form.submitted .form-submit {
    display: none;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #4CAF50;
}

.form-success h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--gray-light);
    font-size: 1rem;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--dark);
    padding: 5rem 4%;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header .kontakt-section-label {
    justify-content: center;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--gray-dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question h4 {
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: 300;
    transition: transform 0.3s var(--transition-smooth);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--transition-smooth), padding 0.4s var(--transition-smooth);
    padding: 0 1.8rem;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 1.8rem 1.3rem;
}

.faq-answer p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ===== CTA SECTION (unique) ===== */
.kontakt-cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
    padding: 6rem 4%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.kontakt-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
}

.kontakt-cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.kontakt-cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.kontakt-cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.kontakt-cta-btn {
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid var(--white);
    cursor: default;
    transition: all 0.3s var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

a.kontakt-cta-btn:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .contact-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .contact-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-hero-cta {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 8rem 4% 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form {
        padding: 1.8rem;
    }

    .contact-info-card {
        padding: 1.8rem;
    }

    .faq-question {
        padding: 1.1rem 1.3rem;
    }

    .faq-question h4 {
        font-size: 0.95rem;
    }

    .faq-item.open .faq-answer {
        padding: 0 1.3rem 1.1rem;
    }
}

/* ===== DROPDOWN MENU ===== */
.nav-dropdown {
    position: relative;
}

.nav-dropdown>a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-dropdown>a .dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s var(--transition-smooth);
    opacity: 0.7;
}

.nav-dropdown:hover>a .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-dropdown:hover>a {
    color: var(--accent);
}

.nav-dropdown:hover>a::after {
    width: 100%;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 0.8rem 0;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s var(--transition-smooth);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    list-style: none;
    z-index: 1001;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(17, 17, 17, 0.95);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    color: var(--white);
    transition: all 0.25s var(--transition-smooth);
    white-space: nowrap;
    position: relative;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background: rgba(30, 136, 229, 0.08);
    color: var(--accent);
    padding-left: 1.8rem;
}

.dropdown-menu li a svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--primary-light);
    transition: color 0.25s;
}

.dropdown-menu li a:hover svg {
    color: var(--accent);
}

/* Dropdown separator */
.dropdown-separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 0.5rem 1.5rem;
}

/* Special "Best Deal" item */
.dropdown-best-deal {
    position: relative;
    background: rgba(255, 140, 66, 0.06);
    border-radius: 12px;
    margin: 0.4rem 0.8rem;
    overflow: hidden;
    top: 0.3rem;
}

.dropdown-best-deal::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.dropdown-best-deal a {
    padding: 0.85rem 1.2rem !important;
}

.dropdown-best-deal .best-deal-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: auto;
    background: var(--accent);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Outfit', sans-serif;
}

.dropdown-best-deal .best-deal-badge svg {
    width: 10px;
    height: 10px;
    color: var(--white) !important;
}

.dropdown-best-deal a:hover {
    background: rgba(255, 140, 66, 0.12) !important;
}

/* Mobile dropdown adjustments */
@media (max-width: 768px) {
    .nav-dropdown>a .dropdown-arrow {
        display: none;
    }

    .dropdown-menu {
        display: none;
    }
}


/* JS-active dropdown state (for touch devices) */
.nav-dropdown.dropdown-active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown.dropdown-active>a .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.nav-dropdown.dropdown-active>a {
    color: var(--accent);
}

/* === Hero adjustments for mobile === */

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

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 0.5px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-cta-group {
        gap: 0.8rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.85rem 1.8rem;
        font-size: 0.9rem;
    }

    .hero-scroll-indicator {
        padding-top: 1rem;
    }

    .scroll-mouse {
        width: 22px;
        height: 34px;
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }
}

/* ===== MOBILE: Reduced vertical padding in all sections ===== */
@media (max-width: 768px) {

    /* Base section padding override */
    section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    /* Hero - less top padding since navbar is fixed, minimal bottom */
    .hero {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        min-height: auto !important;
    }

    .hero-content {
        padding-top: 5rem !important;
        padding-bottom: 3rem !important;
    }

    /* About section */
    .about-section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    /* Services section */
    .services-section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    /* Portfolio section */
    .portfolio-section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    /* Process section */
    .process-section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    /* Blog */
    .blog-section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    /* CTA sections */
    .cta-section,
    .kontakt-cta-section {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    /* Footer */
    .footer {
        padding-top: 3rem !important;
        padding-bottom: 1.5rem !important;
    }

    /* Subpage hero */
    .page-hero {
        padding-top: 7rem !important;
        padding-bottom: 2rem !important;
        min-height: auto !important;
    }

    /* Detail sections (subpages: web, branding, fotografia, 3v1) */
    .detail-section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    /* Contact page sections */
    .contact-hero {
        padding-top: 7rem !important;
        padding-bottom: 2rem !important;
    }

    .contact-form-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .contact-form {
        padding: 1.5rem !important;
    }

    .faq-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    /* Reduce gaps inside grids on mobile */
    .services-grid,
    .portfolio-grid,
    .process-steps,
    .blog-grid,
    .feature-grid,
    .pricing-grid,
    .related-grid {
        gap: 1.2rem !important;
    }

    /* Split block gaps */
    .split-block {
        gap: 2rem !important;
    }

    /* About container gap */
    .about-container {
        gap: 2rem !important;
    }

    /* Stats margin */
    .about-stats {
        margin-top: 2rem !important;
    }

    /* Section headers margin */
    .services-header,
    .process-header,
    .blog-header,
    .portfolio-header {
        margin-bottom: 2rem !important;
    }

    /* Contact info card */
    .contact-info-card {
        padding: 1.5rem !important;
        gap: 1rem !important;
    }

    /* FAQ items */
    .faq-item {
        margin-bottom: 0.5rem !important;
    }

    .faq-question {
        padding: 1rem 1.3rem !important;
    }

    .faq-answer {
        padding: 0 1.3rem !important;
    }

    .faq-item.open .faq-answer {
        padding: 0 1.3rem 1rem !important;
    }

    /* Pricing cards */
    .pricing-card {
        padding: 1.8rem 1.5rem !important;
    }

    /* Feature items */
    .feature-item {
        padding: 1.5rem !important;
    }

    /* Related cards */
    .related-card {
        padding: 1.3rem !important;
    }

    /* Process steps */
    .process-step {
        padding: 0 !important;
    }

    .step-number {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.4rem !important;
        margin-bottom: 1rem !important;
    }

    /* Blog cards */
    .blog-content {
        padding: 1.5rem !important;
    }

    /* Modal */
    .modal-text {
        padding: 1.5rem !important;
    }

    .modal-header {
        padding: 2rem 1.5rem !important;
    }
}

/* Even smaller screens - extra tight */
@media (max-width: 380px) {

    section,
    .about-section,
    .services-section,
    .portfolio-section,
    .process-section,
    .blog-section,
    .detail-section {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .hero-content {
        padding-top: 4.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .page-hero,
    .contact-hero {
        padding-top: 6rem !important;
        padding-bottom: 1.5rem !important;
    }

    .cta-section,
    .kontakt-cta-section {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .footer {
        padding-top: 2.5rem !important;
        padding-bottom: 1rem !important;
    }
}



/* ===== THANK YOU PAGE ===== */
.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--black);
    padding: 8rem 4% 4rem;
}

.thank-you-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(30, 136, 229, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 140, 66, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.thank-you-container {
    max-width: 700px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: #4CAF50;
    animation: scaleIn 0.6s ease-out 0.2s both, pulse-glow 3s ease-in-out infinite 1s;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.3);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(76, 175, 80, 0);
    }
}

.thank-you-icon svg {
    width: 48px;
    height: 48px;
}

.thank-you-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.thank-you-badge .dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.thank-you-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.thank-you-title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-light);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.7;
}

.thank-you-timeline {
    background: var(--gray-dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.timeline-title {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1rem 0;
    position: relative;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 48px;
    width: 2px;
    height: calc(100% - 20px);
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    opacity: 0.3;
}

.timeline-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.timeline-step.active .timeline-number {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    animation: pulse-glow 3s ease-in-out infinite;
}

.timeline-content h4 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.timeline-content p {
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.5;
}

.thank-you-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thank-you-cta-group .btn-primary {
    padding: 1rem 2.5rem;
}

.thank-you-cta-group .btn-secondary {
    padding: 1rem 2.5rem;
}

/* Confetti canvas */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

/* What happens next cards */
.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin: 2.5rem 0;
}

.next-step-card {
    background: var(--gray-dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.8rem 1.2rem;
    text-align: center;
    transition: all 0.3s var(--transition-smooth);
}

.next-step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(30, 136, 229, 0.2);
}

.next-step-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.15), rgba(255, 140, 66, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-light);
}

.next-step-card h4 {
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.next-step-card p {
    font-size: 0.85rem;
    color: var(--gray-light);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .thank-you-page {
        padding: 7rem 4% 3rem;
    }

    .thank-you-timeline {
        padding: 1.8rem 1.3rem;
    }

    .next-steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .thank-you-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .thank-you-cta-group .btn-primary,
    .thank-you-cta-group .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ===== PORTFOLIO PAGE STYLES ===== */

/* Portfolio Hero */
.portfolio-hero {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.portfolio-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 30%, rgba(30, 136, 229, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 85% 70%, rgba(255, 140, 66, 0.04) 0%, transparent 45%);
    pointer-events: none;
}

/* Portfolio Category Section */
.portfolio-category-section {
    background: var(--black);
    padding: 5rem 0;
}

.portfolio-category-section.alt {
    background: var(--dark);
}

.portfolio-category-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
    padding: 0 4%;
    display: flex;
    align-items: center;
    flex-direction: column;
}

/* ===== WEB SLIDER ===== */
.web-slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

/* Fade masks on left and right */
.web-slider-wrapper::before,
.web-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 5;
    pointer-events: none;
}

.web-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--black) 0%, transparent 100%);
}

.web-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--black) 0%, transparent 100%);
}

.web-slider {
    display: flex;
    transition: transform 0.6s var(--transition-smooth);
    width: 100%;
    height: 75vh;
}

.web-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 4%;
}

.web-slide-link {
    display: block;
    position: relative;
    overflow: hidden;
    background: var(--gray-dark);
}

.web-slide-image {
    position: relative;
    width: 100%;
    height: 75vh;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.web-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);

}

.web-slide-link:hover .web-slide-image img {
    transform: scale(1.05);
}

/* Dark overlay on hover */
.web-slide-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.4) 40%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
}

.web-slide-link:hover .web-slide-image::after {
    opacity: 1;
}

/* Info positioned bottom-left, hidden by default */
.web-slide-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s var(--transition-smooth);
    pointer-events: none;
}

.web-slide-link:hover .web-slide-info {
    opacity: 1;
    transform: translateY(0);
}

.web-slide-tag {
    display: inline-block;
    background: rgba(30, 136, 229, 0.2);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.6rem;
    font-family: 'Outfit', sans-serif;
}

.web-slide-info h4 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.web-slide-info p {
    color: var(--gray-light);
    font-size: 1rem;
}

/* Slider Controls - positioned outside image in black space */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--transition-smooth);
    z-index: 10;
}

.slider-btn:hover {


    transform: translateY(-50%) scale(1.2);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
}

.slider-prev {
    left: 4rem;
}

.slider-next {
    right: 4rem;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    padding: 0;
}

.slider-dot.active {
    background: var(--accent);
    width: 30px;
    border-radius: 5px;
}

.slider-dot:hover {
    background: var(--accent);
    opacity: 0.7;
}

/* ===== BRANDING MASONRY ===== 
.branding-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.branding-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--gray-dark);
}

.branding-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.branding-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}

.branding-item:hover img {
    transform: scale(1.08);
}

.branding-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
}

.branding-item:hover .branding-overlay {
    opacity: 1;
}

.branding-tag {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.branding-overlay h4 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.branding-overlay p {
    font-size: 0.85rem;
    color: var(--gray-light);
}

/* Masonry item sizes 
.branding-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.branding-item.tall {
    grid-row: span 2;
}

.branding-item.wide {
    grid-column: span 2;
}*/

/* ===== PHOTO INFINITE SCROLL GRID ===== */
.photo-grid-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Fade masks on left and right for photo grid */
.photo-grid-wrapper::before,
.photo-grid-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 5;
    pointer-events: none;
}

.photo-grid-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--black) 0%, transparent 100%);
}

.photo-grid-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--black) 0%, transparent 100%);
}

.photo-grid {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.photo-row {
    display: flex;
    gap: 0.4rem;
    width: max-content;
    will-change: transform;
}

.photo-cell {
    width: 160px;
    height: 160px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.photo-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--transition-smooth), filter 0.4s;
    filter: brightness(0.85) saturate(0.9);
}

.photo-cell:hover img {
    transform: scale(1.15);
    filter: brightness(1) saturate(1.1);
}

/* Row animations */
@keyframes scrollRight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.row-right {
    animation: scrollRight 40s linear infinite;
}

.row-left {
    animation: scrollLeft 45s linear infinite;
}

/* Pause on hover */
.photo-grid-wrapper:hover .photo-row {
    animation-play-state: paused;
}

/* Staggered animation speeds for visual variety */
.photo-row:nth-child(1) {
    animation-duration: 38s;
}

.photo-row:nth-child(2) {
    animation-duration: 42s;
}

.photo-row:nth-child(3) {
    animation-duration: 36s;
}

.photo-row:nth-child(4) {
    animation-duration: 44s;
}

.photo-row:nth-child(5) {
    animation-duration: 40s;
}

.photo-row:nth-child(6) {
    animation-duration: 46s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .branding-masonry {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 240px;
    }

    .branding-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .photo-cell {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 1024px) {
    .branding-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .branding-item.large {
        grid-column: span 2;
        grid-row: span 2;
    }

    .branding-item.tall {
        grid-row: span 2;
    }

    .branding-item.wide {
        grid-column: span 2;
    }

    .slider-btn {
        width: 42px;
        height: 42px;
    }

    .slider-prev {
        left: 0.3rem;
    }

    .slider-next {
        right: 0.3rem;
    }

    .photo-cell {
        width: 110px;
        height: 110px;
    }
}

@media (max-width: 768px) {
    .portfolio-category-section {
        padding: 3rem 0;
    }

    .branding-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: 1rem;
    }

    .branding-item.large,
    .branding-item.tall,
    .branding-item.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .web-slide {
        padding: 0 2%;
    }

    .web-slide-info {
        padding: 1.2rem 1.5rem;
    }

    .web-slide-info h4 {
        font-size: 1.2rem;
    }

    .slider-btn {
        display: none;
    }

    .web-slider-wrapper::before,
    .web-slider-wrapper::after {
        width: 60px;
    }

    .photo-grid-wrapper::before,
    .photo-grid-wrapper::after {
        width: 80px;
    }

    .photo-cell {
        width: 90px;
        height: 90px;
    }

    .row-right {
        animation-duration: 25s !important;
    }

    .row-left {
        animation-duration: 28s !important;
    }
}

@media (max-width: 480px) {
    .photo-cell {
        width: 70px;
        height: 70px;
    }

    .branding-masonry {
        grid-auto-rows: 200px;
    }

    .web-slide-info {
        padding: 1rem;
    }
}

/* ===== GDPR CHECKBOX STYLES ===== */
.gdpr-group {
    margin-bottom: 1.5rem;
}

.gdpr-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.2rem;
    background: transparent;

    border-radius: 12px;
    transition: all 0.3s var(--transition-smooth);
}

.gdpr-checkbox-wrapper:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
}

.gdpr-checkbox-wrapper input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    min-width: 18px;
    min-height: 18px;

    border-radius: 4px;
    background: var(--black);
    cursor: pointer;
    position: relative;
    transition: all 0.3s var(--transition-smooth);
    margin-top: 2px;
}

.gdpr-checkbox-wrapper input[type="checkbox"]:hover {
    border-color: var(--accent);
}

.gdpr-checkbox-wrapper input[type="checkbox"]:checked {
    background: var(--accent);
    border-color: var(--accent);
}

.gdpr-checkbox-wrapper input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 5px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2.5px 2.5px 0;
}

.gdpr-checkbox-wrapper input[type="checkbox"].error {
    border-color: #FF5252;
    box-shadow: 0 0 0 3px rgba(255, 82, 82, 0.15);
}

.gdpr-checkbox-wrapper input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 140, 66, 0.15);
    border-color: var(--accent);
}

.gdpr-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--gray-light);
    line-height: 1.6;
    cursor: pointer;
    margin: 0;
    font-weight: 400;
}

.gdpr-label a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    transition: color 0.3s;
}

.gdpr-label a:hover {
    color: var(--accent-hover);
}

.gdpr-group .error-message {
    margin-top: 0.5rem;
    margin-left: 0;
}

/* GDPR error message positioning */
.gdpr-group .error-message {
    margin-top: 0.5rem;
    margin-left: 0;
}

/* ===== GDPR PAGE STYLES ===== */
.gdpr-section {
    background: var(--black);
    padding: 4rem 4% 6rem;
}

.gdpr-container {
    max-width: 900px;
    margin: 0 auto;
}

.gdpr-block {
    margin-bottom: 3rem;
}

.gdpr-block:last-child {
    margin-bottom: 0;
}

.gdpr-block h2 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: var(--white);
    margin-bottom: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
}

.gdpr-block h3 {
    font-size: 1.15rem;
    color: var(--accent);
    margin: 1.5rem 0 0.8rem;
    font-weight: 600;
}

.gdpr-block h4 {
    font-size: 1.05rem;
    color: var(--white);
    margin: 1.2rem 0 0.6rem;
    font-weight: 600;
}

.gdpr-block p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.gdpr-block ul {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.gdpr-block ul li {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
}

.gdpr-block ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.gdpr-block a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s;
}

.gdpr-block a:hover {
    color: var(--accent-hover);
}

.gdpr-block strong {
    color: var(--white);
    font-weight: 600;
}

/* GDPR info box */
.gdpr-info-box {
    background: var(--gray-dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.8rem;
    margin: 1.5rem 0;
}

.gdpr-info-box h3 {
    margin-top: 0;
    font-size: 1.1rem;
}

.gdpr-info-box ul {
    margin: 0.8rem 0 0;
}

.gdpr-info-box ul li {
    margin-bottom: 0.4rem;
}

.gdpr-info-box ul li:last-child {
    margin-bottom: 0;
}

.gdpr-info-box p {
    margin-bottom: 0;
}

.gdpr-info-box p:last-child {
    margin-bottom: 0;
}

/* GDPR highlight box */
.gdpr-highlight-box {
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.08), rgba(255, 140, 66, 0.06));
    border: 1px solid rgba(30, 136, 229, 0.15);
    border-radius: 16px;
    padding: 1.8rem;
    margin: 1.5rem 0;
}

.gdpr-highlight-box h4 {
    margin-top: 0;
    color: var(--primary-light);
}

.gdpr-highlight-box p {
    margin-bottom: 0;
}

/* GDPR table */
.gdpr-table-wrapper {
    overflow-x: auto;
    margin: 1.5rem 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    min-width: 700px;
}

.gdpr-table thead {
    background: var(--gray-dark);
}

.gdpr-table th {
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-align: left;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gdpr-table td {
    color: var(--gray-light);
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    line-height: 1.6;
    vertical-align: top;
}

.gdpr-table tbody tr:last-child td {
    border-bottom: none;
}

.gdpr-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* GDPR rights grid */
.gdpr-rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    margin: 2rem 0;
}

.gdpr-right-card {
    background: var(--gray-dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.6rem;
    transition: all 0.3s var(--transition-smooth);
}

.gdpr-right-card:hover {
    transform: translateY(-4px);
    border-color: rgba(30, 136, 229, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.gdpr-right-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(30, 136, 229, 0.15), rgba(255, 140, 66, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.gdpr-right-card h4 {
    font-size: 0.95rem;
    color: var(--white);
    margin: 0 0 0.5rem;
    font-weight: 600;
}

.gdpr-right-card p {
    font-size: 0.85rem;
    color: var(--gray-light);
    line-height: 1.6;
    margin: 0;
}

/* Responsive GDPR */
@media (max-width: 1024px) {
    .gdpr-rights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gdpr-section {
        padding: 2.5rem 4% 4rem;
    }

    .gdpr-rights-grid {
        grid-template-columns: 1fr;
    }

    .gdpr-info-box,
    .gdpr-highlight-box {
        padding: 1.3rem;
    }

    .gdpr-block h2 {
        font-size: 1.3rem;
    }

    .gdpr-checkbox-wrapper {
        padding: 1rem;
    }

    .gdpr-label {
        font-size: 0.85rem;
    }
}
/* Doplniť highlight - marks empty fields to be filled in */
.to-fill {
    display: inline-block;
    padding: 0.1em 0.55em;
    background: rgba(255, 140, 66, 0.15);
    border: 1px dashed var(--accent);
    border-radius: 6px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.92em;
    letter-spacing: 0.02em;
}