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

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

    --green-50: #ecfdf5;
    --green-100: #d1fae5;
    --green-400: #34d399;
    --green-500: #10b981;
    --green-600: #059669;
    --green-700: #047857;

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

    --white: #ffffff;

    --container-max: 1280px;
    --section-padding: 100px 0;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.10);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    --shadow-2xl: 0 30px 80px rgba(0,0,0,0.2);
    --shadow-blue: 0 10px 40px rgba(59, 130, 246, 0.25);
    --shadow-green: 0 10px 40px rgba(16, 185, 129, 0.25);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;

    --font-main: 'Heebo', 'Assistant', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    font-family: var(--font-main);
    font-weight: 400;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    direction: rtl;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

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

.text-center { text-align: center; }
.text-white { color: white; }

/* ===================== Navbar ===================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 22px;
    color: var(--gray-900);
    transition: var(--transition);
}

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

.logo-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-700);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    letter-spacing: -0.5px;
}

.logo-accent {
    background: linear-gradient(135deg, var(--blue-600), var(--green-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-link {
    padding: 10px 16px;
    color: var(--gray-700);
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--blue-600);
    background: var(--blue-50);
}

.nav-link.active:not(.nav-cta) {
    color: var(--blue-600);
    background: var(--blue-50);
}

.nav-link.nav-cta {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: white;
    margin-right: 8px;
    padding: 10px 20px;
}

.nav-link.nav-cta:hover {
    background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
    box-shadow: var(--shadow-blue);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ===================== Buttons ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: white;
    box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    color: white;
    box-shadow: var(--shadow-green);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.btn-outline {
    background: white;
    color: var(--blue-600);
    border-color: var(--blue-600);
}

.btn-outline:hover {
    background: var(--blue-600);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
    background: white;
    color: var(--gray-900);
    border-color: white;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BD5A;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-large {
    padding: 18px 36px;
    font-size: 17px;
}

.btn-block { width: 100%; }

/* ===================== Common Hero Elements ===================== */
.hero-bg, .page-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: var(--blue-500);
    top: -100px;
    right: -100px;
}

.hero-orb-2 {
    width: 350px;
    height: 350px;
    background: var(--green-500);
    bottom: -50px;
    left: -100px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.05); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--green-700);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--green-500);
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--green-500);
    border-radius: 50%;
    opacity: 0.4;
    animation: pulse 2s ease-in-out infinite;
}

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

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

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

.gradient-text-light {
    background: linear-gradient(135deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===================== Hero Home (with network animation) ===================== */
.hero {
    position: relative;
    min-height: 90vh;
    padding: 130px 0 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 50%, #ecfdf5 100%);
}

.hero-home {
    min-height: 100vh;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 600px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.hero-cta-question {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 16px;
    font-weight: 500;
}

/* Hero Choice Cards */
.hero-choices {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 560px;
}

.choice-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    color: var(--gray-800);
    position: relative;
    overflow: hidden;
}

.choice-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--blue-500), var(--blue-700));
    transition: var(--transition);
}

.choice-business::before {
    background: linear-gradient(180deg, var(--green-500), var(--green-700));
}

.choice-card:hover {
    transform: translateX(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue-200, #bfdbfe);
}

.choice-business:hover {
    border-color: var(--green-100);
}

.choice-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--blue-50), var(--green-50));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue-600);
    transition: var(--transition);
}

.choice-business .choice-icon { color: var(--green-600); }

.choice-card:hover .choice-icon {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: white;
    transform: rotate(-5deg);
}

.choice-business:hover .choice-icon {
    background: linear-gradient(135deg, var(--green-500), var(--green-700));
}

.choice-icon svg { width: 28px; height: 28px; }

.choice-content { flex: 1; }

.choice-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.choice-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.choice-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.choice-arrow {
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: var(--transition);
    flex-shrink: 0;
}

.choice-card:hover .choice-arrow {
    background: linear-gradient(135deg, var(--blue-600), var(--green-500));
    color: white;
    transform: translateX(-4px);
}

.choice-arrow svg { width: 18px; height: 18px; }

/* ===================== Network Animation ===================== */
.hero-network {
    position: relative;
}

.network-svg {
    width: 100%;
    height: auto;
    max-width: 500px;
    margin: 0 auto;
    display: block;
}

.network-node {
    animation: nodeAppear 0.8s ease-out backwards;
    animation-delay: var(--delay, 0s);
    transform-origin: center;
}

.network-node circle:first-child {
    animation: pulse-node 3s ease-in-out infinite;
}

@keyframes nodeAppear {
    0% { opacity: 0; transform: scale(0); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes pulse-node {
    0%, 100% { filter: drop-shadow(0 0 0 rgba(59, 130, 246, 0)); }
    50% { filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.6)); }
}

.network-lines line {
    animation: drawLine 2s ease-out backwards;
}

@keyframes drawLine {
    0% { stroke-dasharray: 1000; stroke-dashoffset: 1000; }
    100% { stroke-dasharray: 1000; stroke-dashoffset: 0; }
}

.central-hub {
    animation: hubPulse 4s ease-in-out infinite;
    transform-origin: 200px 200px;
}

@keyframes hubPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.rotating-ring {
    animation: rotate 20s linear infinite;
    transform-origin: 200px 200px;
}

.rotating-ring-reverse {
    animation: rotate 30s linear infinite reverse;
    transform-origin: 200px 200px;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===================== Trust Bar ===================== */
.trust-bar {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 24px 0;
}

.trust-items {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--green-400);
}

/* ===================== Sections ===================== */
.section {
    padding: var(--section-padding);
    position: relative;
}

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

.section-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag-blue { background: var(--blue-50); color: var(--blue-700); }
.tag-green { background: var(--green-50); color: var(--green-700); }
.tag-green-solid { background: var(--green-500); color: white; }
.tag-white { background: rgba(255,255,255,0.15); color: white; backdrop-filter: blur(10px); }

.tag-blue-glass {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.tag-green-glass {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.section-subtitle-light {
    font-size: 1.125rem;
    color: var(--gray-400);
    line-height: 1.7;
}

/* ===================== About Home Section ===================== */
.section-about-home {
    background: white;
}

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

.about-text {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: linear-gradient(135deg, var(--blue-50), var(--green-50));
    border-radius: 12px;
    color: var(--gray-800);
    font-weight: 500;
    transition: var(--transition);
}

.highlight:hover { transform: translateX(-4px); }

.highlight-icon {
    width: 36px;
    height: 36px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-600);
    flex-shrink: 0;
}

.highlight-icon svg { width: 20px; height: 20px; }

/* About image stack */
.about-image { position: relative; }

.image-stack {
    position: relative;
}

.image-stack img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-2xl);
    object-fit: cover;
    aspect-ratio: 4/5;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatBadge 4s ease-in-out infinite;
}

.floating-badge strong {
    display: block;
    font-size: 14px;
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 2px;
}

.floating-badge span {
    font-size: 12px;
    color: var(--gray-600);
}

.floating-badge-1 {
    top: 30px;
    right: -30px;
}

.floating-badge-2 {
    bottom: 50px;
    left: -30px;
    animation-delay: 2s;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.badge-icon.green {
    background: linear-gradient(135deg, var(--green-500), var(--green-700));
}

.badge-icon svg { width: 22px; height: 22px; }

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

/* ===================== Services Preview Section ===================== */
.section-services-preview {
    background: linear-gradient(180deg, white 0%, var(--blue-50) 100%);
}

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

.preview-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    color: var(--gray-800);
    border: 1px solid var(--gray-100);
}

.preview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.preview-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.preview-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.4) 100%);
}

.preview-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--blue-600);
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
}

.preview-content {
    padding: 32px;
}

.preview-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.preview-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.preview-features {
    margin-bottom: 24px;
}

.preview-features li {
    padding: 8px 0;
    color: var(--gray-700);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--blue-500);
    border-radius: 50%;
    flex-shrink: 0;
}

.preview-business .preview-features li::before {
    background: var(--green-500);
}

.preview-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-600);
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
}

.preview-business .preview-cta { color: var(--green-600); }

.preview-card:hover .preview-cta {
    gap: 14px;
}

.preview-cta svg { width: 18px; height: 18px; }

/* ===================== Contact Quick ===================== */
.section-contact-quick {
    background: white;
    padding-bottom: 60px;
}

.contact-quick-card {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    border-radius: 32px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    color: white;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-quick-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 70%);
    border-radius: 50%;
}

.contact-quick-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent 70%);
    border-radius: 50%;
}

.cq-content { position: relative; z-index: 1; }

.cq-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cq-content p {
    color: var(--gray-300);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.cq-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cq-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-200);
    font-size: 15px;
}

a.cq-info-item:hover { color: white; }

.cq-info-item svg {
    width: 20px;
    height: 20px;
    color: var(--green-400);
    flex-shrink: 0;
}

.cq-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

