/* ============================================
   Template: business-classic  (DEMO skin — "Sola Rør AS")
   Codecraft Web demo. Fictional plumbing business.
   Trust-focused service-business layout. Theme via :root only.
   ============================================ */

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f3f6fb;
    --bg-card: #ffffff;
    --bg-card-hover: #f7faff;
    --border: #e4e9f2;
    --border-light: #cdd6e6;
    --text-primary: #0f1b2d;
    --text-secondary: #3c4a60;
    --text-muted: #6b7890;
    --accent: #1e40af;
    --accent-hover: #1a377a;
    --accent-glow: rgba(30, 64, 175, 0.08);
    --accent-secondary: #0284c7;
    --gradient-accent: linear-gradient(135deg, #1e40af, #0284c7);
    --shadow-sm: 0 1px 3px rgba(15, 27, 45, 0.06), 0 1px 2px rgba(15, 27, 45, 0.04);
    --shadow-md: 0 10px 30px rgba(15, 27, 45, 0.10);
    --shadow-lg: 0 20px 50px rgba(15, 27, 45, 0.14);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1200px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    padding-bottom: 40px; /* room for the fixed demo bar */
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Navigation ---- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

#navbar.scrolled {
    border-bottom-color: var(--border);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 1px 12px rgba(15, 27, 45, 0.05);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 1001;
}

.logo-text { color: var(--text-primary); letter-spacing: -0.01em; }

.logo-monogram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: var(--gradient-accent);
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.28);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links > a:not(.nav-call) {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    position: relative;
}

.nav-links > a:not(.nav-call):hover { color: var(--text-primary); }

.nav-links > a:not(.nav-call)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width var(--transition);
    border-radius: 1px;
}

.nav-links > a:not(.nav-call):hover::after { width: 100%; }

.nav-call {
    display: inline-flex;
    align-items: center;
    padding: 9px 18px;
    background: var(--gradient-accent);
    color: #fff;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(30, 64, 175, 0.28);
    transition: var(--transition);
}

.nav-call:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30, 64, 175, 0.38); }

.lang-toggle {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font);
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-toggle:hover { border-color: var(--accent); color: var(--text-primary); }
.lang-toggle .lang-flag.active { color: var(--accent); }
.lang-divider { color: var(--border-light); font-weight: 300; }

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero (split, asymmetric) ---- */
#hero {
    position: relative;
    overflow: hidden;
    padding: 128px 24px 88px;
    background:
        radial-gradient(ellipse 70% 80% at 85% 0%, rgba(2, 132, 199, 0.10), transparent 60%),
        linear-gradient(180deg, var(--bg-secondary), var(--bg-primary) 90%);
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 18px;
    border: 1px solid rgba(2, 132, 199, 0.25);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.02em;
    margin-bottom: 26px;
    background: rgba(2, 132, 199, 0.07);
}

.pulse-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #0284c7;
    box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(2, 132, 199, 0.5); }
    70% { box-shadow: 0 0 0 10px rgba(2, 132, 199, 0); }
    100% { box-shadow: 0 0 0 0 rgba(2, 132, 199, 0); }
}

.hero-name {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
}

.hero-sub {
    font-size: 1.08rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin-bottom: 34px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--gradient-accent);
    color: #fff;
    box-shadow: 0 6px 22px rgba(30, 64, 175, 0.30);
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(30, 64, 175, 0.40); }

.btn-outline {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-outline:hover { border-color: var(--accent); background: var(--accent-glow); }

.btn-full { width: 100%; }

/* Big phone CTA */
.btn-call {
    gap: 14px;
    padding: 14px 28px;
    text-align: left;
}

.btn-call svg { width: 22px; height: 22px; flex-shrink: 0; }

.btn-call-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
    line-height: 1.3;
}

.btn-call-num {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

.hero-assurance {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero media */
.hero-media { position: relative; }

.hero-media-badge {
    position: absolute;
    bottom: -22px;
    left: -22px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 22px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.hmb-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hmb-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

/* ---- Image placeholders ---- */
.img-ph {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background:
        radial-gradient(ellipse at 30% 20%, rgba(2, 132, 199, 0.10), transparent 55%),
        linear-gradient(135deg, rgba(30, 64, 175, 0.09), rgba(2, 132, 199, 0.14));
    color: var(--accent);
    overflow: hidden;
}

.img-ph-icon {
    width: 54px;
    height: 54px;
    opacity: 0.55;
    stroke: var(--accent);
}

.img-ph-cap {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-secondary);
    max-width: 30ch;
    line-height: 1.5;
}

.img-ph-hero {
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
}

.img-ph-map {
    aspect-ratio: 4 / 3;
    width: 100%;
    border-radius: var(--radius);
}

/* ---- Sections common ---- */
section { padding: 104px 0; }

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    max-width: 640px;
}

.section-lead {
    color: var(--text-secondary);
    font-size: 1.02rem;
    line-height: 1.8;
    max-width: 640px;
    margin-bottom: 48px;
}

/* ---- Trust strip ---- */
#trust {
    padding: 0;
    position: relative;
    z-index: 2;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    margin-top: -44px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 26px 28px;
    border-right: 1px solid var(--border);
}

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

