/* ============================================
   PaverNet - Style
   ============================================ */

:root {
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    --blue-900: #1e3a8a;

    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --red-500: #ef4444;
    --orange-500: #f97316;
    --green-500: #22c55e;

    --bg-primary: #ffffff;
    --bg-secondary: var(--gray-50);
    --bg-dark: var(--gray-900);
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --text-muted: var(--gray-400);
    --accent: var(--blue-600);
    --accent-hover: var(--blue-700);
    --accent-light: var(--blue-50);

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition);
}

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

ul {
    list-style: none;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}
.btn-outline:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-1px);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

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

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo img {
    height: 36px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu a {
    padding: 8px 16px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav-menu a:hover {
    color: var(--text-primary);
    background: var(--gray-100);
}

.nav-menu a.active:not(.nav-cta) {
    color: var(--accent);
    background: var(--accent-light);
    font-weight: 600;
}

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

.nav-dropdown-toggle i {
    font-size: 10px;
    margin-left: 4px;
    transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle i,
.nav-dropdown:focus-within .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 260px;
    background: var(--bg-primary);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.nav-dropdown-menu li {
    width: 100%;
}

.nav-dropdown-menu a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 14px !important;
    font-size: 14px !important;
    color: var(--text-secondary) !important;
    background: transparent !important;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    font-weight: 500 !important;
}

.nav-dropdown-menu a:hover {
    background: var(--accent-light) !important;
    color: var(--accent) !important;
}

.nav-dropdown-menu a i {
    width: 18px;
    font-size: 14px;
    color: var(--accent);
    flex-shrink: 0;
}

.nav-cta {
    background: var(--accent) !important;
    color: #fff !important;
    margin-left: 8px;
}
.nav-cta:hover {
    background: var(--accent-hover) !important;
}

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

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

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-900) 0%, #0f172a 50%, var(--blue-900) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(59,130,246,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(59,130,246,0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 24px 120px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(59,130,246,0.15);
    color: var(--blue-400);
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid rgba(59,130,246,0.25);
}

.hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--blue-400), var(--blue-200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 17px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 540px;
}

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

.hero-actions .btn-primary {
    background: var(--blue-500);
    border-color: var(--blue-500);
}
.hero-actions .btn-primary:hover {
    background: var(--blue-400);
    border-color: var(--blue-400);
}

.hero-actions .btn-outline {
    color: var(--gray-300);
    border-color: var(--gray-600);
}
.hero-actions .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: var(--gray-400);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-400);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--gray-500);
    margin-top: 2px;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.hero-photo {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.floating-card i {
    font-size: 18px;
    color: var(--blue-400);
}

.card-1 {
    top: 30px;
    left: -40px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -50px;
    animation-delay: -2s;
}

.card-3 {
    bottom: 60px;
    left: -30px;
    animation-delay: -4s;
}

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

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ============================================
   SECTIONS (common)
   ============================================ */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 4px 14px;
    background: var(--accent-light);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   PROBLEMS
   ============================================ */
.problems {
    background: var(--bg-secondary);
}

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

.problem-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.problem-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.problem-card.animate-in:hover {
    transform: translateY(-4px);
}

.problem-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fef2f2, #fee2e2);
    color: var(--red-500);
    border-radius: var(--radius-md);
    font-size: 22px;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.problem-card > p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.problem-cost {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 16px;
    background: #fffbeb;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--gray-700);
    line-height: 1.5;
}

.problem-cost i {
    color: var(--orange-500);
    margin-top: 2px;
    flex-shrink: 0;
}

.problems-cta {
    text-align: center;
}

.problems-cta p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

/* ============================================
   SERVICES
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    opacity: 0;
    transform: translateY(20px);
    overflow: hidden;
}

.service-card-featured {
    border-color: var(--blue-200);
}

.service-card-image {
    margin: -32px -28px 20px;
    height: 180px;
    overflow: hidden;
    background: var(--gray-100);
    position: relative;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-featured:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(255,255,255,0.15) 100%);
    pointer-events: none;
}

/* Badge partnera na karcie usługi */
.service-card-partner {
    position: relative;
}

.service-partner-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    box-shadow: var(--shadow-sm);
}

.service-partner-badge img {
    height: 18px;
    width: auto;
    display: block;
}

/* Cert badge z logiem partnera */
.cert-badge-partner {
    grid-column: span 2;
    background: #fff;
    border-color: var(--blue-200);
}