/* ===================== Page Hero (sub pages) ===================== */
.page-hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.page-hero-private {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 50%, #ecfdf5 100%);
}

.page-hero-business {
    background: var(--gray-900);
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.page-hero-articles {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    padding: 140px 0 60px;
}

.page-hero-bg-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.page-hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.92) 0%, rgba(30, 58, 138, 0.85) 100%);
}

.page-hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-hero-business .page-hero-container {
    grid-template-columns: 1fr;
    max-width: 900px;
}

.articles-hero-container {
    grid-template-columns: 1fr;
    max-width: 900px;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.page-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-600);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 700px;
}

.page-hero-business .page-hero-subtitle {
    color: var(--gray-300);
}

.text-center .page-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* Page hero image (private page) */
.page-hero-image {
    position: relative;
}

.page-hero-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-2xl);
}

.image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: white;
    padding: 14px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-xl);
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-800);
}

.image-badge svg {
    width: 22px;
    height: 22px;
    color: var(--green-600);
}

/* Hero stats for business page */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.hero-stats-business { color: white; }

.stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue-400), var(--green-400));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    color: var(--gray-400);
    font-size: 14px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

.page-hero-scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    animation: bounce 2s ease-in-out infinite;
}

.page-hero-scroll-arrow svg { width: 32px; height: 32px; }

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

/* ===================== Services Grid ===================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: white;
    padding: 32px 28px;
    border-radius: 20px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    transition: var(--transition);
}

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

.service-card:hover::before {
    transform: translate(20%, -20%) scale(1.5);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg { width: 28px; height: 28px; }

.icon-blue {
    background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
    color: white;
    box-shadow: var(--shadow-blue);
}

.icon-green {
    background: linear-gradient(135deg, var(--green-500), var(--green-700));
    color: white;
    box-shadow: var(--shadow-green);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.6;
}

/* ===================== How It Works ===================== */
.section-how-works {
    background: linear-gradient(180deg, var(--blue-50) 0%, white 100%);
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.how-card {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

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

.how-number {
    position: absolute;
    top: -20px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue-600), var(--green-500));
    color: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    box-shadow: var(--shadow-blue);
}

.how-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--blue-50), var(--green-50));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--blue-600);
}

.how-icon svg { width: 36px; height: 36px; }

.how-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.how-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ===================== Pricing Box ===================== */
.section-pricing {
    background: white;
}

.pricing-box {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    color: white;
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 70%);
    border-radius: 50%;
}

.pricing-box::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent 70%);
    border-radius: 50%;
}

.pricing-header {
    text-align: center;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.pricing-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-header p {
    color: var(--gray-400);
}

.pricing-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.price-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 24px;
    border-radius: 16px;
    transition: var(--transition);
}

.price-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-4px);
    border-color: var(--blue-500);
}

.price-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue-600), var(--green-600));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.price-icon svg { width: 24px; height: 24px; color: white; }

.price-info { flex: 1; }

.price-title {
    font-weight: 600;
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.price-desc {
    color: var(--gray-400);
    font-size: 14px;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green-400);
    white-space: nowrap;
}

.price-amount span {
    font-size: 1rem;
    color: var(--gray-400);
    margin-right: 2px;
}

/* ===================== Why Private Section ===================== */
.section-why-private {
    background: linear-gradient(180deg, white 0%, var(--green-50) 100%);
}

.why-private-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.why-private-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-2xl);
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 28px;
}

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

.why-list-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--blue-50), var(--green-50));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
    flex-shrink: 0;
}

.why-list-icon svg { width: 24px; height: 24px; }

.why-list-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.why-list-item p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 15px;
}

/* ===================== CTA Banner (private contact) ===================== */
.section-cta-private {
    background: white;
}

.cta-banner-large {
    background: linear-gradient(135deg, var(--blue-600) 0%, var(--green-600) 100%);
    border-radius: 32px;
    padding: 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-banner-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.cta-banner-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 24px;
    opacity: 0.95;
}

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

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: white;
}

.cta-contact-item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

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

/* ===================== Business About ===================== */
.section-business-about {
    background: white;
}

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

.biz-about-image {
    position: relative;
    padding-bottom: 60px;
}

.biz-image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.biz-image-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.biz-image-small {
    position: absolute;
    bottom: 0;
    left: -30px;
    width: 60%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid white;
}

.biz-image-small img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.biz-image-badge {
    position: absolute;
    top: 30px;
    left: -20px;
    background: white;
    padding: 16px 22px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: floatBadge 4s ease-in-out infinite;
}

.biz-badge-num {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue-600), var(--green-500));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.biz-badge-text {
    font-size: 13px;
    color: var(--gray-700);
    font-weight: 600;
    line-height: 1.3;
}

.biz-about-text {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 18px;
}

.biz-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 28px;
}

.biz-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-800);
    font-weight: 500;
    font-size: 14px;
}

.biz-feature-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.biz-feature-icon svg { width: 16px; height: 16px; }

/* ===================== Business Services Featured ===================== */
.section-business-services {
    background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
}

.featured-services {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 80px;
}

.featured-service {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.featured-service.reverse {
    direction: ltr;
}

.featured-service.reverse > * {
    direction: rtl;
}

.featured-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 360px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.featured-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--green-50);
    color: var(--green-700);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.featured-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 14px;
    line-height: 1.3;
}

.featured-content p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.grid-subtitle {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 32px;
}

.business-services {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.biz-card {
    background: white;
    padding: 32px 28px;
    border-radius: 20px;
    border: 1px solid var(--gray-100);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.biz-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-600), var(--green-500));
    transition: var(--transition);
}

.biz-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-100);
}

.biz-card:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

.biz-card-number {
    position: absolute;
    top: 24px;
    left: 28px;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
    transition: var(--transition);
}

.biz-card:hover .biz-card-number { color: var(--blue-50); }

.biz-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--blue-50), var(--green-50));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-600);
    margin-bottom: 20px;
    transition: var(--transition);
}

.biz-card:hover .biz-card-icon {
    background: linear-gradient(135deg, var(--blue-600), var(--green-600));
    color: white;
    transform: scale(1.05);
}

.biz-card-icon svg { width: 26px; height: 26px; }

.biz-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.biz-card p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.65;
}

/* ===================== Industries Section ===================== */
.section-industries {
    background: white;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.industry-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

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

.industry-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.industry-card:hover .industry-image img {
    transform: scale(1.08);
}

.industry-content {
    padding: 24px;
}

.industry-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.industry-content p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
}

/* ===================== Plans Section ===================== */
.section-plans {
    background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.plan-card {
    background: white;
    border: 2px solid var(--gray-100);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.plan-card-featured {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    color: white;
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.plan-card-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.plan-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--blue-50);
    color: var(--blue-700);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.plan-badge-featured {
    background: linear-gradient(135deg, var(--blue-500), var(--green-500));
    color: white;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.plan-card-featured .plan-name { color: white; }

.plan-desc {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.6;
    min-height: 44px;
}

.plan-card-featured .plan-desc { color: var(--gray-400); }

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gray-100);
}

.plan-card-featured .plan-price {
    border-bottom-color: rgba(255,255,255,0.1);
}

.price-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.plan-card-featured .price-number {
    background: linear-gradient(135deg, var(--blue-400), var(--green-400));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-custom { font-size: 1.75rem; }

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-700);
}

.plan-card-featured .price-currency { color: var(--gray-300); }

.price-period {
    font-size: 1rem;
    color: var(--gray-500);
    margin-right: 8px;
}

.plan-features {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray-700);
    font-size: 15px;
}

.plan-card-featured .plan-features li { color: var(--gray-300); }

.plan-features li svg {
    width: 18px;
    height: 18px;
    color: var(--green-500);
    flex-shrink: 0;
    margin-top: 3px;
}

.plan-card-featured .plan-features li svg { color: var(--green-400); }

/* ===================== Process Section ===================== */
.section-process {
    background: white;
}

.process-steps {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 28px 20px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

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

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue-600), var(--green-600));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-blue);
}

.step-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.6;
}

.step-connector {
    flex: 0 0 30px;
    align-self: center;
    height: 2px;
    background: linear-gradient(90deg, #93c5fd, #6ee7b7);
    margin-top: 24px;
}

/* ===================== Features Grid ===================== */
.section-why-business {
    background: linear-gradient(180deg, var(--green-50) 0%, white 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.feature-item {
    background: white;
    padding: 32px 28px;
    border-radius: 20px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-100);
}

.feature-icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue-50), var(--green-50));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--blue-600);
    transition: var(--transition);
}

.feature-item:hover .feature-icon-wrap {
    background: linear-gradient(135deg, var(--blue-600), var(--green-600));
    color: white;
    transform: rotate(-5deg) scale(1.05);
}

.feature-icon-wrap svg { width: 30px; height: 30px; }

.feature-item h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.65;
}

/* ===================== Articles Preview & Grid ===================== */
.section-articles-preview {
    background: linear-gradient(180deg, white 0%, var(--blue-50) 100%);
}