.trust-item svg {
    width: 34px;
    height: 34px;
    color: var(--accent);
    flex-shrink: 0;
}

.trust-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.trust-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ---- Services ---- */
#tjenester { background: var(--bg-primary); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-glow);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.service-icon svg { width: 26px; height: 26px; color: var(--accent); }

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tags span {
    padding: 4px 12px;
    background: var(--accent-glow);
    border: 1px solid rgba(30, 64, 175, 0.14);
    border-radius: 20px;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--accent);
}

/* Emergency CTA card */
.service-card-cta {
    background: linear-gradient(150deg, #10233f, #0f2f52);
    border-color: transparent;
    color: #fff;
}

.service-card-cta::before { display: none; }
.service-card-cta .service-icon { background: rgba(255, 255, 255, 0.12); }
.service-card-cta .service-icon svg { color: #7dd3fc; }
.service-card-cta h3 { color: #fff; }
.service-card-cta p { color: rgba(255, 255, 255, 0.82); }

.service-cta-link {
    display: inline-block;
    font-weight: 700;
    font-size: 0.95rem;
    color: #7dd3fc;
    transition: var(--transition);
}

.service-cta-link:hover { color: #fff; }

/* ---- How we work (numbered steps) ---- */
#slik-jobber-vi { background: var(--bg-secondary); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 26px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-light);
}

.step-num {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--gradient-accent);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.28);
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ---- Hours & area ---- */
#omrade { background: var(--bg-primary); }

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1.2fr;
    gap: 24px;
    align-items: stretch;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.info-card-map { padding: 0; overflow: hidden; display: flex; }

.info-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.info-card-title svg { width: 24px; height: 24px; color: var(--accent); }

.hours-list { list-style: none; }

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.hours-list li:last-child { border-bottom: none; }
.hours-list strong { color: var(--text-primary); font-weight: 700; }

.hours-emph {
    margin-top: 4px;
}

.hours-emph strong { color: var(--accent-secondary); }

.info-card-lead {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.area-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.area-chips span {
    padding: 6px 14px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
}

.info-card-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---- Testimonials ---- */
#omtaler { background: var(--bg-secondary); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-light);
}

.stars {
    color: #f59e0b;
    font-size: 1.05rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 24px;
    flex: 1;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tp-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.tp-name { font-size: 0.95rem; font-weight: 700; }
.tp-loc { font-size: 0.8rem; color: var(--text-muted); }

/* ---- Contact ---- */
#kontakt { background: var(--bg-primary); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-size: 0.98rem;
    max-width: 480px;
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 18px 28px;
    background: var(--gradient-accent);
    color: #fff;
    border-radius: var(--radius);
    box-shadow: 0 8px 26px rgba(30, 64, 175, 0.30);
    margin-bottom: 32px;
    transition: var(--transition);
}

.contact-phone:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(30, 64, 175, 0.40); }
.contact-phone svg { width: 26px; height: 26px; flex-shrink: 0; }

.contact-phone-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.88;
}

.contact-phone-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.15;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item svg {
    width: 22px;
    height: 22px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item div { display: flex; flex-direction: column; }

.contact-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.contact-item a {
    color: var(--text-primary);
    font-weight: 500;
    transition: color var(--transition);
}

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

.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: var(--font);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

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

.form-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 14px;
}

/* ---- Footer ---- */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 40px 0;
}

.footer-bottom { text-align: center; }
.footer-single { border-top: none; padding-top: 0; }

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ---- Animations ---- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Demo ribbon ---- */
.demo-ribbon {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    background: var(--gradient-accent);
    box-shadow: 0 -2px 16px rgba(15, 27, 45, 0.18);
}

.demo-ribbon a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
    opacity: 0.92;
}

.demo-ribbon a:hover { opacity: 1; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-media { max-width: 460px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-item:nth-child(2) { border-right: none; }
    .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--border); }
    .info-grid { grid-template-columns: 1fr 1fr; }
    .info-card-map { grid-column: 1 / -1; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 620px; }
}

@media (max-width: 768px) {
    section { padding: 72px 0; }

    .nav-hamburger { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        gap: 22px;
        border-left: 1px solid var(--border);
        transition: right var(--transition);
    }

    .nav-links.open { right: 0; }
    .nav-links > a:not(.nav-call) { font-size: 1.1rem; }
    .nav-call { font-size: 1rem; padding: 12px 24px; }

    .services-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; margin-top: -32px; }
    .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
    .trust-item:last-child { border-bottom: none; }
    .info-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }

    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn { width: 100%; }
    .hero-media-badge { left: 12px; bottom: -18px; }
    .contact-phone { width: 100%; }
}

@media (max-width: 480px) {
    #hero { padding-top: 108px; }
    .hero-name { font-size: 1.9rem; }
    .contact-form-wrap { padding: 26px; }
    .info-card { padding: 26px; }
    .contact-phone-num { font-size: 1.3rem; }
}
