/* =========================================================
   ImpactIT – Modern Design System
   ========================================================= */

/* --- Custom Properties --- */
:root {
    --orange:       #ff5a24;
    --orange-dark:  #e04a18;
    --orange-light: #fff3ef;
    --navy:         #1f2350;
    --navy-light:   #2E3156;
    --sky:          #a1d3ff;
    --sky-light:    #e8f4ff;
    --ink:          #1a1d2e;
    --muted:        #6b7280;
    --surface:      #f8fafc;
    --white:        #ffffff;
    --border:       #e5e7eb;

    --gradient-brand:  linear-gradient(135deg, var(--orange) 0%, var(--sky) 100%);
    --gradient-dark:   linear-gradient(135deg, var(--navy) 0%, #0f1230 100%);
    --gradient-orange: linear-gradient(135deg, var(--orange) 0%, #ff8c5a 100%);

    --radius-sm:  8px;
    --radius-md:  16px;
    --radius-lg:  24px;
    --radius-xl:  32px;

    --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
    --shadow-md:  0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:  0 12px 40px rgba(0,0,0,.14);
    --shadow-orange: 0 8px 32px rgba(255,90,36,.25);

    --nav-height: 72px;
    --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::selection { background: var(--orange); color: var(--white); }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
}

.display-hero {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.display-section {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-orange { color: var(--orange) !important; }
.text-navy   { color: var(--navy) !important; }
.text-muted  { color: var(--muted) !important; }

/* --- Utility --- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--orange);
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.btn-primary-imp {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--gradient-orange);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: .85rem 1.75rem;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-orange);
    cursor: pointer;
}

.btn-primary-imp:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255,90,36,.35);
}

.btn-outline-imp {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    padding: .82rem 1.6rem;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline-imp:hover {
    border-color: var(--orange);
    color: var(--orange);
    background: var(--orange-light);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.35);
    border-radius: var(--radius-sm);
    padding: .82rem 1.6rem;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.1);
    color: var(--white);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar-imp {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.navbar-imp.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

.navbar-imp .navbar-brand img { height: 34px; }

.navbar-imp .nav-link {
    font-weight: 600;
    font-size: .9rem;
    color: var(--navy-light);
    padding: .4rem .75rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-decoration: none;
}

.navbar-imp .nav-link:hover,
.navbar-imp .nav-link.active {
    color: var(--orange);
    background: var(--orange-light);
}

.navbar-imp .dropdown-menu {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: .5rem;
    min-width: 240px;
    top: 100%;
    margin-top: 8px;
    animation: dropDown .18s ease-out;
}

@keyframes dropDown {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.navbar-imp .dropdown-item {
    border-radius: var(--radius-sm);
    padding: .6rem .85rem;
    font-weight: 500;
    font-size: .9rem;
    color: var(--ink);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: .6rem;
}

.navbar-imp .dropdown-item:hover {
    background: var(--orange-light);
    color: var(--orange);
}

.navbar-imp .dropdown-item .icon {
    width: 28px;
    height: 28px;
    background: var(--surface);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.navbar-imp .dropdown-item:hover .icon {
    background: var(--orange-light);
    color: var(--orange);
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
    position: relative;
    background: var(--gradient-dark);
    overflow: hidden;
    padding: 6rem 0 5rem;
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 75% 50%, rgba(161,211,255,.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 5% 80%, rgba(255,90,36,.12) 0%, transparent 50%);
    pointer-events: none;
}

/* grid dot texture */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    white-space: nowrap;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 100px;
    padding: .35rem .9rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--sky);
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-badge span {
    width: 6px; height: 6px;
    background: var(--orange);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .6; transform: scale(1.4); }
}

.hero h1 { color: var(--white); }

.hero .lead {
    color: rgba(255,255,255,.7);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.7;
    max-width: 500px;
}

.trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 100px;
    padding: .3rem .85rem;
    font-size: .82rem;
    font-weight: 600;
    color: rgba(255,255,255,.85);
}

.trust-chip i { color: var(--orange); font-size: .75rem; }

/* Hero photo */
.hero-photo-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-photo-glow {
    position: relative;
    display: inline-block;
}

/* glow behind the card */
.hero-photo-glow::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse at center, rgba(255,90,36,.22) 0%, transparent 65%);
    border-radius: 50%;
    z-index: 0;
}

/* gradient card – mirrors the original .profile container */
.hero-photo-card {
    position: relative;
    z-index: 1;
    background: var(--gradient-brand);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.06);
    width: 420px;
    max-width: 100%;
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-photo-card img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    bottom: 0;
}