.cert-badge-logo {
    height: 22px !important;
    width: auto !important;
    object-fit: contain;
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.service-card.animate-in:hover {
    transform: translateY(-4px);
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
    color: var(--accent);
    border-radius: var(--radius-md);
    font-size: 22px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.service-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.service-features li i {
    color: var(--green-500);
    font-size: 12px;
    flex-shrink: 0;
}

a.service-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.service-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    transition: gap var(--transition);
}

a.service-card:hover .service-more {
    gap: 10px;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    background: var(--bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: start;
}

.about-lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.about-content > p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: var(--radius-sm);
    font-size: 18px;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.about-feature p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.about-portrait {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 2 / 3;
    max-height: 620px;
}

.about-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-portrait:hover img {
    transform: scale(1.02);
}

.about-portrait-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 28px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about-portrait-caption strong {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.about-portrait-caption span {
    font-size: 14px;
    color: var(--gray-300);
    font-weight: 500;
}

.about-portrait-creds {
    margin-top: 8px;
    font-size: 12px !important;
    color: var(--blue-400) !important;
    font-weight: 500;
    line-height: 1.5;
}

.about-certs {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-200);
}

.about-certs-wide {
    margin-top: 48px;
}

.about-certs-wide .cert-badges {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.about-certs h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.cert-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
}

.cert-badge i {
    font-size: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.cert-badge span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.pricing-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.pricing-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.pricing-card.animate-in:hover {
    transform: translateY(-4px);
}

.pricing-popular {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.pricing-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-primary);
    line-height: 1;
}

.price-period {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features li i {
    font-size: 14px;
    flex-shrink: 0;
}

.pricing-features li .fa-check {
    color: var(--green-500);
}

.pricing-features li .fa-xmark {
    color: var(--gray-300);
}

.feature-disabled {
    opacity: 0.5;
}

.pricing-note {
    text-align: center;
    padding: 20px 28px;
    background: var(--accent-light);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pricing-note i {
    color: var(--accent);
    margin-right: 4px;
}

/* ============================================
   ELEKTRO
   ============================================ */
.elektro {
    background: linear-gradient(135deg, var(--gray-900) 0%, #0f172a 100%);
    color: #fff;
}

.elektro .section-badge {
    background: rgba(59,130,246,0.15);
    color: var(--blue-400);
    border: 1px solid rgba(59,130,246,0.25);
}

.elektro-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
}

.elektro h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 20px;
}

.elektro-lead {
    font-size: 18px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 16px;
}

.elektro-content > p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 32px;
}

.elektro-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.elektro-service {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.elektro-service:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(59,130,246,0.3);
}

.elektro-service i {
    font-size: 20px;
    color: var(--blue-400);
}

.elektro-service span {
    font-size: 14px;
    font-weight: 500;
}

.elektro-note {
    font-size: 13px;
    color: var(--gray-500);
}

.elektro-note i {
    margin-right: 4px;
}

.elektro-visual {
    display: flex;
    justify-content: center;
}


/* ============================================
   CONTACT
   ============================================ */
.contact {
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: start;
}

.contact-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 24px;
}

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

.contact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: var(--radius-sm);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.contact-item p,
.contact-item a {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

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

.contact-social {
    display: flex;
    gap: 12px;
}

.contact-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 18px;
    transition: all var(--transition);
}

.contact-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* Contact Form */
.contact-form {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-200);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 15px;
    color: var(--text-primary);
    background: var(--bg-primary);
    transition: all var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

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

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

/* Walidacja — komunikat błędu pod polem */
.form-error {
    display: none;
    margin-top: 6px;
    padding: 8px 12px;
    background: #fef2f2;
    border-left: 3px solid var(--red-500);
    border-radius: 4px;
    color: #991b1b;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.form-error.visible {
    display: block;
    animation: errorFadeIn 0.2s ease-out;
}

@keyframes errorFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.form-group.has-error input,
.form-group.has-error textarea {
    border-color: var(--red-500) !important;
    background: #fffbfb;
}

.form-group.has-error input:focus,
.form-group.has-error textarea:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12) !important;
}

.form-consent.has-error {
    border-color: var(--red-500);
    background: #fffbfb;
}

/* Honeypot — ukryte przed człowiekiem, widoczne dla bota */
.hp-field {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Oznaczenie pola wymaganego */
.form-required {
    color: var(--red-500);
    font-weight: 700;
    margin-left: 2px;
}

/* Checkbox zgody RODO */
.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
}

.form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.form-consent label {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
    margin: 0;
    font-weight: 400;
}

.form-consent label strong {
    color: var(--text-primary);
    font-weight: 600;
}