.section-articles-list {
    background: white;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-bottom: 40px;
}

.articles-grid-full {
    margin-bottom: 60px;
}

.article-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    color: var(--gray-800);
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
}

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

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-image img {
    transform: scale(1.08);
}

.article-category {
    position: absolute;
    top: 16px;
    right: 16px;
    background: white;
    color: var(--blue-700);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.article-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-meta {
    display: flex;
    gap: 14px;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--gray-500);
}

.article-meta .article-category {
    position: static;
    box-shadow: none;
    background: var(--blue-50);
    padding: 2px 10px;
    font-size: 11px;
}

.article-meta span:not(.article-category) {
    display: flex;
    align-items: center;
}

.article-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-content p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.article-read {
    color: var(--blue-600);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.article-card:hover .article-read {
    color: var(--green-600);
}

.section-footer-link {
    text-align: center;
}

/* Featured article */
.article-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: 60px;
    border: 1px solid var(--gray-100);
}

.article-featured-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-featured-tag {
    position: absolute;
    top: 24px;
    right: 24px;
    background: linear-gradient(135deg, var(--blue-600), var(--green-500));
    color: white;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.article-featured-content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-featured-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 14px 0;
    line-height: 1.3;
}

.article-featured-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 1rem;
}

.article-featured-actions {
    display: flex;
    gap: 12px;
}

/* Articles filter */
.articles-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 36px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.filter-btn:hover {
    background: var(--blue-50);
    color: var(--blue-700);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--blue-600), var(--green-500));
    color: white;
    border-color: transparent;
}

/* Newsletter */
.newsletter-cta {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    color: white;
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.newsletter-cta::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 70%);
    border-radius: 50%;
}

.newsletter-content {
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blue-500), var(--green-500));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-icon svg { width: 30px; height: 30px; color: white; }

.newsletter-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.newsletter-content p {
    color: var(--gray-400);
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.newsletter-form input::placeholder { color: var(--gray-500); }

.newsletter-form input:focus {
    outline: none;
    border-color: var(--blue-500);
    background: rgba(255,255,255,0.12);
}

/* ===================== Contact Section ===================== */
.section-contact {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.section-contact .section-title { color: white; }

.contact-wrap {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.contact-form-wrap {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-300);
}

.required { color: var(--green-400); }

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 16px;
    color: white;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    direction: rtl;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-500);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.radio-option { cursor: pointer; }

.radio-option input {
    position: absolute;
    opacity: 0;
}

.radio-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: var(--transition);
    color: var(--gray-300);
}

.radio-card svg {
    width: 24px;
    height: 24px;
    color: var(--gray-400);
    transition: var(--transition);
}

.radio-option input:checked + .radio-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.2));
    border-color: var(--blue-500);
    color: white;
}

.radio-option input:checked + .radio-card svg { color: var(--blue-400); }

.form-success {
    display: none;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(52, 211, 153, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: var(--green-400);
    border-radius: 14px;
    font-weight: 500;
    animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-success.show { display: flex; }

.form-success svg { width: 24px; height: 24px; flex-shrink: 0; }

.success-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
    animation: successIconPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-icon svg { width: 24px; height: 24px; }

.success-text { display: flex; flex-direction: column; gap: 2px; }

.success-text strong {
    font-size: 15px;
    color: #34d399;
    font-weight: 700;
}

.success-text span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

@keyframes successPop {
    0% { opacity: 0; transform: scale(0.95) translateY(10px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes successIconPop {
    0% { transform: scale(0) rotate(-45deg); }
    60% { transform: scale(1.2) rotate(0); }
    100% { transform: scale(1) rotate(0); }
}

/* Form Error message */
.form-error {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
    border-radius: 12px;
    font-weight: 500;
    margin-top: 12px;
    animation: shake 0.4s ease;
}

.form-error.show { display: flex; }

.form-error svg {
    width: 22px;
    height: 22px;
    color: #ef4444;
    flex-shrink: 0;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
}

/* Form input validation state */
.contact-form input.invalid,
.contact-form textarea.invalid,
.p-form input.invalid,
.p-form textarea.invalid {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
    animation: shake 0.4s ease;
}

/* Hidden honeypot field — invisible to users */
.hidden-field {
    position: absolute !important;
    left: -10000px !important;
    top: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Loading button state with spinner */
.form-submit-btn {
    position: relative;
    overflow: hidden;
}

.form-submit-btn .btn-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.form-submit-btn .btn-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    font-weight: 600;
}

.form-submit-btn.loading {
    cursor: wait;
    pointer-events: none;
}

.form-submit-btn.loading .btn-text {
    opacity: 0;
    transform: translateY(-10px);
}

.form-submit-btn.loading .btn-loading {
    opacity: 1;
    transform: translateY(0);
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2.5px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spinnerRotate 0.7s linear infinite;
}

@keyframes spinnerRotate {
    to { transform: rotate(360deg); }
}

/* ===================== Private Page Contact Form ===================== */
.p-form-section {
    background: linear-gradient(180deg, white 0%, #fafbff 100%);
    position: relative;
    overflow: hidden;
}

.p-form-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.p-form-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.p-form-wrap {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.p-form {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow:
        0 30px 80px rgba(59, 130, 246, 0.12),
        0 0 0 1px rgba(59, 130, 246, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

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

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

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

.p-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.p-form .required {
    color: var(--green-600);
    font-weight: 700;
}

.p-form input[type="text"],
.p-form input[type="tel"],
.p-form input[type="email"],
.p-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: #fafbff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    color: var(--gray-900);
    transition: all 0.25s ease;
    direction: rtl;
}

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

.p-form input:focus,
.p-form textarea:focus {
    outline: none;
    border-color: var(--blue-500);
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.p-form textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}

.p-radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.p-radio-option { cursor: pointer; }

.p-radio-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.p-radio-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 20px;
    background: #fafbff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.25s ease;
    color: var(--gray-700);
    font-weight: 500;
}

.p-radio-card svg {
    width: 22px;
    height: 22px;
    color: var(--gray-500);
    transition: all 0.25s ease;
}

.p-radio-card:hover {
    border-color: var(--blue-300, #93c5fd);
    background: var(--blue-50);
}

.p-radio-option input:checked + .p-radio-card {
    background: linear-gradient(135deg, var(--blue-50), var(--green-50));
    border-color: var(--blue-500);
    color: var(--blue-700);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.15);
}

.p-radio-option input:checked + .p-radio-card svg {
    color: var(--blue-600);
}

.p-radio-option input:focus-visible + .p-radio-card {
    outline: 2px solid var(--blue-500);
    outline-offset: 2px;
}

.p-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: inherit;
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.3);
    margin-top: 8px;
}

.p-form-submit:hover:not(.loading) {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(59, 130, 246, 0.4);
}

.p-form-submit svg { width: 20px; height: 20px; }

.p-form-submit .btn-loading .spinner {
    border-color: rgba(255, 255, 255, 0.4);
    border-top-color: white;
}

/* Success/Error styling adapted to light background of private form */
.p-form .form-success {
    background: linear-gradient(135deg, var(--green-50), rgba(52, 211, 153, 0.08));
    border-color: var(--green-500);
    color: var(--green-700);
    margin-top: 16px;
}

.p-form .form-success .success-text strong { color: var(--green-700); }
.p-form .form-success .success-text span { color: var(--gray-600); }

.p-form .form-error {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

.p-form-or {
    text-align: center;
    margin-top: 20px;
    color: var(--gray-600);
    font-size: 14px;
}

.p-form-or a {
    color: var(--blue-600);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.p-form-or a:hover { color: var(--green-600); }

/* Newsletter form Netlify integration */
.newsletter-form { position: relative; }
.newsletter-success {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 8px;
}

/* Mobile responsive for forms */
@media (max-width: 768px) {
    .p-form { padding: 28px 20px; }
    .p-form .form-row { grid-template-columns: 1fr; }
    .p-radio-group { grid-template-columns: 1fr; }
    .p-form input,
    .p-form textarea { font-size: 16px; /* prevents iOS zoom */ }
    .p-form-submit { padding: 16px 20px; font-size: 15px; }
}

.contact-info { color: white; }

.contact-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-intro {
    color: var(--gray-400);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: var(--transition);
}

a.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-4px);
    border-color: var(--blue-500);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.contact-icon-green { background: #25D366; }

.contact-icon svg { width: 22px; height: 22px; }

.contact-label {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 2px;
}

.contact-value {
    font-weight: 600;
    color: white;
    font-size: 15px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo { color: white; margin-bottom: 16px; }

.footer-brand .logo-icon {
    filter: brightness(0) invert(1);
}

.footer-brand p {
    line-height: 1.7;
    max-width: 400px;
}

.footer-col h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-col a,
.footer-col span {
    display: block;
    padding: 6px 0;
    color: var(--gray-400);
    font-size: 14px;
    transition: var(--transition);
}

.footer-col a:hover { color: var(--blue-400); }

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
}

.footer-tagline { color: var(--gray-500); }

/* ===================== Floating WhatsApp ===================== */
.float-whatsapp {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulseWhatsapp 2s ease-in-out infinite;
}

.float-whatsapp:hover {
    transform: scale(1.1);
    background: #20BD5A;
}

.float-whatsapp svg { width: 30px; height: 30px; }

.float-whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--gray-900);
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.float-whatsapp:hover .float-whatsapp-tooltip {
    opacity: 1;
    right: calc(100% + 18px);
}

@keyframes pulseWhatsapp {
    0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.7), 0 0 0 15px rgba(37, 211, 102, 0); }
}

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

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

/* ===================== Responsive Design ===================== */
@media (max-width: 1024px) {
    .hero-container,
    .page-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .page-hero-business .page-hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content,
    .page-hero-content {
        max-width: 700px;
        margin: 0 auto;
    }

    .hero-buttons,
    .hero-stats,
    .hero-choices {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .hero-choices { align-items: center; }

    .choice-card { width: 100%; max-width: 560px; }

    .about-grid,
    .biz-about-grid,
    .why-private-grid,
    .featured-service,
    .preview-grid,
    .contact-wrap,
    .cta-banner-inner,
    .contact-quick-card,
    .article-featured,
    .newsletter-cta {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .featured-service.reverse {
        direction: rtl;
    }

    .biz-image-small,
    .biz-image-badge,
    .floating-badge {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        top: auto;
        margin: 16px auto 0;
        width: fit-content;
    }

    .biz-about-image {
        padding-bottom: 0;
    }

    .image-stack {
        max-width: 500px;
        margin: 0 auto;
    }

    .floating-badge-1,
    .floating-badge-2 {
        margin-top: 16px;
    }

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

    .plan-card-featured { transform: scale(1); }
    .plan-card-featured:hover { transform: translateY(-8px); }

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

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

    .nav-menu {
        position: fixed;
        top: 70px;
        right: 0;
        left: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        border-top: 1px solid var(--gray-100);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

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

    .nav-link {
        width: 100%;
        padding: 14px 16px;
        text-align: right;
    }

    .nav-link.nav-cta {
        margin-right: 0;
        margin-top: 8px;
        text-align: center;
        justify-content: center;
    }

    .mobile-toggle { display: flex; }

    .hero,
    .page-hero {
        padding: 110px 0 60px;
        min-height: auto;
    }

    .page-hero-business { min-height: auto; }

    .hero-buttons .btn,
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats { gap: 16px; }

    .stat-divider { display: none; }

    .pricing-box,
    .contact-form-wrap,
    .cta-banner-large,
    .contact-quick-card,
    .article-featured-content,
    .newsletter-cta {
        padding: 28px 20px;
    }

    .article-featured-content { padding: 32px 24px; }

    .price-item { flex-wrap: wrap; }
    .price-amount { width: 100%; text-align: center; }

    .process-steps {
        flex-direction: column;
        gap: 0;
    }

    .step-connector {
        width: 2px;
        height: 30px;
        margin: 8px auto;
    }

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

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

    .trust-items {
        gap: 20px;
        justify-content: center;
    }

    .trust-item { font-size: 13px; }

    .radio-group { grid-template-columns: 1fr; }

    .biz-features-list { grid-template-columns: 1fr; }

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

    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }

    .float-whatsapp {
        width: 56px;
        height: 56px;
        bottom: 20px;
        left: 20px;
    }

    .float-whatsapp svg { width: 28px; height: 28px; }
    .float-whatsapp-tooltip { display: none; }

    .article-featured-image { min-height: 240px; }
    .article-featured-image img { height: 240px; }

    .why-private-image img { height: 320px; }

    .page-hero-image img { height: 300px; }

    .biz-image-main img { height: 280px; }

    .featured-image { height: 240px; }
}

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

    .hero-title,
    .page-hero-title { font-size: 1.85rem; }

    .hero-subtitle,
    .page-hero-subtitle { font-size: 1rem; }

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

    .stat-number { font-size: 1.6rem; }

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

    .plan-card { padding: 32px 24px; }

    .price-number { font-size: 2.5rem; }

    .choice-card { padding: 16px; gap: 12px; }
    .choice-icon { width: 48px; height: 48px; }
    .choice-content h3 { font-size: 1.05rem; }

    .article-featured-content h2 { font-size: 1.5rem; }

    .cta-content h2 { font-size: 1.5rem; }

    .articles-filter { gap: 6px; }
    .filter-btn { padding: 8px 14px; font-size: 13px; }
}

/* ============================================================
   ============================================================
   PRIVATE PAGE V2 — PREMIUM REDESIGN
   ============================================================
   ============================================================ */

.page-private-v2 {
    background: #ffffff;
}

/* ===================== Premium Hero ===================== */
.p-hero {
    position: relative;
    min-height: 100vh;
    padding: 130px 0 80px;
    overflow: hidden;
    background:
        radial-gradient(ellipse at top right, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
    display: flex;
    align-items: center;
}

.p-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.p-hero-mesh {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 35%),
        radial-gradient(circle at 85% 60%, rgba(16, 185, 129, 0.12) 0%, transparent 35%),
        radial-gradient(circle at 50% 90%, rgba(99, 102, 241, 0.1) 0%, transparent 40%);
    animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(2deg); }
}

.p-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    animation: gridFloat 30s linear infinite;
}

@keyframes gridFloat {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.p-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
}

.p-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #3b82f6, transparent 70%);
    top: -150px;
    right: -100px;
    animation: glowFloat 12s ease-in-out infinite;
}

.p-glow-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #10b981, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: glowFloat 14s ease-in-out infinite -4s;
}

.p-glow-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #8b5cf6, transparent 70%);
    top: 40%;
    left: 40%;
    opacity: 0.25;
    animation: glowFloat 16s ease-in-out infinite -8s;
}

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.95); }
}