/* floating cards on hero photo */
.hero-float-card {
    position: absolute;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: var(--radius-md);
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    z-index: 2;
    white-space: nowrap;
}

.hero-float-card .fc-icon {
    width: 36px; height: 36px;
    background: var(--gradient-orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
    flex-shrink: 0;
}

.hero-float-card .fc-text { line-height: 1.2; }
.hero-float-card .fc-text strong { font-size: .82rem; color: var(--white); display: block; }
.hero-float-card .fc-text span   { font-size: .72rem; color: rgba(255,255,255,.6); }

.hero-float-card.fc-left-top  { top: 55%; left: -10%; animation: float1 5s ease-in-out infinite; }
.hero-float-card.fc-left-bot  { top: 74%; left: -2%; animation: float2 6s ease-in-out infinite; }
.hero-float-card.fc-right-bot { bottom: 8%; right: -10%; animation: float1 5.5s ease-in-out infinite; }

@keyframes float1 {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(8px); }
}

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
    border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-item .stat-icon {
    font-size: 1.4rem;
    color: var(--orange);
    margin-bottom: .4rem;
}

.stat-item .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: .25rem;
}

.stat-item .stat-label {
    font-size: .82rem;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.3;
}

/* =========================================================
   PROBLEM SECTION
   ========================================================= */
.section-problem {
    background: var(--surface);
    padding: 6rem 0;
}

.pain-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.pain-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.pain-card .pain-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: var(--orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--orange);
    flex-shrink: 0;
}

.pain-card h5 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .25rem;
    color: var(--ink);
}

.pain-card p {
    font-size: .87rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */
.section-services {
    background: var(--white);
    padding: 6rem 0;
}

.service-card-new {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    overflow: hidden;
}

.service-card-new::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-brand);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s cubic-bezier(.4,0,.2,1);
}

.service-card-new:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    color: inherit;
}

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

.service-card-new .svc-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    background: var(--orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.service-card-new .svc-icon img {
    width: 28px; height: 28px;
    filter: invert(40%) sepia(90%) saturate(400%) hue-rotate(340deg) brightness(1.1);
}

.service-card-new:hover .svc-icon {
    background: var(--gradient-orange);
}

.service-card-new:hover .svc-icon img {
    filter: brightness(0) invert(1);
}

.service-card-new h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: .6rem;
    color: var(--ink);
}

.service-card-new p {
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 1.25rem;
}

.service-card-new .svc-price {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--orange);
    background: var(--orange-light);
    padding: .25rem .7rem;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.service-card-new .svc-arrow {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .85rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: auto;
    transition: var(--transition);
}

.service-card-new:hover .svc-arrow {
    color: var(--orange);
    gap: .6rem;
}

/* =========================================================
   PROCESS SECTION
   ========================================================= */
.section-process {
    background: var(--navy);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.section-process::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 2rem 1.5rem;
}

.process-step .step-num {
    font-size: .75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--orange);
    margin-bottom: .5rem;
}

.process-step .step-icon {
    width: 64px; height: 64px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--sky);
    margin: 0 auto 1.25rem;
}

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

.process-step p {
    font-size: .85rem;
    color: rgba(255,255,255,.55);
    line-height: 1.6;
    margin: 0;
}

.process-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.2);
    font-size: 1.5rem;
    padding-top: 3rem;
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.section-about {
    background: var(--white);
    padding: 6rem 0;
}

.about-photo-wrap {
    position: relative;
}

.about-photo-wrap img {
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 420px;
    display: block;
    position: relative;
    z-index: 1;
}

.about-photo-bg { display: none; }

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--orange-light);
    border: 1px solid rgba(255,90,36,.2);
    border-radius: 100px;
    padding: .35rem .9rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: .75rem;
}

.about-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.about-timeline-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-timeline-item .atl-dot {
    width: 10px; height: 10px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: .35rem;
    box-shadow: 0 0 0 3px var(--orange-light);
}

.about-timeline-item p {
    font-size: .9rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

.about-timeline-item strong { color: var(--ink); }

.about-quote {
    background: var(--surface);
    border-left: 3px solid var(--orange);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 1rem 1.25rem;
    margin-top: 1.75rem;
}

.about-quote p {
    font-style: italic;
    font-size: .9rem;
    color: var(--muted);
    margin: 0;
}

/* =========================================================
   LOCATION SECTION
   ========================================================= */
.section-location {
    background: var(--surface);
    padding: 6rem 0;
}

.location-map-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 4rem;
}

