:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: #ffffff;
    --text-primary: #1a3a5c;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --accent-primary: #1a3a5c;
    --accent-secondary: #0e7490;
    --accent-light: #0891b2;
    --accent-gradient: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    --accent-soft: rgba(8, 145, 178, 0.08);
    --accent-glow: rgba(26, 58, 92, 0.06);
    --border-color: #e2e8f0;
    --border-accent: rgba(8, 145, 178, 0.3);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px -12px rgba(26, 58, 92, 0.15);
    --shadow-xl: 0 25px 50px -12px rgba(26, 58, 92, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* SVG Icon base styles */
.icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    flex-shrink: 0;
}

.icon-sm {
    width: 18px;
    height: 18px;
}

.icon-lg {
    width: 28px;
    height: 28px;
}

.icon-xl {
    width: 36px;
    height: 36px;
    stroke-width: 1.5;
}

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

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

.mono {
    font-family: 'Fira Code', monospace;
}

/* Background decorations */
.bg-pattern {
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(26, 58, 92, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.bg-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.bg-blob-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    right: -100px;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.12) 0%, rgba(6, 182, 212, 0.08) 100%);
}

.bg-blob-2 {
    width: 400px;
    height: 400px;
    bottom: 10%;
    left: -100px;
    background: linear-gradient(135deg, rgba(26, 58, 92, 0.08) 0%, rgba(8, 145, 178, 0.05) 100%);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 54px;
    width: auto;
}

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