/* Floating particles */
.p-particles {
    position: absolute;
    inset: 0;
}

.p-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.6);
}

.p-particles span:nth-child(1)  { left: 10%; top: 20%; animation-delay: 0s; }
.p-particles span:nth-child(2)  { left: 25%; top: 70%; animation-delay: 0.7s; }
.p-particles span:nth-child(3)  { left: 40%; top: 30%; animation-delay: 1.4s; }
.p-particles span:nth-child(4)  { left: 55%; top: 80%; animation-delay: 2.1s; }
.p-particles span:nth-child(5)  { left: 70%; top: 25%; animation-delay: 2.8s; }
.p-particles span:nth-child(6)  { left: 85%; top: 60%; animation-delay: 3.5s; }
.p-particles span:nth-child(7)  { left: 15%; top: 50%; animation-delay: 4.2s; }
.p-particles span:nth-child(8)  { left: 35%; top: 15%; animation-delay: 4.9s; }
.p-particles span:nth-child(9)  { left: 50%; top: 55%; animation-delay: 5.6s; }
.p-particles span:nth-child(10) { left: 65%; top: 40%; animation-delay: 6.3s; }
.p-particles span:nth-child(11) { left: 80%; top: 85%; animation-delay: 7.0s; }
.p-particles span:nth-child(12) { left: 90%; top: 30%; animation-delay: 7.7s; }

@keyframes particleFloat {
    0%, 100% { opacity: 0; transform: translateY(0); }
    20%, 80% { opacity: 1; }
    50% { transform: translateY(-40px); }
}

.p-hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.p-hero-content { position: relative; }

.p-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-700);
    margin-bottom: 28px;
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.08);
}

.p-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green-500);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 12px var(--green-500);
}

.p-badge-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--green-500);
    border-radius: 50%;
    opacity: 0.4;
    animation: pulse 2s ease-in-out infinite;
}

.p-hero-title {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.p-hero-accent {
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.p-hero-accent::after {
    content: '';
    position: absolute;
    bottom: 8px;
    right: 0;
    left: 0;
    height: 8px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.15), rgba(16, 185, 129, 0.15));
    border-radius: 4px;
    z-index: -1;
}

.p-hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 580px;
}

/* Premium CTAs */
.p-hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.p-btn-whatsapp {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 18px 28px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 16px;
    box-shadow:
        0 12px 40px rgba(37, 211, 102, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    overflow: hidden;
    transition: var(--transition);
    text-align: right;
}

.p-btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow:
        0 18px 50px rgba(37, 211, 102, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.p-btn-whatsapp svg {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.p-btn-whatsapp span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 1;
}

.p-btn-whatsapp strong {
    font-size: 17px;
    font-weight: 700;
}

.p-btn-whatsapp small {
    font-size: 12px;
    opacity: 0.95;
    font-weight: 400;
}

.p-btn-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.3), transparent 60%);
    animation: btnShimmer 3s ease-in-out infinite;
}