.location-map-wrap img {
    max-height: 380px;
    width: auto;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,.08));
    animation: mapFloat 6s ease-in-out infinite;
}

@keyframes mapFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    40%       { transform: translateY(-12px) rotate(.4deg); }
    60%       { transform: translateY(-8px) rotate(-.3deg); }
}

.location-tag {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.location-tag .ltag-icon {
    width: 40px; height: 40px;
    background: var(--orange-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.location-tag h5 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .15rem;
}

.location-tag p {
    font-size: .82rem;
    color: var(--muted);
    margin: 0;
}

/* =========================================================
   FAQ SECTION
   ========================================================= */
.section-faq {
    background: var(--white);
    padding: 6rem 0;
}

.faq-accordion .accordion-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md) !important;
    margin-bottom: .75rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
    font-weight: 700;
    font-size: .95rem;
    color: var(--ink);
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md) !important;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--orange);
    background: var(--orange-light);
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ff5a24' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.faq-accordion .accordion-body {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.7;
    padding: 1rem 1.5rem 1.5rem;
    background: var(--white);
}

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.section-contact {
    background: var(--surface);
    padding: 6rem 0;
}

.contact-info-card {
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    bottom: -40px; right: -40px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,90,36,.2) 0%, transparent 70%);
    pointer-events: none;
}

.contact-info-card .contact-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: .25rem;
}

.contact-info-card .contact-role {
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item .ci-icon {
    width: 40px; height: 40px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sky);
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-info-item .ci-label {
    font-size: .72rem;
    color: rgba(255,255,255,.4);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.contact-info-item .ci-value {
    font-size: .9rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

a.ci-value:hover { color: var(--sky); }

.contact-info-card .card-logo {
    margin-top: auto;
    padding-top: 2rem;
}

.contact-info-card .card-logo img {
    max-height: 48px;
    opacity: .7;
    filter: brightness(0) invert(1);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-form-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: .4rem;
}

.contact-form-card .form-label {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
    margin-bottom: .4rem;
}

.contact-form-card .form-control {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: .92rem;
    padding: .7rem 1rem;
    background: var(--white);
    transition: var(--transition);
    color: var(--ink);
}

.contact-form-card .form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,90,36,.12);
}

.contact-form-card .form-control::placeholder { color: #bdc3ce; }

/* =========================================================
   PAGE HERO BANNER (service pages)
   ========================================================= */
.page-hero {
    background: var(--gradient-dark);
    padding: 4.5rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(255,90,36,.15) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero .breadcrumb {
    margin-bottom: 1rem;
}

.page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a {
    font-size: .82rem;
    color: rgba(255,255,255,.45);
    text-decoration: none;
}

.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.7); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.25); }

.page-hero h1 { color: var(--white); }

.page-hero .lead {
    color: rgba(255,255,255,.65);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 580px;
}

/* =========================================================
   PRICING CARDS
   ========================================================= */
.pricing-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255,90,36,.12), var(--shadow-md);
}

.pricing-card .pc-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-orange);
    color: var(--white);
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: .25rem .9rem;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-card .pc-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    background: var(--orange-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--orange);
    margin-bottom: 1.25rem;
}

.pricing-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: .35rem;
}

.pricing-card .pc-desc {
    font-size: .87rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pricing-card .pc-price {
    display: flex;
    align-items: baseline;
    gap: .35rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--border);
}

.pricing-card .pc-price .amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.pricing-card .pc-price .unit {
    font-size: .82rem;
    color: var(--muted);
    font-weight: 500;
}

.pricing-card .pc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    flex-grow: 1;
}

.pricing-card .pc-features li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .88rem;
    color: var(--ink);
    line-height: 1.5;
}

.pricing-card .pc-features li i {
    color: var(--orange);
    font-size: .85rem;
    margin-top: .15rem;
    flex-shrink: 0;
}

.pricing-card .pc-bonus {
    background: var(--orange-light);
    border-radius: var(--radius-sm);
    padding: .85rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .83rem;
    color: var(--orange-dark);
    font-weight: 600;
    margin-bottom: 1.75rem;
}

.pricing-card .pc-bonus i { margin-top: .1rem; flex-shrink: 0; }

/* Add-on card */
.addon-card {
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    position: relative;
    overflow: hidden;
}

.addon-card::before {
    content: '';
    position: absolute;
    bottom: -40px; right: -40px;
    width: 220px; height: 220px;
    background: radial-gradient(circle, rgba(255,90,36,.2) 0%, transparent 70%);
    pointer-events: none;
}