.nav-links > li {
    position: relative;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

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

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

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

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

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

.nav-dropdown > a .dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 260px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    margin-top: 16px;
    z-index: 1001;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 16px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 8px;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

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

.dropdown-menu a:hover {
    background: var(--accent-soft);
    color: var(--accent-primary);
}

.dropdown-menu a .icon {
    width: 20px;
    height: 20px;
    color: var(--accent-secondary);
    flex-shrink: 0;
}

.nav-cta {
    background: linear-gradient(135deg, #067d56 0%, #34d399 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
    border-radius: 2px;
}
/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.hero-badge .icon {
    width: 18px;
    height: 18px;
}

.hero-badge.highlight {
    background: var(--accent-soft);
    border-color: var(--border-accent);
    color: var(--accent-secondary);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background:  #6bcb77;;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.9); }
}

.hero-title {
    font-size: clamp(2.75rem, 5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.7;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn .icon {
    width: 20px;
    height: 20px;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 14px rgba(26, 58, 92, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(26, 58, 92, 0.35);
}

.btn-green {
    background: linear-gradient(135deg, #067d56 0%, #34d399 100%);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}
.btn-green:hover {
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.45);
}

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

.btn-secondary:hover {
    border-color: var(--accent-secondary);
    color: var(--accent-secondary);
    background: var(--accent-soft);
}

.hero-visual {
    position: relative;
}

.hero-media {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.hero-media::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
  z-index: 1;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
}



.code-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dot.red { background: #ff6b6b; }
.code-dot.yellow { background: #ffd93d; }
.code-dot.green { background: #6bcb77; }

.code-block {
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 2;
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: var(--radius-md);
}

.code-line {
    display: block;
    opacity: 0;
    animation: fadeInCode 0.5s forwards;
}

.code-line:nth-child(1) { animation-delay: 0.2s; }
.code-line:nth-child(2) { animation-delay: 0.4s; }
.code-line:nth-child(3) { animation-delay: 0.6s; }
.code-line:nth-child(4) { animation-delay: 0.8s; }
.code-line:nth-child(5) { animation-delay: 1s; }
.code-line:nth-child(6) { animation-delay: 1.2s; }
.code-line:nth-child(7) { animation-delay: 1.4s; }

@keyframes fadeInCode {
    to { opacity: 1; }
}

.code-comment { color: var(--text-muted); }
.code-keyword { color: var(--accent-secondary); }
.code-function { color: var(--accent-primary); }
.code-string { color: #059669; }
.code-var { color: #7c3aed; }

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.stat {
    text-align: left;
}

.stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Trust badges */
.trust-section {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-secondary);
}

.trust-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    color: var(--accent-secondary);
}

.trust-icon .icon {
    width: 28px;
    height: 28px;
}

.trust-text strong {
    display: block;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1rem;
}

.trust-text span {
    font-size: 0.85rem;
}

/* Services */
.services {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    background: var(--accent-soft);
    padding: 8px 20px;
    border-radius: 50px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.7;
}

/* Services header with image (mirrors benefits-header / threats-header pattern) */
.services-header { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 28px; align-items: center; margin-bottom: 64px; }
.services-header-text .section-title { text-align: left; }
.services-header-text .section-desc { text-align: left; margin: 0; }
.services-header-text .section-label { display: inline-flex; }
.services-header-media { display: flex; justify-content: center; align-items: center; }
.services-header-media img { max-width: 130%; height: auto; border-radius: var(--radius-lg); }
@media (max-width: 768px) {
    .services-header { grid-template-columns: 1fr; gap: 24px; }
    .services-header-text .section-title,
    .services-header-text .section-desc { text-align: center; }
    .services-header-text .section-label { margin-left: auto; margin-right: auto; }
    .services-header-media { order: 1; }
    .services-header-media img { max-width: 80%; }
}

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

.service-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-xl);
}

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

.service-icon {
    width: 72px;
    height: 72px;
    background: var(--accent-soft);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid var(--border-accent);
    color: var(--accent-secondary);
}

.service-icon .icon {
    width: 36px;
    height: 36px;
    stroke-width: 1.5;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 10px 0;
    border-top: 1px solid var(--border-color);
}

.service-features li .icon {
    width: 18px;
    height: 18px;
    color: var(--accent-secondary);
    flex-shrink: 0;
}

/* RODO Section */
.rodo-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.rodo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.rodo-visual {
    position: relative;
}

.rodo-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.rodo-shield {
    width: 100px;
    height: 100px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 30px rgba(26, 58, 92, 0.3);
    color: white;
}

.rodo-shield .icon {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.rodo-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.rodo-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.rodo-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-secondary);
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s;
}

.rodo-link:hover {
    gap: 12px;
}

.rodo-link .icon {
    width: 20px;
    height: 20px;
}

.rodo-text h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

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

.rodo-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.rodo-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 16px 20px;
    border-radius: var(--radius-md);
}

.rodo-benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-secondary);
}

.rodo-benefit-icon .icon {
    width: 20px;
    height: 20px;
}

.rodo-benefit span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

/* Process */
.process {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}




/* =========================
   PROCESS BG (Premium):
   - Desktop/tablet: background image on whole section (.process--bg)
   - Mobile: background image only behind header wrapper (.process-header)
   Note: supports file without extension via fallback URL list.
   ========================= */

.process-header{
    position: relative;
}

/* Desktop/tablet: show bg on entire section */
@media (min-width: 769px){
    .process--bg{
        position: relative;
        overflow: hidden;
        isolation: isolate;
    }

    .process--bg::before{
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("/assets/ios-cooperation.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 1; /* visible */
        transform: scale(1.03);
        filter: saturate(1.06) contrast(1.03);
        z-index: 0;
        pointer-events: none;
    }

    .process--bg::after{
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        
    }

    /* content above bg */
    .process--bg > *{
        position: relative;
        z-index: 1;
    }

    /* Premium "glass" for section header */
    .process-header .section-header{
        position: relative;
        padding: 26px 28px;
        border-radius: var(--radius-lg);
    }

    .process-header .section-header::before{
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: rgba(255,255,255,0.55);
        border: 1px solid rgba(226,232,240,0.75);
        box-shadow: var(--shadow-lg);

        z-index: -1;
    }
}

/* Mobile: show bg ONLY behind header (and keep text readable) */
@media (max-width: 768px){
    /* Disable section background on mobile */
    .process--bg::before,
    .process--bg::after{
        content: none !important;
    }

    .process-header{
        position: relative;
        overflow: hidden;
        isolation: isolate;
    }

    .process-header::before{
        content: "";
        position: absolute;
        inset: 0;
        background-image: url("/assets/ios-cooperation.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 1; /* visible on mobile */
        transform: scale(1.06);
        filter: saturate(1.06) contrast(1.03);
        z-index: 0;
        pointer-events: none;
    }

    /* overlay that keeps the image visible but guarantees contrast */
    .process-header::after{
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;

    }

    /* Put text above bg layers */
    .process-header .container{
        position: relative;
        z-index: 1;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    /* Premium glass ON MOBILE too (critical for readability) */
    .process-header .section-header{
        position: relative;
        padding: 16px 16px;
        border-radius: 18px;
        text-align: center;
        background: rgba(255,255,255,0.78);
        border: 1px solid rgba(226,232,240,0.85);
        box-shadow: 0 14px 40px rgba(0,0,0,0.12);

    }
}

/* Premium micro-animation (WCAG: respects reduced motion) */
@keyframes processFadeUp{
    from{ opacity: 0; transform: translateY(10px); }
    to  { opacity: 1; transform: translateY(0); }
}

.process-header .section-header{
    animation: processFadeUp 520ms ease-out both;
}

@media (prefers-reduced-motion: reduce){
    .process-header .section-header{
        animation: none !important;
    }
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.process-step {
    text-align: center;
    padding: 32px 20px;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.process-num {
    width: 52px;
    height: 52px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 4px 14px rgba(26, 58, 92, 0.25);
}

.process-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.process-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* About */
.about {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

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

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.highlight-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.highlight-value {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.highlight-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-visual {
    position: relative;
}

.about-team-photo { margin-bottom: 24px; border-radius: var(--radius-lg); overflow: hidden; }
.about-team-photo img { width: 100%; height: auto; display: block; border-radius: var(--radius-lg); }

.about-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-tag {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.tech-tag:hover {
    border-color: var(--accent-secondary);
    color: var(--accent-secondary);
    background: var(--accent-soft);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}

.cta-box {
    background: var(--accent-gradient);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-box h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-white {
    background: white;
    color: var(--accent-primary);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

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

/* Contact Alt Title (h3 with gradient span) */
.contact-alt-title {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 56px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

/* Contact Alt Heading (paragraph below title) */
.contact-alt-heading {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: 0;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

/* Contact Cards Grid */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 24px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

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

.contact-card-icon {
    width: 64px;
    height: 64px;
    background: var(--accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    border: 1px solid var(--border-accent);
    color: var(--accent-secondary);
    transition: all 0.4s;
}

.contact-card:hover .contact-card-icon {
    background: var(--accent-gradient);
    color: #fff;
    border-color: transparent;
    transform: scale(1.1);
}

.contact-card-icon .icon {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.contact-card-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-secondary);
}

.contact-card-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Legacy compat (subpages not yet migrated) */
.cta-contact {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: transform 0.2s;
}

.cta-contact-item:hover {
    transform: scale(1.05);
}

.cta-contact-item .icon {
    width: 24px;
    height: 24px;
}

.cta-office {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-office .icon {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    vertical-align: -0.1em;
}

.cta-office strong {
    color: white;
}

.cta-office em {
    font-style: normal;
    font-size: 1rem;
    opacity: 0.7;
}

/* Footer */
.footer {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-info {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

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

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 999;
    padding: 100px 24px 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-links > li > a {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.mobile-submenu {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 8px;
}

.mobile-submenu a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 0;
}

.mobile-submenu a .icon {
    width: 18px;
    height: 18px;
    color: var(--accent-secondary);
}

/* Subpage Hero */
.subpage-hero {
    padding: 160px 0 80px;
    position: relative;
    z-index: 1;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.subpage-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.subpage-hero-text {
    /* text column */
}

.subpage-hero .section-label {
    margin-bottom: 16px;
}

.subpage-hero h1 {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.subpage-hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 640px;
    line-height: 1.7;
}

.subpage-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.subpage-hero-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.subpage-content {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.subpage-content .container {
    max-width: 800px;
}

.subpage-placeholder {
    background: var(--bg-secondary);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    padding: 80px 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.subpage-placeholder .icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--border-color);
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        order: 2;
    }

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

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

    .about-content,
    .rodo-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .rodo-visual {
        order: -1;
    }
}

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

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }
}

@media (max-width: 1024px) {
    .contact-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

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

    .hero-stats {
        gap: 24px;
        align-items: center;
    }

    .stat {
        text-align: center;
    }

    .hero-ctas {
        flex-direction: column;
    }

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

    .trust-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .trust-item {
        width: 100%;
        max-width: 260px;
        justify-content: flex-start;
    }

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

    .about-highlights,
    .rodo-benefits {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 48px 24px;
    }

    .cta-contact {
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .subpage-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .subpage-hero-image {
        order: -1;
    }

    .subpage-hero-image img {
        max-width: 320px;
    }

    .subpage-hero {
        padding: 120px 0 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-badges {
        flex-direction: column;
        align-items: flex-start;
    }

    .code-block {
        font-size: 0.75rem;
        padding: 16px;
    }

    .logo img {
        height: 56px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    color: var(--accent-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.3s, color 0.3s;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--accent-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}
.back-to-top svg {
    width: 22px;
    height: 22px;
}
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

.cta-buttons button {
    min-height: 65px !important;
    padding: 14px 40px !important;
    border-radius: var(--radius-md) !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    line-height: 1.4 !important;
    letter-spacing: 0.01em !important;
    background: linear-gradient(135deg, #6ccba8, #067d56) !important;
    color: #ffffff !important;
    border: none !important;
    cursor: pointer !important;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4) !important;
}
.cta-buttons button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.5) !important;
    background: linear-gradient(135deg, #067d56, #6ccba8) !important;
}

/* --- bezpieczenstwo-wordpress.html --- */
/* === Subpage: Bezpieczeństwo WordPress === */

        /* Intro */
        .sec-intro { padding: 80px 0; position: relative; z-index: 1; }
        .sec-intro .container { max-width: 820px; }
        .sec-intro-text { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; }
        .sec-intro-text strong { color: var(--text-primary); }

        /* Threats */
        .sec-threats { padding: 80px 0; background: var(--bg-secondary); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); position: relative; z-index: 1; }
        .threats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
        .threat-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 36px 28px; transition: all 0.4s; position: relative; overflow: hidden; }
        .threat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(135deg, #ef4444 0%, #f97316 100%); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
        .threat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
        .threat-card:hover::before { transform: scaleX(1); }
        .threat-icon { width: 56px; height: 56px; background: rgba(239,68,68,0.08); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; border: 1px solid rgba(239,68,68,0.2); color: #ef4444; }
        .threat-icon .icon { width: 28px; height: 28px; stroke-width: 1.5; }
        .threat-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); }
        .threat-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.65; }

        /* Threats header with image (mirrors benefits-header pattern) */
        .threats-header { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 28px; align-items: center; margin-bottom: 48px; }
        .threats-header-text .section-title { text-align: left; }
        .threats-header-text .section-desc { text-align: left; margin: 0; }
        .threats-header-text .section-label { display: inline-flex; }
        .threats-header-media { display: flex; justify-content: center; align-items: center; }
        .threats-header-media img { max-width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
        @media (max-width: 768px) {
            .threats-header { grid-template-columns: 1fr; gap: 24px; }
            .threats-header-text .section-title,
            .threats-header-text .section-desc { text-align: center; }
            .threats-header-text .section-label { margin-left: auto; margin-right: auto; }
            .threats-header-media img { max-width: 360px; }
        }

        /* Scope header with image */
        .scope-header { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 28px; align-items: center; margin-bottom: 64px; }
        .scope-header-text .section-title { text-align: left; }
        .scope-header-text .section-desc { text-align: left; margin: 0; }
        .scope-header-text .section-label { display: inline-flex; }
        .scope-header-media { display: flex; justify-content: center; align-items: center; }
        .scope-header-media img { max-width: 130%; height: auto; border-radius: var(--radius-lg); }
        @media (max-width: 768px) {
            .scope-header { grid-template-columns: 1fr; gap: 24px; }
            .scope-header-text .section-title,
            .scope-header-text .section-desc { text-align: center; }
            .scope-header-text .section-label { margin-left: auto; margin-right: auto; }
            .scope-header-media { order: 1; }
            .scope-header-media img { max-width: 80%; }
        }

        /* What you get */
        .sec-scope { padding: 80px 0; position: relative; z-index: 1; }
        .scope-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
        .scope-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 36px 28px; transition: all 0.4s; position: relative; overflow: hidden; }
        .scope-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent-gradient); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
        .scope-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
        .scope-card:hover::before { transform: scaleX(1); }
        .scope-icon { width: 56px; height: 56px; background: var(--accent-soft); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; border: 1px solid var(--border-accent); color: var(--accent-secondary); }
        .scope-icon .icon { width: 28px; height: 28px; stroke-width: 1.5; }
        .scope-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); }
        .scope-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.65; }


        /* Benefits */
        .sec-benefits { padding: 80px 0; position: relative; z-index: 1; border-top: 1px solid var(--border-color); }
        .benefits-header { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 28px; align-items: center; }
        .benefits-header-text .section-title { text-align: left; }
        .benefits-header-text .section-desc { text-align: left; margin: 0; }
        .benefits-header-text .section-label { display: inline-flex; }
        .benefits-header-media { display: flex; justify-content: center; align-items: center; }
        .benefits-header-media img { max-width: 130%; height: auto; border-radius: var(--radius-lg); }
        @media (max-width: 768px) {
            .benefits-header { grid-template-columns: 1fr; gap: 24px; }
            .benefits-header-text .section-title,
            .benefits-header-text .section-desc { text-align: center; }
            .benefits-header-text .section-label { margin-left: auto; margin-right: auto; }
            .benefits-header-media { order: 1; }
            .benefits-header-media img { max-width: 80%; }
        }
        .benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
        .benefit-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 36px 28px; transition: all 0.4s; position: relative; overflow: hidden; }
        .benefit-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(135deg, #067d56 0%, #34d399 100%); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
        .benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
        .benefit-card:hover::before { transform: scaleX(1); }
        .benefit-icon { width: 56px; height: 56px; background: rgba(16, 185, 129, 0.08); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; border: 1px solid rgba(16, 185, 129, 0.25); color: #067d56; }
        .benefit-icon .icon { width: 28px; height: 28px; stroke-width: 1.5; }
        .benefit-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--text-primary); }
        .benefit-card p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.65; }


        /* Pricing */
        .sec-pricing { padding: 80px 0; background: var(--bg-secondary); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); position: relative; z-index: 1; }

        .pricing-toggle-wrap { display: flex; justify-content: center; margin-top: 16px; }
        .pricing-toggle { display: flex; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); overflow: hidden; }
        .pricing-toggle button { padding: 10px 24px; font-size: 0.95rem; font-weight: 600; border: none; background: transparent; color: var(--text-secondary); cursor: pointer; font-family: inherit; transition: all 0.3s; position: relative; }
        .pricing-toggle button.active { background: var(--accent-gradient); color: #fff; }
        .pricing-toggle .save-badge { font-size: 0.75rem; font-weight: 700; background: #15803d; color: #fff; padding: 2px 8px; border-radius: 10px; margin-left: 8px; }

        .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }

        .plan-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 40px 32px; display: flex; flex-direction: column; transition: all 0.4s; position: relative; overflow: hidden; }
        .plan-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--accent-gradient); opacity: 0; transition: opacity 0.3s; }
        .plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
        .plan-card:hover::before { opacity: 1; }
        .plan-card.featured { border-color: var(--accent-secondary); }
        .plan-card.featured::before { opacity: 1; }
        .plan-badge { position: absolute; top: 16px; right: 16px; background: var(--accent-gradient); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.05em; }

        .plan-name { font-size: 1.15rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
        .plan-desc { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.5; }

        .plan-price { margin-bottom: 28px; }
        .plan-price .price-amount { font-size: 2.5rem; font-weight: 800; color: var(--text-primary); line-height: 1; }
        .plan-price .price-period { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
        .plan-price .price-old { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; margin-right: 8px; }
        .plan-price .price-annual-info { text-align: center; font-size: 0.85rem; background: #15803d; color: #fff; font-weight: 700; padding: 4px 12px; border-radius: 35px; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }
		
		

        .plan-features { list-style: none; padding: 0; margin: 0 0 32px; flex-grow: 1; }
        .plan-features li { padding: 8px 0; font-size: 0.92rem; color: var(--text-secondary); display: flex; align-items: flex-start; gap: 10px; line-height: 1.45; }
        .plan-features li .icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
        .plan-features li .icon.check { color: var(--accent-secondary); }
        .plan-features li .icon.x { color: #dc2626; opacity: 1; }
        .plan-features li.disabled { opacity: 1; color: var(--text-muted); text-decoration: line-through; }

        .plan-cta { margin-top: auto; }
        .plan-cta .btn { width: 100%; text-align: center; justify-content: center; }

        /* Related */
        .sec-related { padding: 80px 0; position: relative; z-index: 1; }
        .related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
        .related-card { text-align: center; padding: 32px 20px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); transition: all 0.3s; text-decoration: none; color: inherit; display: block; }
        .related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
        .related-card-icon { width: 56px; height: 56px; background: var(--accent-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; border: 1px solid var(--border-accent); color: var(--accent-secondary); }
        .related-card-icon .icon { width: 26px; height: 26px; stroke-width: 1.5; }
        .related-card h3 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
        .related-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.55; }

        /* FAQ */
        .sec-faq { padding: 80px 0; background: var(--bg-secondary); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); position: relative; z-index: 1; }
        .faq-container { max-width: 780px; margin: 48px auto 0; }
        .faq-item { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; transition: box-shadow 0.3s; }
        .faq-item:hover { box-shadow: var(--shadow-sm); }
        .faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-size: 1.05rem; font-weight: 600; color: var(--text-primary); gap: 16px; user-select: none; }
        .faq-question:hover { color: var(--accent-secondary); }
        .faq-toggle { width: 24px; height: 24px; flex-shrink: 0; transition: transform 0.3s; color: var(--text-muted); }
        .faq-item.active .faq-toggle { transform: rotate(180deg); color: var(--accent-secondary); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
        .faq-item.active .faq-answer { max-height: 400px; }
        .faq-answer-inner { padding: 0 24px 24px; font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }
        .faq-answer-inner a { color: var(--accent-secondary); text-decoration: underline; }

        /* Comparison Table - Desktop */
        .ct-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -8px; padding: 0 8px; }
        .ct { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
        .ct thead th { padding: 16px 12px; text-align: center; font-weight: 700; font-size: 0.95rem; color: var(--text-primary); border-bottom: 2px solid var(--border-color); background: var(--bg-card); position: sticky; top: 0; z-index: 2; }
        .ct .ct-feature { width: 38%; text-align: left; }
        .ct .ct-plan { width: 20.66%; }
        .ct .ct-highlight { background: var(--accent-soft) !important; }
        .ct .ct-head-price { font-size: 0.8rem; font-weight: 600; color: var(--accent-secondary); display: block; margin-top: 4px; }
        .ct tbody td { padding: 12px; border-bottom: 1px solid var(--border-color); color: var(--text-secondary); vertical-align: middle; }
        .ct tbody td:first-child { text-align: left; color: var(--text-primary); font-size: 0.88rem; }
        .ct .ct-val { text-align: center; font-size: 0.88rem; font-weight: 500; }
        .ct .ct-hl { background: rgba(59,130,246,0.03); }
        .ct .ct-section td { background: rgba(59,130,246,0.03); font-weight: 700; font-size: 0.85rem; color: var(--accent-secondary); text-transform: uppercase; letter-spacing: 0.06em; padding: 14px 12px; border-bottom: 2px solid var(--border-color); }
        .ct tbody tr:hover td { background: rgba(59,130,246,0.04); }
        .ct tbody tr.ct-section:hover td { background: var(--bg-secondary); }
        .ct-yes { width: 20px; height: 20px; stroke: var(--accent-secondary); stroke-width: 2.5; fill: none; display: inline-block; vertical-align: middle; }
        .ct-no { width: 18px; height: 18px; stroke: var(--text-muted); stroke-width: 2; fill: none; display: inline-block; vertical-align: middle; opacity: 0.3; }

        /* Responsive */
        @media (max-width: 1024px) {
            .threats-grid, .scope-grid, .benefits-grid { grid-template-columns: repeat(2, 1fr); }
            .pricing-grid { grid-template-columns: repeat(2, 1fr); }
            .pricing-grid .plan-card:last-child { grid-column: 1 / -1; max-width: 480px; justify-self: center; width: 100%; }
            .related-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .threats-grid, .scope-grid, .pricing-grid, .related-grid { grid-template-columns: 1fr; }
            .pricing-grid .plan-card:last-child { max-width: 100%; }
            .plan-card { padding: 32px 24px; }

            /* Comparison table - mobile stacked layout */
            .ct-wrap { margin: 0; padding: 0; overflow: visible; }
            .ct { min-width: 0; }
            .ct thead { display: none; }
            .ct tbody { display: flex; flex-direction: column; gap: 6px; }
            .ct tbody tr { display: flex; flex-wrap: wrap; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); overflow: hidden; }
            .ct tbody tr.ct-section { border: none; background: transparent; border-radius: 0; margin-top: 16px; }
            .ct tbody tr.ct-section td { background: transparent !important; border: none; padding: 10px 4px 4px; font-size: 0.8rem; width: 100%; }
            .ct tbody tr:not(.ct-section) td:first-child { width: 100%; border-bottom: 1px solid var(--border-color); padding: 10px 14px; font-size: 0.84rem; font-weight: 600; line-height: 1.35; }
            .ct tbody tr:not(.ct-section) td.ct-val { width: 33.333%; border-bottom: none; padding: 10px 4px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; min-height: 52px; }
            /* Plan labels via data-plan attribute on mobile */
            .ct tbody tr:not(.ct-section) td.ct-val::before { content: attr(data-plan); display: block; font-size: 0.65rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; line-height: 1; }
            .ct tbody tr:not(.ct-section) td.ct-hl { background: rgba(59,130,246,0.05); }
            .ct tbody tr:not(.ct-section):hover td { background: var(--bg-card); }
            .ct tbody tr:not(.ct-section) td.ct-hl:hover { background: rgba(59,130,246,0.05); }
        }

/* --- dedykowane-wtyczki-wordpress.html --- */
/* === Subpage: Dedykowane wtyczki WordPress === */

        /* Intro */
        .sec-intro { padding: 80px 0; position: relative; z-index: 1; }
        .sec-intro .container { max-width: 820px; }
        .sec-intro-text { font-size: 1.15rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; }
        .sec-intro-text strong { color: var(--text-primary); }

        /* Capabilities grid */
        .sec-capabilities { padding: 80px 0; background: var(--bg-secondary); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); position: relative; z-index: 1; }
        .cap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
        .cap-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 32px 24px; transition: all 0.4s; position: relative; overflow: hidden; text-align: center; }
        .cap-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent-gradient); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
        .cap-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
        .cap-card:hover::before { transform: scaleX(1); }
        .cap-icon { width: 56px; height: 56px; background: var(--accent-soft); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; border: 1px solid var(--border-accent); color: var(--accent-secondary); }
        .cap-icon .icon { width: 26px; height: 26px; stroke-width: 1.5; }
        .cap-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
        .cap-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.55; }

        /* Advantages — now uses .benefits-grid / .benefit-card / .benefit-icon (green) */
        .sec-advantages { padding: 80px 0; position: relative; z-index: 1; }

        /* Process */
        .sec-process { padding: 80px 0; background: var(--bg-secondary); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); position: relative; z-index: 1; }
        .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; counter-reset: step; }
        .process-step { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 32px 24px; position: relative; text-align: center; transition: all 0.4s; }
        .process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
        .process-step::before { counter-increment: step; content: counter(step); display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: var(--accent-gradient); color: #fff; border-radius: 50%; font-size: 1.1rem; font-weight: 800; margin: 0 auto 18px; }
        .process-step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
        .process-step p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }

        /* Pricing */
        .sec-pricing { padding: 80px 0; position: relative; z-index: 1; }
        .pricing-box { max-width: 760px; margin: 48px auto 0; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 48px; text-align: center; position: relative; overflow: hidden; }
        .pricing-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--accent-gradient); }
        .pricing-icon { width: 72px; height: 72px; background: var(--accent-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; border: 1px solid var(--border-accent); color: var(--accent-secondary); }
        .pricing-icon .icon { width: 36px; height: 36px; stroke-width: 1.5; }
        .pricing-box h3 { font-size: 1.4rem; font-weight: 700; color: var(--text-primary); margin-bottom: 16px; }
        .pricing-box p { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }
        .pricing-box p:last-of-type { margin-bottom: 32px; }
        .pricing-features { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-bottom: 36px; padding-top: 24px; border-top: 1px solid var(--border-color); }
        .pricing-feature { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; color: var(--text-secondary); font-weight: 500; }
        .pricing-feature .icon { width: 18px; height: 18px; color: var(--accent-secondary); }
        @media (max-width: 768px) {
            .pricing-box { padding: 32px 24px; }
            .pricing-features { flex-direction: column; align-items: center; gap: 16px; }
        }

        /* FAQ */
        .sec-faq { padding: 80px 0; position: relative; z-index: 1; }
        .faq-container { max-width: 780px; margin: 48px auto 0; }
        .faq-item { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; transition: box-shadow 0.3s; }
        .faq-item:hover { box-shadow: var(--shadow-sm); }
        .faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; font-size: 1.05rem; font-weight: 600; color: var(--text-primary); gap: 16px; user-select: none; }
        .faq-question:hover { color: var(--accent-secondary); }
        .faq-toggle { width: 24px; height: 24px; flex-shrink: 0; transition: transform 0.3s; color: var(--text-muted); }
        .faq-item.active .faq-toggle { transform: rotate(180deg); color: var(--accent-secondary); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
        .faq-item.active .faq-answer { max-height: 400px; }
        .faq-answer-inner { padding: 0 24px 24px; font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }
        .faq-answer-inner a { color: var(--accent-secondary); text-decoration: underline; }

        /* Related */
        .sec-related { padding: 80px 0; background: var(--bg-secondary); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); position: relative; z-index: 1; }
        .related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
        .related-card { text-align: center; padding: 32px 20px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); transition: all 0.3s; text-decoration: none; color: inherit; display: block; }
        .related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
        .related-card-icon { width: 56px; height: 56px; background: var(--accent-soft); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; border: 1px solid var(--border-accent); color: var(--accent-secondary); }
        .related-card-icon .icon { width: 26px; height: 26px; stroke-width: 1.5; }
        .related-card h4 { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
        .related-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.55; }

        /* Responsive */
        @media (max-width: 1024px) {
            .cap-grid { grid-template-columns: repeat(2, 1fr); }
            .process-steps { grid-template-columns: repeat(2, 1fr); }
            .related-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .cap-grid, .process-steps, .related-grid { grid-template-columns: 1fr; }
        }