@keyframes btnShimmer {
    0%, 100% { opacity: 0; transform: translateX(-100%); }
    50% { opacity: 1; transform: translateX(100%); }
}

.p-btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 24px;
    background: white;
    color: var(--gray-900);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    transition: var(--transition);
    text-align: right;
}

.p-btn-phone:hover {
    border-color: var(--blue-500);
    background: var(--blue-50);
    transform: translateY(-2px);
}

.p-btn-phone svg {
    width: 24px;
    height: 24px;
    color: var(--blue-600);
    flex-shrink: 0;
}

.p-btn-phone span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.p-btn-phone strong {
    font-size: 16px;
    font-weight: 700;
}

.p-btn-phone small {
    font-size: 12px;
    color: var(--gray-500);
}

/* Hero trust dots */
.p-hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.p-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-700);
    font-weight: 500;
}

.p-trust-item svg {
    width: 18px;
    height: 18px;
    padding: 3px;
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===================== Hero Visual ===================== */
.p-hero-visual {
    position: relative;
    height: 540px;
}

.p-card-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Main Status Card with Glassmorphism */
.p-status-card {
    position: absolute;
    top: 60px;
    right: 10%;
    width: 90%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 24px;
    box-shadow:
        0 30px 80px rgba(59, 130, 246, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    animation: cardFloat 6s ease-in-out infinite;
}

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

.p-status-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 16px;
}

.p-status-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.p-status-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.p-status-header strong {
    display: block;
    font-size: 15px;
    color: var(--gray-900);
    font-weight: 700;
}

.p-status-header span {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
}

.p-status-header > div:not(.p-status-avatar):not(.p-status-live) {
    flex: 1;
}

.p-status-live {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.p-live-dot {
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.p-status-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.p-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    transition: var(--transition);
}

.p-step-done {
    background: rgba(16, 185, 129, 0.08);
}

.p-step-active {
    background: rgba(59, 130, 246, 0.08);
    animation: activeGlow 2s ease-in-out infinite;
}

@keyframes activeGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 0 6px rgba(59, 130, 246, 0); }
}

.p-step-pending {
    opacity: 0.5;
}

.p-step-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.p-step-done .p-step-check {
    background: var(--green-500);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.p-step-active .p-step-check {
    background: var(--blue-500);
    color: white;
}

.p-step-pending .p-step-check {
    background: white;
    border: 2px dashed var(--gray-300);
}

.p-step-check svg {
    width: 16px;
    height: 16px;
}

.p-loader {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.p-step strong {
    display: block;
    font-size: 13px;
    color: var(--gray-900);
    font-weight: 600;
}

.p-step span {
    display: block;
    font-size: 11px;
    color: var(--gray-500);
}

.p-status-footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.p-status-progress {
    height: 6px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 6px;
}

.p-status-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--blue-500), var(--green-500));
    border-radius: 100px;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
    animation: progressFill 3s ease-out 0.5s forwards;
}

@keyframes progressFill {
    to { width: 65%; }
}

.p-status-footer span {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 500;
}

/* Floating chat bubble */
.p-floater {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    animation: floaterMove 5s ease-in-out infinite;
}

.p-floater-chat {
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    animation-delay: -2s;
}

.p-chat-avatar {
    width: 36px;
    height: 36px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.p-chat-avatar svg { width: 20px; height: 20px; }

.p-chat-text strong {
    display: block;
    font-size: 13px;
    color: var(--gray-900);
    font-weight: 600;
}

.p-chat-text span {
    font-size: 11px;
    color: var(--gray-500);
}

.p-floater-review {
    bottom: 20px;
    left: 0;
    animation-delay: -3s;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 200px;
}

.p-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}

.p-stars svg {
    width: 14px;
    height: 14px;
    color: #fbbf24;
}

.p-floater-review strong {
    font-size: 14px;
    color: var(--gray-900);
    font-weight: 700;
}

.p-floater-review span {
    font-size: 11px;
    color: var(--gray-600);
}

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

/* ===================== Value Strip ===================== */
.p-value-strip {
    background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
    padding: 32px 0;
    border-bottom: 1px solid var(--gray-100);
}

.p-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.p-value {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: white;
    border-radius: 14px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.p-value:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(59, 130, 246, 0.08);
    border-color: var(--blue-100);
}

.p-value-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--blue-50), var(--green-50));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-600);
    flex-shrink: 0;
}

.p-value-icon svg { width: 22px; height: 22px; }

.p-value > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.p-value strong {
    font-size: 14px;
    color: var(--gray-900);
    font-weight: 700;
}

.p-value span {
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.4;
}

/* ===================== Premium Pricing ===================== */
.p-pricing-section {
    background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
}

.p-tag {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    color: var(--blue-700);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.p-tag-white {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-color: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.p-pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.p-price-card {
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 28px;
    padding: 36px 32px;
    box-shadow:
        0 20px 60px rgba(59, 130, 246, 0.08),
        0 0 0 1px rgba(59, 130, 246, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.p-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08), transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    transition: var(--transition);
    pointer-events: none;
}

.p-price-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 80px rgba(59, 130, 246, 0.15),
        0 0 0 1px rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.p-price-card:hover::before {
    transform: translate(20%, -20%) scale(1.5);
}

/* Featured card */
.p-price-card-featured {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-color: transparent;
    color: white;
    transform: scale(1.05);
    box-shadow:
        0 30px 80px rgba(59, 130, 246, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.p-price-card-featured::before {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent 70%);
}

.p-price-card-featured::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.2), transparent 70%);
    border-radius: 50%;
    transform: translate(-30%, 30%);
    pointer-events: none;
}

.p-price-card-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.p-price-icon-wrap {
    margin-bottom: 24px;
}

.p-price-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--blue-50), var(--green-50));
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-600);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
    transition: var(--transition);
}

.p-price-card:hover .p-price-icon {
    transform: rotate(-8deg) scale(1.05);
    background: linear-gradient(135deg, var(--blue-600), var(--green-600));
    color: white;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.p-price-card-featured .p-price-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.2));
    border-color: rgba(255, 255, 255, 0.15);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.p-price-card-featured:hover .p-price-icon {
    background: linear-gradient(135deg, var(--blue-500), var(--green-500));
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.p-price-icon svg { width: 30px; height: 30px; }

.p-price-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue-700);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    width: fit-content;
}

.p-price-tag-featured {
    background: linear-gradient(135deg, var(--blue-500), var(--green-500));
    color: white;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.p-price-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.p-price-card-featured h3 { color: white; }

.p-price-tagline {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.p-price-card-featured .p-price-tagline { color: rgba(255, 255, 255, 0.7); }

.p-price-num {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.p-price-card-featured .p-price-num {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.p-price-prefix {
    font-size: 1rem;
    color: var(--gray-500);
    margin-left: 6px;
}

.p-price-card-featured .p-price-prefix { color: rgba(255, 255, 255, 0.6); }

.p-price-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.p-price-card-featured .p-price-value {
    background: linear-gradient(135deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.p-price-currency {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-700);
}

.p-price-card-featured .p-price-currency { color: rgba(255, 255, 255, 0.7); }

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

.p-price-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-700);
    font-size: 14px;
}

.p-price-card-featured .p-price-features li { color: rgba(255, 255, 255, 0.85); }

.p-price-features li svg {
    width: 18px;
    height: 18px;
    color: var(--green-500);
    flex-shrink: 0;
}

.p-price-card-featured .p-price-features li svg { color: var(--green-400); }

.p-price-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: white;
    color: var(--blue-700);
    border: 2px solid var(--blue-100);
    border-radius: 14px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
}

.p-price-btn:hover {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.3);
}

.p-price-btn:hover svg { transform: translateX(-4px); }

.p-price-btn svg { width: 18px; height: 18px; transition: var(--transition); }

.p-price-btn-featured {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-color: transparent;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

.p-price-btn-featured:hover {
    background: linear-gradient(135deg, #20BD5A, #0a6e63);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
}

.p-pricing-note {
    text-align: center;
    color: var(--gray-600);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.p-pricing-note svg {
    width: 20px;
    height: 20px;
    color: var(--blue-600);
}

.p-pricing-note a {
    color: var(--blue-600);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.p-pricing-note a:hover { color: var(--green-600); }

/* ===================== Services Section ===================== */
.p-services-section {
    background: #ffffff;
}

.p-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.p-service {
    position: relative;
    background: white;
    padding: 32px 28px;
    border-radius: 20px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    overflow: hidden;
}

.p-service::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #3b82f6, #10b981);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.p-service:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
}

.p-service:hover::before {
    transform: scaleY(1);
}

.p-service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--blue-50), var(--green-50));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-600);
    margin-bottom: 20px;
    transition: var(--transition);
}

.p-service:hover .p-service-icon {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.3);
}

.p-service-icon svg { width: 28px; height: 28px; }

.p-service h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.p-service p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.65;
}

.p-services-cta {
    text-align: center;
    margin-top: 24px;
}