.addon-card .addon-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--sky);
    margin-bottom: 1.25rem;
}

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

.addon-card .addon-desc {
    color: rgba(255,255,255,.6);
    font-size: .87rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.addon-card .addon-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 1.5rem;
}

.addon-card .addon-price span {
    font-size: .82rem;
    font-weight: 500;
    color: rgba(255,255,255,.45);
}

.addon-card .addon-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.addon-card .addon-features li {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    font-size: .87rem;
    color: rgba(255,255,255,.7);
}

.addon-card .addon-features li i {
    color: var(--sky);
    font-size: .8rem;
    margin-top: .2rem;
    flex-shrink: 0;
}

/* Combine callout */
.combine-callout {
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    padding: 3.5rem 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

.combine-callout::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 90% 50%, rgba(255,90,36,.18) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(161,211,255,.12) 0%, transparent 50%);
    pointer-events: none;
}

.combine-callout h3 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: .5rem;
    position: relative;
}

.combine-callout p {
    color: rgba(255,255,255,.65);
    font-size: .95rem;
    margin: 0;
    position: relative;
    max-width: 520px;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--white);
    color: var(--orange);
    border: none;
    border-radius: var(--radius-sm);
    padding: .85rem 1.75rem;
    font-weight: 700;
    font-size: .95rem;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-white:hover {
    color: var(--orange-dark);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* =========================================================
   BLOG
   ========================================================= */
.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    font-size: .8rem;
    color: var(--muted);
}

.blog-meta span { display: flex; align-items: center; gap: .3rem; }

/* Featured post */
.blog-featured { }

.blog-featured-link {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.blog-featured-link:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    color: inherit;
}

.blog-featured-img {
    min-height: 340px;
    overflow: hidden;
}

.blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.blog-featured-link:hover .blog-featured-img img { transform: scale(1.03); }

.blog-featured-placeholder {
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255,255,255,.3);
}

.blog-featured-body {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin: .75rem 0 1rem;
    color: var(--ink);
}

.blog-featured-perex {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* Blog card */
.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    color: inherit;
    border-color: var(--orange);
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.blog-card:hover .blog-card-img img { transform: scale(1.04); }

.blog-card-placeholder {
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255,255,255,.3);
}

.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-title {
    font-size: 1rem;
    font-weight: 700;
    margin: .5rem 0 .6rem;
    color: var(--ink);
    line-height: 1.3;
}

.blog-card-perex {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 1.1rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .83rem;
    font-weight: 700;
    color: var(--orange);
    margin-top: auto;
    transition: gap var(--transition);
}

.blog-card:hover .blog-read-more,
.blog-featured-link:hover .blog-read-more { gap: .6rem; }

/* Article content */
.article-content {
    font-size: .95rem;
    line-height: 1.8;
    color: var(--ink);
}

.article-content h1, .article-content h2, .article-content h3, .article-content h4 {
    font-weight: 800;
    margin-top: 2rem;
    margin-bottom: .75rem;
    line-height: 1.25;
}

.article-content h2 { font-size: 1.4rem; }
.article-content h3 { font-size: 1.15rem; }

.article-content p { margin-bottom: 1.1rem; }

.article-content ul, .article-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.1rem;
}

.article-content li { margin-bottom: .4rem; }

.article-content strong { color: var(--ink); font-weight: 700; }

.article-content blockquote {
    border-left: 3px solid var(--orange);
    margin: 1.5rem 0;
    padding: .75rem 1.25rem;
    background: var(--orange-light);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    color: var(--muted);
}

.article-content code {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: .1rem .4rem;
    font-size: .85em;
    color: var(--navy);
}

.article-content pre {
    background: var(--ink);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    overflow-x: auto;
    margin-bottom: 1.1rem;
}

.article-content pre code {
    background: none;
    border: none;
    color: #e2e8f0;
    font-size: .85rem;
}

.article-content img {
    max-width: 100%;
    border-radius: var(--radius-md);
    margin: 1rem 0;
}

.article-content a { color: var(--orange); }
.article-content a:hover { text-decoration: underline; }

.article-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

@media (max-width: 767px) {
    .blog-featured-link { grid-template-columns: 1fr; }
    .blog-featured-img  { min-height: 220px; }
    .blog-featured-body { padding: 1.5rem; }
    .blog-featured-title { font-size: 1.2rem; }
}

/* =========================================================
   LEGAL PAGES (ochrana-udaju, cookies)
   ========================================================= */