/* --- dostosowanie-stron-do-ai.html --- */
/* === Subpage: Dostosowanie Stron do AI === */

        .ai-intro {
            padding: 80px 0;
            position: relative;
            z-index: 1;
        }

        .ai-intro .container {
            max-width: 820px;
        }

        .ai-intro-text {
            font-size: 1.15rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .ai-intro-text strong {
            color: var(--text-primary);
        }

        .ai-intro-highlight {
            background: var(--accent-soft);
            border-left: 4px solid var(--accent-secondary);
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            padding: 24px 28px;
            margin: 32px 0;
            font-size: 1.05rem;
            color: var(--text-primary);
            line-height: 1.7;
        }

        /* Threats / Why it matters */
        .ai-threats {
            padding: 80px 0;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            position: relative;
            z-index: 1;
        }

        /* .threat-card, .threat-icon, .threats-grid — reused from bezpieczenstwo-wordpress section above */

        /* Benefits */
        .ai-benefits {
            padding: 80px 0;
            position: relative;
            z-index: 1;
        }

        /* .benefit-card, .benefit-icon, .benefits-grid — reused from bezpieczenstwo-wordpress section above */
        /* All benefit sections now use unified green styling */

        /* Process / How we work */
        .ai-process {
            padding: 80px 0;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            position: relative;
            z-index: 1;
        }

        .ai-process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 48px;
        }

        .ai-step {
            text-align: center;
            padding: 32px 20px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            transition: all 0.3s;
        }

        .ai-step:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .ai-step-num {
            width: 48px;
            height: 48px;
            background: var(--accent-gradient);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.2rem;
            margin: 0 auto 20px;
        }

        .ai-step h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .ai-step p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Pricing */
        .ai-pricing {
            padding: 80px 0;
            position: relative;
            z-index: 1;
        }

        /* .pricing-box, .pricing-icon, .pricing-features — reused from dedykowane-wtyczki section above */

        /* Responsive — AI page specific */
        @media (max-width: 1024px) {
            .ai-process-steps { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .ai-process-steps { grid-template-columns: 1fr; }
        }

/* --- polityka-prywatnosci.html --- */
/* === Subpage: Polityka prywatności === */
        .pp-content { max-width: 820px; margin: 0 auto; padding: 80px 0 60px; position: relative; z-index: 1; }
        .pp-content h2 { font-size: 1.35rem; font-weight: 700; color: var(--text-primary); margin: 48px 0 16px; padding-top: 16px; border-top: 1px solid var(--border-color); }
        .pp-content h2:first-of-type { border-top: none; margin-top: 32px; }
        .pp-content h3 { font-size: 1.05rem; font-weight: 600; color: var(--text-primary); margin: 28px 0 10px; }
        .pp-content p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 14px; }
        .pp-content ul { margin: 8px 0 18px 20px; padding: 0; }
        .pp-content li { font-size: 0.93rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 6px; }
        .pp-content strong { color: var(--text-primary); }
        .pp-content a { color: var(--accent-secondary); text-decoration: underline; text-underline-offset: 2px; }
        .pp-content a:hover { text-decoration: none; }

        /* TOC card */
        .pp-toc { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 28px 32px; margin-bottom: 16px; }
        .pp-toc strong { font-size: 1rem; display: block; margin-bottom: 12px; color: var(--text-primary); }
        .pp-toc ul { margin: 0; padding: 0; list-style: none; columns: 2; column-gap: 32px; }
        .pp-toc li { margin-bottom: 8px; break-inside: avoid; }
        .pp-toc a { font-size: 0.9rem; color: var(--accent-secondary); text-decoration: none; transition: color 0.2s; }
        .pp-toc a:hover { text-decoration: underline; }

        /* Admin card */
        .pp-admin-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 24px 28px; margin: 16px 0 24px; }
        .pp-admin-card p { margin-bottom: 10px; }
        .pp-admin-card p:last-child { margin-bottom: 0; }

        /* Table */
        .pp-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 16px 0 24px; border-radius: var(--radius-lg); border: 1px solid var(--border-color); }
        .pp-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; background: var(--bg-card); }
        .pp-table th { background: var(--bg-secondary); font-weight: 700; font-size: 0.85rem; color: var(--text-primary); text-align: left; padding: 14px 16px; border-bottom: 2px solid var(--border-color); }
        .pp-table td { padding: 12px 16px; border-bottom: 1px solid var(--border-color); color: var(--text-secondary); vertical-align: top; line-height: 1.6; }
        .pp-table tr:last-child td { border-bottom: none; }
        .pp-table tr:hover td { background: rgba(59,130,246,0.03); }

        /* Version badge */
        .pp-version { display: inline-block; font-size: 0.82rem; color: var(--text-muted); background: var(--bg-secondary); border: 1px solid var(--border-color); padding: 4px 14px; border-radius: 20px; margin-top: 8px; }

        /* Footer note */
        .pp-footer-note { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border-color); font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

        @media (max-width: 768px) {
            .pp-toc ul { columns: 1; }
            .pp-content { padding: 60px 0 40px; }
            .pp-admin-card { padding: 20px; }

            /* Mobile table: stacked cards */
            .pp-table-wrap { border: none; border-radius: 0; overflow: visible; }
            .pp-table, .pp-table thead, .pp-table tbody, .pp-table th, .pp-table td, .pp-table tr { display: block; }
            .pp-table thead { display: none; }
            .pp-table tr { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); margin-bottom: 10px; padding: 14px 16px; }
            .pp-table td { border: none; padding: 4px 0; font-size: 0.88rem; }
            .pp-table td::before { content: attr(data-label); display: block; font-weight: 700; font-size: 0.78rem; color: var(--accent-secondary); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 2px; }
            .pp-table td:first-child { font-weight: 600; color: var(--text-primary); padding-bottom: 8px; border-bottom: 1px solid var(--border-color); margin-bottom: 8px; }
        }