.p-services-cta p {
    color: var(--gray-600);
    margin-bottom: 14px;
    font-size: 1rem;
}

.p-link-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-600);
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
}

.p-link-cta:hover {
    color: var(--green-600);
    gap: 14px;
}

.p-link-cta svg { width: 20px; height: 20px; }

/* ===================== How It Works ===================== */
.p-how-section {
    background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
}

.p-how-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 16px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.p-how-card {
    position: relative;
    background: white;
    padding: 40px 28px;
    border-radius: 24px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.05);
    text-align: center;
    transition: var(--transition);
}

.p-how-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.p-how-step {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
    transition: var(--transition);
}

.p-how-card:hover .p-how-step {
    color: rgba(59, 130, 246, 0.15);
}

.p-how-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 1;
}

.p-how-icon svg { width: 36px; height: 36px; }

.p-how-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.p-how-card p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

.p-how-arrow {
    color: var(--gray-300);
    transition: var(--transition);
}

.p-how-arrow svg { width: 32px; height: 32px; }

/* ===================== Trust Section ===================== */
.p-trust-section {
    background: white;
}

.p-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

.p-trust-image {
    position: relative;
}

.p-trust-image-wrap {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.15);
    position: relative;
}

.p-trust-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    pointer-events: none;
}

.p-trust-image-wrap img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.p-trust-floater {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: white;
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: floaterMove 5s ease-in-out infinite;
}

.p-trust-floater-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

.p-trust-floater-icon svg { width: 24px; height: 24px; }

.p-trust-floater strong {
    display: block;
    font-size: 15px;
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 2px;
}

.p-trust-floater span {
    font-size: 12px;
    color: var(--gray-600);
}

.p-trust-intro {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 18px 0 32px;
}

.p-trust-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.p-trust-item-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.p-trust-row-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.p-trust-row-icon svg { width: 18px; height: 18px; }

.p-trust-item-row h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.p-trust-item-row p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 15px;
}

/* ===================== Final CTA — Premium ===================== */
.p-final-cta-section {
    background: white;
    padding-bottom: 100px;
}

.p-final-cta {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #065f46 100%);
    border-radius: 32px;
    padding: 70px 60px;
    color: white;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(15, 23, 42, 0.4);
}

.p-final-cta-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(139, 92, 246, 0.3) 0%, transparent 40%);
    animation: meshMove 15s ease-in-out infinite;
    pointer-events: none;
}

.p-final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.p-final-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.p-final-cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-top: 14px;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.p-final-accent {
    background: linear-gradient(135deg, #60a5fa, #34d399);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.p-final-cta-content > p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
}

.p-final-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.p-final-btn-whatsapp {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 36px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 18px;
    box-shadow:
        0 20px 60px rgba(37, 211, 102, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    overflow: hidden;
    transition: var(--transition);
    text-align: right;
}

.p-final-btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 25px 70px rgba(37, 211, 102, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.25) inset;
}

.p-final-btn-whatsapp svg {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.p-final-btn-whatsapp span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    position: relative;
    z-index: 1;
}

.p-final-btn-whatsapp strong {
    font-size: 18px;
    font-weight: 700;
}

.p-final-btn-whatsapp small {
    font-size: 12px;
    opacity: 0.95;
}

.p-final-btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: btnShimmer 3s ease-in-out infinite;
}

.p-final-btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    transition: var(--transition);
    text-align: right;
}

.p-final-btn-phone:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.p-final-btn-phone svg { width: 26px; height: 26px; flex-shrink: 0; }

.p-final-btn-phone span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.p-final-btn-phone strong { font-size: 17px; font-weight: 700; }
.p-final-btn-phone small { font-size: 12px; opacity: 0.8; }

.p-final-info {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.p-final-info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.p-final-info-item svg {
    width: 18px;
    height: 18px;
    color: #60a5fa;
}

/* ===================== Mobile Responsive — Private V2 ===================== */
@media (max-width: 1024px) {
    .p-hero-container,
    .p-trust-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .p-hero-content { max-width: 700px; margin: 0 auto; }
    .p-hero-subtitle { margin-left: auto; margin-right: auto; }

    .p-hero-actions,
    .p-hero-trust {
        justify-content: center;
    }

    .p-hero-visual {
        height: 480px;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .p-pricing-cards { grid-template-columns: 1fr; gap: 20px; max-width: 480px; margin: 0 auto 32px; }
    .p-price-card-featured { transform: scale(1); }
    .p-price-card-featured:hover { transform: translateY(-8px); }

    .p-how-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .p-how-arrow {
        transform: rotate(-90deg);
        margin: 0 auto;
    }

    .p-trust-floater {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
    }
}

@media (max-width: 768px) {
    .p-hero {
        padding: 110px 0 60px;
        min-height: auto;
    }

    .p-hero-actions { flex-direction: column; }

    .p-btn-whatsapp,
    .p-btn-phone,
    .p-final-btn-whatsapp,
    .p-final-btn-phone {
        width: 100%;
        justify-content: flex-start;
    }

    .p-hero-trust {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .p-hero-visual { height: 420px; }

    .p-status-card {
        right: 5%;
        width: 90%;
        padding: 18px;
    }

    .p-floater-chat { right: -10px; padding: 10px 12px; }
    .p-floater-chat .p-chat-text strong { font-size: 12px; }
    .p-floater-chat .p-chat-text span { font-size: 10px; }

    .p-floater-review { left: -10px; bottom: 10px; min-width: 170px; padding: 10px 12px; }

    .p-values {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .p-price-value { font-size: 2.75rem; }
    .p-price-card { padding: 28px 24px; }

    .p-final-cta {
        padding: 48px 24px;
        border-radius: 24px;
    }

    .p-final-buttons { flex-direction: column; }

    .p-final-info {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .p-final-info-item { justify-content: center; }

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

    .p-trust-image-wrap img { height: 360px; }

    .p-trust-floater {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        margin: -30px auto 0;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .p-hero-title { font-size: 1.9rem; letter-spacing: -1px; }
    .p-hero-subtitle { font-size: 1rem; }

    .p-btn-whatsapp,
    .p-final-btn-whatsapp {
        padding: 16px 20px;
        gap: 12px;
    }

    .p-btn-whatsapp svg,
    .p-final-btn-whatsapp svg { width: 32px; height: 32px; }

    .p-btn-whatsapp strong,
    .p-final-btn-whatsapp strong { font-size: 15px; }

    .p-status-card { right: 0; width: 100%; }
    .p-hero-visual { height: 460px; }

    .p-final-cta-content h2 { font-size: 1.75rem; }
    .p-final-cta-content > p { font-size: 1rem; }

    .p-price-card { padding: 24px 20px; }
    .p-price-num { margin-bottom: 20px; padding-bottom: 20px; }
    .p-price-value { font-size: 2.5rem; }

    .p-how-card { padding: 32px 20px; }
    .p-how-step { font-size: 2.5rem; top: 16px; right: 20px; }
}

/* ============================================================
   ARTICLE MODAL — Premium Reading Experience
   ============================================================ */

/* Make article cards clickable */
.article-card-trigger {
    cursor: pointer;
}

.article-card-trigger .btn,
.article-card-trigger .article-read {
    cursor: pointer;
}

/* Modal Container */
.article-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-modal.open {
    opacity: 1;
    visibility: visible;
}

.article-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
}

/* Modal Window */
.article-modal-window {
    position: relative;
    width: calc(100% - 40px);
    max-width: 820px;
    max-height: calc(100vh - 40px);
    background: white;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 50px 150px rgba(0, 0, 0, 0.5);
    transform: scale(0.95) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.article-modal.open .article-modal-window {
    transform: scale(1) translateY(0);
}

/* Close button */
.article-modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-900);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    cursor: pointer;
}

.article-modal-close:hover {
    background: var(--gray-900);
    color: white;
    transform: rotate(90deg) scale(1.05);
}

.article-modal-close svg {
    width: 20px;
    height: 20px;
}

/* Hero section */
.article-modal-hero {
    position: relative;
    height: 280px;
    overflow: hidden;
    flex-shrink: 0;
}

.article-modal-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-modal-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.85) 100%);
}

.article-modal-hero-content {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 32px 40px;
    color: white;
}

.article-modal-category {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--blue-500), var(--green-500));
    color: white;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.article-modal-title {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.article-modal-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.article-modal-info-divider {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

/* Article body — scrollable */
.article-modal-body {
    padding: 40px 48px;
    overflow-y: auto;
    flex: 1;
    color: var(--gray-700);
    font-size: 17px;
    line-height: 1.85;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-300) transparent;
}

.article-modal-body::-webkit-scrollbar {
    width: 8px;
}

.article-modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.article-modal-body::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 100px;
}

.article-modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--gray-400);
}