.form-consent label a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Turnstile widget */
.form-turnstile {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

/* Status komunikatu (success / error) */
.form-status {
    margin-top: 16px;
    padding: 0;
    font-size: 14px;
    line-height: 1.5;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    max-height: 0;
    overflow: hidden;
}

.form-status.visible {
    padding: 14px 16px;
    max-height: 200px;
}

.form-status.success {
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #14532d;
}

.form-status.error {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #7f1d1d;
}

/* Button disabled state podczas wysyłki */
#contactSubmit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 0.8fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    height: 32px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-400);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-contact i {
    width: 16px;
    margin-right: 8px;
    color: var(--gray-500);
}

.footer-contact a {
    color: var(--gray-400);
}
.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: var(--gray-600);
}

/* ============================================
   TRUST BANNER
   ============================================ */
.trust-banner {
    padding: 80px 0;
    background: var(--bg-primary);
}

.trust-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.trust-photo-single {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 3 / 4;
    max-height: 520px;
}

.trust-photo-single img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.trust-photo-single:hover img {
    transform: scale(1.03);
}

.trust-text h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 16px;
}

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

.trust-text > p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.trust-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.trust-fact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 20px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.trust-fact:hover {
    background: var(--accent-light);
    border-left-color: var(--accent-hover);
    transform: translateX(2px);
}

.trust-fact-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.trust-fact-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.4;
}

/* ============================================
   BEFORE / AFTER
   ============================================ */
.before-after {
    background: var(--bg-secondary);
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.ba-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--gray-900);
    box-shadow: var(--shadow-xl);
    aspect-ratio: 3 / 4;
}

.ba-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}

.ba-item:hover img {
    transform: scale(1.02);
}

.ba-label {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    backdrop-filter: blur(8px);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.ba-label-before {
    background: rgba(239, 68, 68, 0.92);
}

.ba-label-after {
    background: rgba(34, 197, 94, 0.92);
}

.before-after-note {
    text-align: center;
    max-width: 680px;
    margin: 48px auto 0;
    font-size: 17px;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 500;
}

.before-after-note i {
    color: var(--accent);
    opacity: 0.6;
    margin-right: 8px;
}

/* ============================================
   PODWYKONAWSTWO B2B (segment PODWYK)
   ============================================ */
.subcontract {
    padding: 70px 0;
    background: var(--gray-900);
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.subcontract-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 48px;
    align-items: center;
}

.subcontract-badge {
    background: rgba(59,130,246,0.15);
    color: var(--blue-400);
    border: 1px solid rgba(59,130,246,0.25);
}

.subcontract h2 {
    font-size: clamp(1.4rem, 2.2vw, 1.75rem);
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin: 12px 0 16px;
}

.subcontract-content > p {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 20px;
}

.subcontract-points {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.subcontract-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.5;
}

.subcontract-points li i {
    color: var(--blue-400);
    margin-top: 4px;
    flex-shrink: 0;
    font-size: 12px;
}

.subcontract-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.subcontract-cta .btn-outline {
    color: var(--gray-300);
    border-color: var(--gray-600);
}
.subcontract-cta .btn-outline:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: var(--gray-400);
}

/* ============================================
   ABOUT PHOTO BANNER
   ============================================ */
.about-photo-banner {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 48px;
    height: 320px;
}