/* --- strony-internetowe.html --- */
/* === Subpage: Strony internetowe === */

        /* Intro */
        .web-intro {
            padding: 80px 0;
            position: relative;
            z-index: 1;
        }
        .web-intro .container { max-width: 820px; }
        .web-intro-text {
            font-size: 1.15rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 20px;
        }
        .web-intro-text strong { color: var(--text-primary); }

        /* Types of websites */
        .web-types {
            padding: 80px 0;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            position: relative;
            z-index: 1;
        }
        .types-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 48px;
        }
        .type-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 36px 28px;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }
        .type-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: var(--accent-gradient);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s;
        }
        .type-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
        .type-card:hover::before { transform: scaleX(1); }
        .type-icon {
            width: 56px; height: 56px;
            background: var(--accent-soft);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            border: 1px solid var(--border-accent);
            color: var(--accent-secondary);
        }
        .type-icon .icon { width: 28px; height: 28px; stroke-width: 1.5; }
        .type-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text-primary);
        }
        .type-card p {
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.65;
        }

        /* What you get / Features */
        .web-features {
            padding: 80px 0;
            position: relative;
            z-index: 1;
        }
        /* .features-grid, .feature-item, .feature-icon — removed, replaced by .benefits-grid / .benefit-card / .benefit-icon (green) */

        /* Related services */
        .web-related {
            padding: 80px 0;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            position: relative;
            z-index: 1;
        }
        .related-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 48px;
        }
        .related-card {
            text-align: center;
            padding: 32px 20px;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            transition: all 0.3s;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        .related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
        .related-card-icon {
            width: 56px; height: 56px;
            background: var(--accent-soft);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            border: 1px solid var(--border-accent);
            color: var(--accent-secondary);
        }
        .related-card-icon .icon { width: 26px; height: 26px; stroke-width: 1.5; }
        .related-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }
        .related-card p {
            font-size: 0.85rem;
            color: var(--text-secondary);
            line-height: 1.55;
        }

        /* Pricing (reuse from AI page) */
        .web-pricing {
            padding: 80px 0;
            position: relative;
            z-index: 1;
        }
        .pricing-box {
            max-width: 760px;
            margin: 48px auto 0;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 48px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .pricing-box::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: var(--accent-gradient);
        }
        .pricing-icon {
            width: 72px; height: 72px;
            background: var(--accent-soft);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            border: 1px solid var(--border-accent);
            color: var(--accent-secondary);
        }
        .pricing-icon .icon { width: 36px; height: 36px; stroke-width: 1.5; }
        .pricing-box h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 16px;
        }
        .pricing-box p {
            font-size: 1.05rem;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 12px;
        }
        .pricing-box p:last-of-type { margin-bottom: 32px; }
        .pricing-features {
            display: flex;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
            margin-bottom: 36px;
            padding-top: 24px;
            border-top: 1px solid var(--border-color);
        }
        .pricing-feature {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            color: var(--text-secondary);
            font-weight: 500;
        }
        .pricing-feature .icon {
            width: 18px; height: 18px;
            color: var(--accent-secondary);
        }
        .pricing-range {
            display: flex;
            justify-content: center;
            gap: 48px;
            margin: 28px 0 32px;
        }
        .pricing-range-item {
            text-align: center;
        }
        .pricing-range-item .range-label {
            font-size: 0.85rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            font-weight: 600;
            margin-bottom: 4px;
        }
        .pricing-range-item .range-value {
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--text-primary);
        }
        .pricing-range-divider {
            display: flex;
            align-items: center;
            font-size: 1.5rem;
            color: var(--text-muted);
            font-weight: 300;
        }

        /* FAQ */
        .web-faq {
            padding: 80px 0;
            background: var(--bg-secondary);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            position: relative;
            z-index: 1;
        }
        .faq-container {
            max-width: 780px;
            margin: 48px auto 0;
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            overflow: hidden;
            transition: box-shadow 0.3s;
        }
        .faq-item:hover { box-shadow: var(--shadow-sm); }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            cursor: pointer;
            font-size: 1.05rem;
            font-weight: 600;
            color: var(--text-primary);
            gap: 16px;
            user-select: none;
        }
        .faq-question:hover { color: var(--accent-secondary); }
        .faq-toggle {
            width: 24px; height: 24px;
            flex-shrink: 0;
            transition: transform 0.3s;
            color: var(--text-muted);
        }
        .faq-item.active .faq-toggle { transform: rotate(180deg); color: var(--accent-secondary); }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
        }
        .faq-item.active .faq-answer {
            max-height: 400px;
        }
        .faq-answer-inner {
            padding: 0 24px 24px;
            font-size: 0.95rem;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        .faq-answer-inner a {
            color: var(--accent-secondary);
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .types-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .related-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .types-grid,
            .related-grid {
                grid-template-columns: 1fr;
            }
            .pricing-box { padding: 32px 24px; }
            .pricing-features {
                flex-direction: column;
                align-items: center;
                gap: 16px;
            }
            .pricing-range {
                flex-direction: column;
                gap: 24px;
            }
        }

@supports(selector(.process-step:has(.process-num))) {
  .process-step:has(.process-num)::before,
  .process-step:has(.process-num)::after {
    content: none !important;
    display: none !important;
  }
}



/* ==============================
   Contact section: AJAX lead form
   Inside .cta-box (gradient bg)
   ============================== */
.lead-form-ajax {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
  text-align: left;
}

.lead-form-ajax .field {
  display: grid;
  gap: 6px;
}

.lead-form-ajax label {
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.01em;
}

.lead-form-ajax input[type="text"],
.lead-form-ajax input[type="tel"] {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.lead-form-ajax input[type="text"]:focus,
.lead-form-ajax input[type="tel"]:focus {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
  background: #fff;
}

.lead-form-ajax input[type="text"]::placeholder,
.lead-form-ajax input[type="tel"]::placeholder {
  color: var(--text-muted);
}

.lead-form-ajax .consents {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.lead-form-ajax .consents label {
  font-weight: 400;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  line-height: 1.45;
}

.lead-form-ajax .consents label a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lead-form-ajax .consents label a:hover {
  text-decoration: none;
}

.lead-form-ajax .consents input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: #fff;
  cursor: pointer;
}

.lead-form-ajax .form-actions {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.lead-form-ajax .form-actions .btn {
  background: #fff;
  color: var(--accent-primary);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.lead-form-ajax .form-actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.lead-form-ajax .form-msg {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: center;
}

.lead-form-ajax .form-msg--ok {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.lead-form-ajax .form-msg--err {
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fecaca;
}

.lead-form-ajax .input-error {
  border-color: #f87171 !important;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.25) !important;
}


/* ============================================
   FOOTER V2 — gradient bg matching .cta-box
   ============================================ */

.footer-v2 {
    background: var(--accent-gradient);
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.footer-v2::before {
    content: '';
    position: absolute;
    top: -25%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.footer-v2::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -8%;
    width: 380px;
    height: 380px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 68px 0 52px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    padding-right: 16px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 18px;
}

.footer-logo img {
    height: 34px;
}

.footer-logo strong {
    font-weight: 800;
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 22px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 17px;
    height: 17px;
}

.footer-heading {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 11px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.footer-nav a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-address {
    font-style: normal;
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.6);
}

.footer-address strong {
    color: #fff;
    font-weight: 600;
}

.footer-tax {
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 22px 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-copy strong {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
}

.footer-ecosystem {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.82rem;
}

.footer-ecosystem span {
    color: rgba(255, 255, 255, 0.35);
}

.footer-ecosystem a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: 4px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    transition: all 0.2s;
    font-weight: 500;
}

.footer-ecosystem a:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
    }
    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 48px 0 36px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-ecosystem {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ══════════════════════════════════════════
   WCAG 2.2 AA — Accessibility enhancements
   ══════════════════════════════════════════ */

/* Skip link (2.4.1 Bypass Blocks) */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 100000;
    padding: 12px 24px;
    background: var(--accent-primary);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    text-decoration: none;
    opacity: 0;
    transition: top 0.2s, opacity 0.2s;
}
.skip-link:focus {
    top: 0;
    opacity: 1;
    outline: 3px solid var(--accent-light);
    outline-offset: 2px;
}

/* Focus visible (2.4.7 / 2.4.13) */
:focus-visible {
    outline: 2px solid var(--accent-secondary);
    outline-offset: 2px;
}

.btn:focus-visible {
    outline: 2px solid var(--accent-secondary);
    outline-offset: 3px;
    box-shadow: 0 0 0 5px rgba(14, 116, 144, 0.15);
}

.nav-links a:focus-visible,
.nav-cta:focus-visible,
.mobile-menu-links a:focus-visible {
    outline: 2px solid var(--accent-secondary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.contact-card:focus-visible {
    outline: 2px solid var(--accent-secondary);
    outline-offset: 3px;
}

.footer-nav a:focus-visible,
.footer-social a:focus-visible,
.footer-ecosystem a:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
    border-radius: 3px;
}

.back-to-top:focus-visible {
    outline: 2px solid var(--accent-secondary);
    outline-offset: 3px;
}

.lead-form-ajax input[type="text"]:focus-visible,
.lead-form-ajax input[type="tel"]:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 1px;
}

/* Mobile toggle reset for <button> (no default button styles) */
button.mobile-toggle {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}
button.mobile-toggle:focus-visible {
    outline: 2px solid var(--accent-secondary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* FAQ button reset (4.1.2 Name/Role/Value) */
button.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
button.faq-question:focus-visible {
    outline: 2px solid var(--accent-secondary);
    outline-offset: -2px;
    border-radius: var(--radius-md);
}

/* Checkbox min target size 24×24 (2.5.8) */
.lead-form-ajax input[type="checkbox"] {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--accent-secondary);
}

.lead-form-ajax .consents label {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Footer nav link min touch target (2.5.8) */
.footer-nav a {
    display: inline-block;
    min-height: 44px;
    line-height: 44px;
}

/* prefers-reduced-motion (2.3.3) */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .fade-up {
        opacity: 1 !important;
        transform: none !important;
    }

    .bg-blob,
    .bg-pattern {
        animation: none !important;
    }

    .skip-link {
        transition: none;
    }
}


/* Accessibility: honeypot field should be hidden visually but ignored by assistive tech */
.hp-field{position:absolute!important;left:-10000px!important;top:auto!important;width:1px!important;height:1px!important;overflow:hidden!important;}