/* Article content styling */
.article-modal-body .article-lead {
    font-size: 18px;
    line-height: 1.75;
    color: var(--gray-800);
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--blue-50), var(--green-50));
    border-right: 4px solid var(--blue-500);
    border-radius: 14px;
    margin-bottom: 32px;
    font-weight: 400;
}

.article-modal-body p {
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.85;
    color: var(--gray-700);
}

.article-modal-body p:last-child {
    margin-bottom: 0;
}

.article-modal-body h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin: 36px 0 16px;
    line-height: 1.3;
    position: relative;
    padding-right: 16px;
    letter-spacing: -0.3px;
}

.article-modal-body h3::before {
    content: '';
    position: absolute;
    right: 0;
    top: 8px;
    width: 4px;
    height: calc(100% - 14px);
    background: linear-gradient(180deg, var(--blue-500), var(--green-500));
    border-radius: 100px;
}

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

.article-modal-body strong {
    color: var(--gray-900);
    font-weight: 700;
}

.article-modal-body ul {
    margin: 0 0 24px;
    padding-right: 8px;
    list-style: none;
}

.article-modal-body ul li {
    position: relative;
    padding: 8px 28px 8px 0;
    line-height: 1.75;
    color: var(--gray-700);
}

.article-modal-body ul li::before {
    content: '';
    position: absolute;
    right: 8px;
    top: 18px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--blue-500), var(--green-500));
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.article-modal-body code {
    background: var(--gray-100);
    color: var(--blue-700);
    padding: 2px 8px;
    border-radius: 6px;
    font-family: 'Courier New', monospace;
    font-size: 0.92em;
    font-weight: 600;
    border: 1px solid var(--gray-200);
    direction: ltr;
    display: inline-block;
}

/* Modal footer */
.article-modal-footer {
    padding: 24px 40px;
    background: linear-gradient(135deg, var(--blue-50), var(--green-50));
    border-top: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-shrink: 0;
}

.article-modal-footer strong {
    display: block;
    font-size: 16px;
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: 4px;
}

.article-modal-footer p {
    font-size: 14px;
    color: var(--gray-600);
    margin: 0;
}

.article-modal-footer .btn {
    white-space: nowrap;
    flex-shrink: 0;
}

/* Body lock when modal open */
body.modal-open {
    overflow: hidden;
}

/* Mobile responsive for modal */
@media (max-width: 768px) {
    .article-modal-window {
        width: 100%;
        height: 100%;
        max-width: none;
        max-height: 100vh;
        border-radius: 0;
    }

    .article-modal-hero {
        height: 220px;
    }

    .article-modal-hero-content {
        padding: 24px 24px;
    }

    .article-modal-title {
        font-size: 1.4rem;
    }

    .article-modal-body {
        padding: 28px 24px;
        font-size: 16px;
    }

    .article-modal-body .article-lead {
        font-size: 16px;
        padding: 16px 18px;
        margin-bottom: 24px;
    }

    .article-modal-body h3 {
        font-size: 1.25rem;
        margin: 28px 0 12px;
    }

    .article-modal-body p {
        font-size: 16px;
    }

    .article-modal-footer {
        padding: 20px 24px;
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 16px;
    }

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

    .article-modal-close {
        width: 40px;
        height: 40px;
        top: 16px;
        left: 16px;
    }
}

@media (max-width: 480px) {
    .article-modal-hero { height: 180px; }
    .article-modal-title { font-size: 1.2rem; }
    .article-modal-hero-content { padding: 20px; }
    .article-modal-body { padding: 24px 20px; }
}

/* ============================================================
   ============================================================
   MOBILE FINAL POLISH — Full responsive overhaul
   ============================================================
   ============================================================ */

/* ===== Tablet & Mobile (≤ 1024px) — refinements ===== */
@media (max-width: 1024px) {
    /* Reduce heavy blur on mid-range devices */
    .hero-orb,
    .p-glow {
        filter: blur(60px) !important;
    }

    /* Smaller orbs on tablet */
    .hero-orb-1, .hero-orb-2, .hero-orb-3,
    .p-glow-1, .p-glow-2, .p-glow-3 {
        width: 280px;
        height: 280px;
    }
}