.about-photo-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 32px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.about-photo-overlay span {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

/* ============================================
   ELEKTRO PHOTO
   ============================================ */
.elektro-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: 560px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* ============================================
   CONTACT PHOTO
   ============================================ */
.contact-photo {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 16px;
}

.contact-photo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.contact-photo-caption {
    font-size: 14px;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 10px;
    text-align: center;
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ============================================
   ADDONS — cennik usług dodatkowych (sekcja #cennik-dodatki)
   ============================================ */
.addons {
    background: var(--bg-secondary);
}

.addons-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 920px;
    margin: 0 auto;
}

.addons-category {
    background: var(--bg-primary);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.addons-category.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.addons-category:hover {
    border-color: var(--blue-200);
}

.addons-category[open] {
    border-color: var(--blue-200);
    box-shadow: var(--shadow-md);
}

.addons-category summary {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

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

.addons-category summary::marker {
    content: '';
}

.addons-category summary > i:first-child {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: var(--radius-sm);
    font-size: 16px;
    flex-shrink: 0;
}

.addons-title {
    flex: 1;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
}

.addons-hint {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    white-space: nowrap;
}

.addons-chev {
    color: var(--gray-400);
    font-size: 14px;
    transition: transform var(--transition);
    flex-shrink: 0;
}

.addons-category[open] .addons-chev {
    transform: rotate(180deg);
}

.addons-body {
    padding: 4px 24px 24px;
}

.addons-intro {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.6;
}

.addons-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    margin-bottom: 0;
}

.addons-table th,
.addons-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--gray-200);
    text-align: left;
    vertical-align: top;
    line-height: 1.5;
}

.addons-table th {
    font-weight: 700;
    background: var(--gray-50);
    font-size: 13px;
    color: var(--text-primary);
}

.addons-table td {
    color: var(--text-secondary);
}

.addons-table td strong {
    color: var(--text-primary);
}

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

.addons-extras {
    margin-top: 16px;
    padding: 12px 16px;
    background: var(--accent-light);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.addons-extras strong {
    color: var(--text-primary);
}

.addons-footnote {
    text-align: center;
    margin-top: 32px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.addons-footnote i {
    color: var(--accent);
    margin-right: 4px;
}

.addons-footnote a {
    color: var(--accent);
    font-weight: 600;
}

/* ============================================
   LEGAL PAGES (polityka prywatności)
   ============================================ */
.legal-page {
    padding: 120px 0 80px;
    background: var(--bg-secondary);
    min-height: 100vh;
}

.legal-container {
    max-width: 860px;
}

.legal-header {
    padding-bottom: 32px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--gray-200);
}

.legal-header h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.legal-meta {
    font-size: 14px;
    color: var(--text-secondary);
}

.legal-content {
    background: var(--bg-primary);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 48px 56px;
    box-shadow: var(--shadow-sm);
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content section:last-child {
    margin-bottom: 0;
}

.legal-content h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.legal-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 14px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 14px;
}

.legal-content ul li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 10px;
}

.legal-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-box {
    background: var(--gray-50);
    border-left: 3px solid var(--accent);
    padding: 18px 22px;
    border-radius: var(--radius-sm);
    margin: 16px 0;
    line-height: 1.7;
    font-size: 14px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
}

.legal-table th,
.legal-table td {
    border: 1px solid var(--gray-200);
    padding: 12px 16px;
    text-align: left;
    vertical-align: top;
    line-height: 1.6;
}

.legal-table th {
    background: var(--gray-50);
    font-weight: 700;
    color: var(--text-primary);
    font-size: 13px;
}

.legal-table td {
    color: var(--text-secondary);
}

.legal-footer {
    margin-top: 40px;
    text-align: center;
}

@media (max-width: 768px) {
    .legal-page {
        padding: 100px 0 60px;
    }
    .legal-content {
        padding: 28px 20px;
    }
    .legal-content h2 {
        font-size: 18px;
    }
    .legal-table {
        font-size: 13px;
    }
    .legal-table th,
    .legal-table td {
        padding: 10px;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-visual {
        display: none;
    }

    .trust-content {
        grid-template-columns: 1fr;
    }

    .trust-photo-single {
        max-width: 480px;
        margin: 0 auto;
        aspect-ratio: 4 / 3;
    }

    .subcontract-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .subcontract-cta {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .about-photo-banner {
        height: 240px;
    }

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

    .elektro-photo {
        aspect-ratio: 4 / 3;
        max-height: 360px;
    }

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

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

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 16px 24px 24px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition);
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu a {
        display: block;
        padding: 12px 16px;
        font-size: 16px;
    }

    .nav-cta {
        margin-left: 0 !important;
        text-align: center;
    }

    /* Mobile dropdown — rozwijane po kliknięciu */
    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        min-width: 0;
        box-shadow: none;
        border: none;
        background: var(--gray-50);
        margin: 4px 0 8px;
        max-height: 0;
        overflow: hidden;
        padding: 0 8px;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 500px;
        padding: 8px;
    }

    .nav-dropdown.open .nav-dropdown-toggle i {
        transform: rotate(180deg);
    }

    .nav-dropdown-menu a {
        padding: 10px 12px !important;
        font-size: 15px !important;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .trust-photo-single {
        aspect-ratio: 4 / 3;
        max-height: 360px;
    }

    .trust-facts {
        grid-template-columns: 1fr;
    }

    .before-after-grid {
        grid-template-columns: 1fr;
    }

    .ba-item {
        aspect-ratio: 4 / 3;
    }

    .subcontract-cta {
        flex-direction: column;
    }

    /* Addons na mobile — kompaktowe summary, mniejsze tabele, hide hint */
    .addons-category summary {
        padding: 14px 16px;
        gap: 10px;
    }
    .addons-category summary > i:first-child {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    .addons-title {
        font-size: 14px;
    }
    .addons-hint {
        display: none;
    }
    .addons-body {
        padding: 4px 16px 16px;
        overflow-x: auto;
    }
    .addons-table {
        font-size: 13px;
    }
    .addons-table th,
    .addons-table td {
        padding: 8px 8px;
    }
    .addons-table th {
        font-size: 12px;
    }

    .about-photo-banner {
        height: 180px;
    }

    .elektro-services {
        grid-template-columns: 1fr;
    }

    .cert-badges {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .stat {
        text-align: center;
    }

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