.legal-body h2 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--orange);
    margin-top: 2.5rem;
    margin-bottom: .85rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid var(--border);
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body p, .legal-body li {
    font-size: .92rem;
    color: var(--muted);
    line-height: 1.75;
}

.legal-body strong { color: var(--ink); }

.legal-body a {
    color: var(--orange);
    text-decoration: none;
}

.legal-body a:hover { text-decoration: underline; }

.legal-body ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.legal-body ul li { margin-bottom: .35rem; }

/* Cookies table */
.cookies-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    margin: 1.25rem 0 1.75rem;
}

.cookies-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    font-size: .85rem;
}

.cookies-table-wrap thead tr {
    background: var(--surface);
}

.cookies-table-wrap th {
    padding: .75rem 1rem;
    font-weight: 700;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--muted);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.cookies-table-wrap td {
    padding: .75rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    vertical-align: top;
    line-height: 1.55;
}

.cookies-table-wrap tr:last-child td { border-bottom: none; }

.cookies-table-wrap code {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: .15rem .45rem;
    font-size: .8rem;
    color: var(--navy);
    white-space: nowrap;
}

.cookie-type {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    padding: .2rem .6rem;
    border-radius: 100px;
    white-space: nowrap;
}

.cookie-type.tech {
    background: var(--sky-light);
    color: #1a6fa8;
}

.cookie-type.analytics {
    background: var(--orange-light);
    color: var(--orange-dark);
}

/* Consent toggle card */
.consent-toggle-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-top: 1rem;
}

.consent-toggle-card .ctc-icon {
    width: 42px; height: 42px;
    background: var(--orange-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.consent-toggle-card .ctc-body { flex: 1; }

.consent-toggle-card .ctc-title {
    font-weight: 700;
    font-size: .92rem;
    color: var(--ink);
    margin-bottom: .2rem;
}

.consent-toggle-card .ctc-desc {
    font-size: .82rem;
    color: var(--muted);
}

.consent-toggle-card .form-check-input:checked {
    background-color: var(--orange);
    border-color: var(--orange);
}

.legal-footer-note {
    margin-top: 2.5rem;
    padding: 1rem 1.25rem;
    background: var(--surface);
    border-left: 3px solid var(--orange);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: .82rem;
    color: var(--muted);
    font-style: italic;
}

/* =========================================================
   SECURITY FEATURED CARD (bezpecnost.php)
   ========================================================= */
.sec-card-featured {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    transition: var(--transition);
}

.sec-card-featured:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-lg);
}

/* =========================================================
   INFRA CARDS (infra-reseni.php)
   ========================================================= */
.infra-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.infra-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.infra-card.highlight {
    border-color: rgba(255,90,36,.3);
    background: var(--orange-light);
}

.infra-card.highlight:hover {
    border-color: var(--orange);
}

.infra-card .infra-icon {
    width: 48px; height: 48px;
    background: var(--orange-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--orange);
    margin-bottom: 1.1rem;
    flex-shrink: 0;
}

.infra-card.highlight .infra-icon {
    background: rgba(255,90,36,.15);
}

.infra-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.infra-card p {
    font-size: .87rem;
    color: var(--muted);
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 1rem;
}

.infra-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    margin-bottom: .75rem;
}

.infra-tags span {
    font-size: .72rem;
    font-weight: 600;
    color: var(--navy);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: .18rem .65rem;
}

.infra-card.highlight .infra-tags span {
    background: rgba(255,255,255,.6);
    border-color: rgba(255,90,36,.2);
}

.infra-price {
    font-size: .82rem;
    font-weight: 800;
    color: var(--orange);
    margin-top: auto;
    padding-top: .75rem;
    border-top: 1px solid rgba(255,90,36,.2);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer-imp {
    background: var(--ink);
    padding: 3.5rem 0 2rem;
}

.footer-imp .footer-logo img {
    height: 32px;
    filter: brightness(0) invert(1);
    opacity: .85;
}

.footer-imp .footer-desc {
    font-size: .85rem;
    color: rgba(255,255,255,.4);
    margin-top: .75rem;
    line-height: 1.6;
}

.footer-imp .footer-heading {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.35);
    margin-bottom: 1rem;
}

.footer-imp .footer-link {
    display: block;
    font-size: .87rem;
    color: rgba(255,255,255,.55);
    text-decoration: none;
    margin-bottom: .5rem;
    transition: var(--transition);
}

.footer-imp .footer-link:hover { color: var(--white); }