/* ===== Mobile (≤ 768px) — major adjustments ===== */
@media (max-width: 768px) {
    /* Smoother section padding on mobile */
    .section {
        padding: 60px 0;
    }

    /* ── Home page hero — network animation ── */
    .hero-home {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .hero-home .hero-container {
        gap: 30px;
        text-align: center;
    }

    .hero-network {
        order: -1;
        max-width: 320px;
        margin: 0 auto 10px;
    }

    .network-svg {
        max-width: 320px;
    }

    /* Hide some distant nodes on tiny screens to reduce clutter */
    .hero-home .hero-buttons,
    .hero-home .hero-choices {
        width: 100%;
    }

    .hero-cta-question {
        text-align: center;
    }

    /* Reduce heavy blur for performance */
    .hero-orb,
    .p-glow {
        filter: blur(50px) !important;
        opacity: 0.3 !important;
    }

    /* ── Private page hero ── */
    .p-hero {
        padding: 100px 0 50px;
    }

    .p-hero-container {
        gap: 40px;
    }

    .p-hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        line-height: 1.2;
        letter-spacing: -0.5px;
    }

    .p-hero-subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
        line-height: 1.65;
    }

    /* Hero buttons full width on mobile */
    .p-hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .p-btn-whatsapp,
    .p-btn-phone,
    .p-final-btn-whatsapp,
    .p-final-btn-phone {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .p-btn-whatsapp span,
    .p-btn-phone span,
    .p-final-btn-whatsapp span,
    .p-final-btn-phone span {
        align-items: center;
    }

    /* Hero trust items: column on mobile, centered */
    .p-hero-trust {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px 18px;
        justify-content: center;
    }

    .p-trust-item {
        font-size: 13px;
    }

    /* ── Private hero VISUAL — Card stack adjustment ── */
    .p-hero-visual {
        height: auto;
        min-height: 440px;
        padding: 20px 0;
        max-width: 360px;
    }

    .p-card-stack {
        position: relative;
        height: 100%;
    }

    .p-status-card {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        max-width: none;
        margin: 40px 0 0;
        padding: 20px;
    }

    .p-status-header {
        gap: 10px;
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

    .p-status-avatar {
        width: 38px;
        height: 38px;
        padding: 6px;
    }

    .p-status-header strong { font-size: 13px; }
    .p-status-header span { font-size: 11px; }

    .p-step {
        padding: 8px 10px;
        gap: 10px;
    }

    .p-step-check {
        width: 24px;
        height: 24px;
    }

    .p-step-check svg { width: 14px; height: 14px; }

    .p-step strong { font-size: 12px; }
    .p-step span { font-size: 10px; }

    /* Floating elements - position relative to top of stack */
    .p-floater-chat {
        position: absolute;
        top: 0;
        right: 0;
        left: auto;
        padding: 8px 12px;
        max-width: 75%;
        z-index: 3;
        animation: floaterMoveMobile 5s ease-in-out infinite;
    }

    .p-chat-avatar {
        width: 30px;
        height: 30px;
    }

    .p-chat-avatar svg { width: 16px; height: 16px; }

    .p-chat-text strong { font-size: 11px; }
    .p-chat-text span { font-size: 9px; }

    .p-floater-review {
        position: absolute;
        bottom: 10px;
        left: 0;
        right: auto;
        padding: 10px 12px;
        min-width: auto;
        max-width: 160px;
        z-index: 3;
        animation: floaterMoveMobile 5s ease-in-out infinite -2s;
    }

    .p-floater-review strong { font-size: 12px; }
    .p-floater-review span { font-size: 10px; }

    .p-stars svg { width: 11px; height: 11px; }

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

    /* Particles - fewer on mobile for performance */
    .p-particles span:nth-child(n+7) {
        display: none;
    }

    /* ── Private page sections ── */
    .p-values {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .p-value {
        padding: 12px 14px;
        gap: 12px;
    }

    .p-value-icon {
        width: 40px;
        height: 40px;
    }

    .p-value-icon svg { width: 20px; height: 20px; }

    .p-value strong { font-size: 13px; }
    .p-value span { font-size: 11px; line-height: 1.4; }

    /* Pricing cards on mobile */
    .p-pricing-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 100%;
    }

    .p-price-card {
        padding: 28px 24px;
    }

    .p-price-card-featured {
        transform: none;
        order: -1; /* Featured card first on mobile */
    }

    .p-price-card-featured:hover {
        transform: translateY(-4px);
    }

    .p-price-value { font-size: 2.5rem; }

    /* Services grid mobile */
    .p-services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .p-service {
        padding: 24px 20px;
    }

    /* How it works - arrows hidden, cards stack */
    .p-how-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .p-how-arrow {
        display: none;
    }

    .p-how-card {
        padding: 32px 24px;
    }

    /* Trust section */
    .p-trust-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .p-trust-image-wrap img {
        height: 320px;
    }

    .p-trust-floater {
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        max-width: calc(100% - 32px);
    }

    .p-trust-list { gap: 18px; }

    .p-trust-item-row {
        gap: 12px;
    }

    .p-trust-item-row h4 { font-size: 1rem; }
    .p-trust-item-row p { font-size: 14px; }

    /* Final CTA */
    .p-final-cta {
        padding: 40px 24px;
    }

    .p-final-cta-content h2 {
        font-size: 1.65rem;
    }

    .p-final-cta-content > p {
        font-size: 0.95rem;
    }

    .p-final-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .p-final-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .p-final-info-item {
        justify-content: center;
        font-size: 13px;
    }

    /* Contact form on private page */
    .p-form {
        padding: 24px 20px;
        border-radius: 18px;
    }

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

    .p-radio-group {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .p-radio-card {
        padding: 16px;
    }

    .p-form-or {
        font-size: 13px;
    }

    /* ── Business page hero ── */
    .page-hero-business {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .page-hero-business .page-hero-container {
        gap: 28px;
    }

    .page-hero-business .hero-stats {
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .page-hero-business .stat-number {
        font-size: 1.6rem;
    }

    .page-hero-business .stat-label {
        font-size: 12px;
    }

    .page-hero-business .stat-divider {
        display: none;
    }

    .page-hero-scroll-arrow { display: none; }

    /* Business about images */
    .biz-about-grid {
        gap: 32px;
    }

    .biz-image-main img {
        height: 240px;
    }

    .biz-image-small {
        position: relative;
        left: auto;
        bottom: auto;
        width: 70%;
        margin: -30px auto 0;
    }

    .biz-image-small img {
        height: 160px;
    }

    .biz-image-badge {
        position: relative;
        top: auto;
        left: auto;
        margin: 16px auto 0;
        width: fit-content;
    }

    /* Featured services - alternating images become stacked */
    .featured-service,
    .featured-service.reverse {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .featured-image {
        height: 220px;
    }

    .featured-content h3 {
        font-size: 1.35rem;
    }

    /* Business services grid */
    .business-services {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .biz-card {
        padding: 24px 20px;
    }

    .biz-card-number {
        font-size: 2.5rem;
    }

    /* Industries grid */
    .industries-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Plans */
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .plan-card {
        padding: 32px 24px;
    }

    .plan-card-featured {
        transform: none;
        order: -1;
    }

    .plan-card-featured:hover { transform: translateY(-4px); }

    /* Process steps */
    .process-steps {
        flex-direction: column;
        align-items: stretch;
    }

    .step-connector {
        align-self: center;
        width: 2px;
        height: 24px;
        margin: 4px auto;
    }

    /* Contact section on business */
    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contact-form-wrap {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .contact-form .radio-group {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Articles page */
    .articles-grid,
    .articles-grid-full {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .article-featured {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .article-featured-image {
        min-height: 200px;
    }

    .article-featured-image img {
        height: 200px;
    }

    .article-featured-content {
        padding: 28px 24px;
    }

    .article-featured-content h2 {
        font-size: 1.5rem;
    }

    .articles-filter {
        gap: 8px;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        margin: 0 -16px 28px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .filter-btn {
        flex-shrink: 0;
        font-size: 13px;
        padding: 8px 16px;
    }

    /* Newsletter on mobile */
    .newsletter-cta {
        padding: 28px 22px;
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        font-size: 16px; /* Prevent iOS zoom */
    }

    /* Footer */
    .footer {
        padding: 50px 0 24px;
    }

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

    .footer-brand p { max-width: none; }

    /* ── Floating WhatsApp ── */
    .float-whatsapp {
        width: 56px;
        height: 56px;
        bottom: 16px;
        left: 16px;
        box-shadow: 0 8px 22px rgba(37, 211, 102, 0.5);
    }

    .float-whatsapp svg { width: 28px; height: 28px; }
    .float-whatsapp-tooltip { display: none; }

    /* ── General mobile improvements ── */
    /* Bigger touch targets */
    .nav-link {
        padding: 14px 16px;
        min-height: 44px;
    }

    /* Inputs to 16px to prevent iOS zoom on focus */
    input, textarea, select {
        font-size: 16px !important;
    }

    /* Allow horizontal nav scroll if needed */
    .nav-menu {
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* ===== Small mobile (≤ 480px) — final touches ===== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    /* Reduce hero spacing on tiny phones */
    .hero,
    .hero-home,
    .p-hero,
    .page-hero {
        padding-top: 90px;
        padding-bottom: 40px;
    }

    .hero-title,
    .p-hero-title,
    .page-hero-title {
        font-size: 1.7rem;
        line-height: 1.2;
    }

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

    .section-title {
        font-size: 1.5rem;
        line-height: 1.25;
    }

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

    /* Smaller network animation */
    .hero-network {
        max-width: 280px;
    }

    .network-svg {
        max-width: 280px;
    }

    /* Card stack smaller */
    .p-hero-visual {
        min-height: 380px;
        max-width: 320px;
    }

    .p-status-card {
        padding: 16px;
    }

    .p-floater-chat {
        max-width: 70%;
    }

    .p-floater-review {
        max-width: 140px;
    }

    /* Section padding tighter */
    .section {
        padding: 48px 0;
    }

    /* Stats smaller */
    .stat-number {
        font-size: 1.5rem;
    }

    /* Pricing num */
    .p-price-value {
        font-size: 2.25rem;
    }

    .p-price-card {
        padding: 24px 20px;
    }

    /* Btns */
    .btn-large {
        padding: 16px 24px;
        font-size: 15px;
    }

    .p-btn-whatsapp,
    .p-final-btn-whatsapp {
        padding: 16px 20px;
    }

    .p-btn-whatsapp svg,
    .p-final-btn-whatsapp svg {
        width: 30px;
        height: 30px;
    }

    .p-btn-whatsapp strong,
    .p-final-btn-whatsapp strong {
        font-size: 15px;
    }

    .p-btn-whatsapp small,
    .p-final-btn-whatsapp small {
        font-size: 11px;
    }

    /* Reduce floating badge complexity */
    .floating-badge {
        padding: 12px 14px;
        gap: 10px;
    }

    .floating-badge strong { font-size: 13px; }
    .floating-badge span { font-size: 11px; }

    .badge-icon {
        width: 36px;
        height: 36px;
    }

    /* Trust bar text smaller */
    .trust-item {
        font-size: 12px;
    }

    .trust-item svg {
        width: 16px;
        height: 16px;
    }

    /* Section header tighter */
    .section-header {
        margin-bottom: 40px;
    }

    /* CTA banner padding */
    .cta-banner-large {
        padding: 32px 20px;
        border-radius: 24px;
    }

    .cta-content h2 {
        font-size: 1.4rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    /* Modal close button bigger touch target */
    .article-modal-close {
        width: 44px;
        height: 44px;
    }

    /* Forms tighter */
    .form-success {
        padding: 16px 18px;
        gap: 12px;
    }

    .success-icon {
        width: 38px;
        height: 38px;
    }

    .success-text strong { font-size: 14px; }
    .success-text span { font-size: 12px; }
}

/* ===== Ultra-small (≤ 360px) — fallback ===== */
@media (max-width: 360px) {
    .container { padding: 0 12px; }

    .hero-title,
    .p-hero-title,
    .page-hero-title {
        font-size: 1.5rem;
    }

    .logo-text { font-size: 18px; }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

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

    .p-status-card,
    .p-price-card,
    .p-form,
    .contact-form-wrap {
        padding: 18px 14px;
    }
}

/* ===== Accessibility: respect prefers-reduced-motion ===== */
@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;
    }

    /* Hide pure decorative animations */
    .p-particles,
    .hero-orb,
    .p-glow,
    .rotating-ring,
    .rotating-ring-reverse,
    .floating-icon,
    .p-floater,
    .floating-badge {
        animation: none !important;
    }

    /* Keep critical UI feedback */
    .spinner {
        animation: spinnerRotate 0.7s linear infinite !important;
    }
}

/* ===== Touch device improvements ===== */
@media (hover: none) and (pointer: coarse) {
    /* Disable hover transforms on touch devices */
    .service-card:hover,
    .biz-card:hover,
    .plan-card:hover,
    .feature-item:hover,
    .article-card:hover,
    .industry-card:hover,
    .p-service:hover,
    .p-price-card:hover,
    .p-how-card:hover,
    .choice-card:hover,
    .preview-card:hover {
        transform: none;
    }

    /* But keep shadow growth */
    .service-card:hover,
    .biz-card:hover,
    .plan-card:hover {
        box-shadow: var(--shadow-lg);
    }

    /* Remove float-whatsapp hover animation */
    .float-whatsapp {
        animation: none;
    }
}

/* ===== Print-friendly (bonus) ===== */
@media print {
    .navbar,
    .float-whatsapp,
    .article-modal,
    .hero-orb,
    .p-glow,
    .p-particles {
        display: none !important;
    }

    body { font-size: 12pt; }
}