.footer-imp .footer-divider {
    border-color: rgba(255,255,255,.08);
    margin: 2rem 0 1.25rem;
}

.footer-imp .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
}

.footer-imp .footer-copy {
    font-size: .78rem;
    color: rgba(255,255,255,.3);
}

.footer-imp .footer-copy a {
    color: rgba(255,255,255,.45);
    text-decoration: none;
    transition: var(--transition);
}

.footer-imp .footer-copy a:hover { color: var(--white); }

/* =========================================================
   COOKIE BANNER
   ========================================================= */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: var(--ink);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,.1);
    box-shadow: var(--shadow-lg);
    padding: 1.25rem 1.75rem;
    max-width: 600px;
    width: calc(100% - 2rem);
    display: none;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner.visible { display: flex; }

.cookie-banner p {
    font-size: .85rem;
    color: rgba(255,255,255,.65);
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.cookie-banner p a {
    color: var(--sky);
    text-decoration: none;
}

.cookie-btns { display: flex; gap: .6rem; flex-shrink: 0; }

.cookie-btns .btn-accept {
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: .5rem 1.1rem;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btns .btn-accept:hover { background: var(--orange-dark); }

.cookie-btns .btn-reject {
    background: transparent;
    color: rgba(255,255,255,.5);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-sm);
    padding: .5rem 1.1rem;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btns .btn-reject:hover { color: var(--white); border-color: rgba(255,255,255,.35); }

/* =========================================================
   UTILITIES & RESPONSIVE
   ========================================================= */
.section-divider {
    height: 1px;
    background: var(--border);
    margin: 0;
}

@media (max-width: 991px) {
    .hero { padding: 4rem 0; min-height: auto; }
    .hero-float-card { display: none; }

    .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 1rem 0; }
    .stat-item:last-child { border-bottom: none; }

    .process-connector { display: none; }
    .process-step { padding: 1.25rem; }

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

    /* Location section – reset inline gutter override */
    .section-location .row { --bs-gutter-x: 1.5rem !important; }
    .location-map-wrap { padding-right: 0; }
    .location-map-wrap img { max-height: 50vw; max-width: 100%; width: auto; }
}

@media (max-width: 767px) {
    .display-hero    { font-size: 2rem; }
    .display-section { font-size: 1.65rem; }

    .section-services,
    .section-problem,
    .section-about,
    .section-contact,
    .section-location,
    .section-process,
    .section-faq { padding: 3.5rem 0; }

    /* Hero – compact on mobile */
    .hero { padding: 2.5rem 0; }
    .hero .lead { font-size: .97rem; }

    /* Foto responzivně */
    .hero-photo-card {
        width: 72vw;
        max-width: 340px;
        aspect-ratio: 3 / 4;
        overflow: hidden;
    }
    .hero-photo-card img { object-fit: cover; object-position: top center; height: 100%; }

    /* Problem section – help.png */
    .section-problem .col-lg-5 img { max-width: 60%; }

    /* Hero CTA buttons – stack on very small */
    .hero .d-flex.flex-wrap { gap: .75rem; }
    .hero .btn-primary-imp,
    .hero .btn-outline-white { width: 100%; justify-content: center; }

    /* Trust chips */
    .trust-chips { gap: .45rem; }
    .trust-chip  { font-size: .78rem; padding: .25rem .75rem; }

    /* Stats bar – 2-col grid */
    .stat-item { padding: .75rem; }
    .stat-item .stat-number { font-size: 1.6rem; }
    .stat-item .stat-label  { font-size: .78rem; }

    /* Pain cards */
    .pain-card { padding: 1rem 1.1rem; }

    /* About */
    .about-photo-wrap { margin-bottom: 2rem; }

    /* Contact form – Turnstile + button stack */
    #contactForm .d-flex.align-items-center.justify-content-between {
        flex-direction: column;
        align-items: stretch !important;
        gap: 1rem;
    }
    #contactForm .btn-primary-imp { width: 100%; justify-content: center; }

    /* Cookie banner */
    .cookie-banner { padding: 1rem; gap: 1rem; }
    .cookie-btns { width: 100%; }
    .cookie-btns .btn-accept,
    .cookie-btns .btn-reject { flex: 1; text-align: center; }
}

@media (max-width: 400px) {
    .display-hero { font-size: 1.75rem; }
    .hero-photo-card { width: 80vw; max-width: 300px; }
}

/* --- AOS overrides for no-JS fallback --- */
[data-aos] { opacity: 1 !important; transform: none !important; }
