/* Hidden heading for SEO */
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border-width: 0;
        }
        
        /* Improved page-specific styles */
        .b2b-hero-section {
            background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
            padding: 25px 20px 20px;
            text-align: center;
            border-bottom: 1px solid #e5e7eb;
        }
        
        .b2b-hero-section h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 16px;
            line-height: 1.2;
        }
        
        .b2b-hero-section .subtitle {
            font-size: 1.25rem;
            color: #6b7280;
            margin-bottom: 20px;
            line-height: 1.6;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .b2b-hero-section .description {
            font-size: 1rem;
            color: #374151;
            margin-bottom: 15px;
            line-height: 1.7;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 16px;
            justify-content: center;
            align-items: stretch;
            max-width: 400px;
            margin: 24px auto 0;
        }
        
        .cta-buttons .btn {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 56px;
            width: 100%;
            white-space: normal;
            padding: 16px 24px;
            text-align: center;
            line-height: 1.4;
            word-wrap: break-word;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 12px;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .cta-buttons .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        }
        
        .cta-buttons .btn:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .cta-buttons .btn-green {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            border: none;
        }
        
        .cta-buttons .btn-green:hover {
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
            box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
        }
        
        .whatsapp-btn {
            background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
            color: white !important;
            border: none !important;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .whatsapp-btn:hover {
            background: linear-gradient(135deg, #20BA5A 0%, #1DA851 100%);
            box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
        }
        
        .whatsapp-btn::before {
            content: "💬";
            font-size: 1.3rem;
            line-height: 1;
        }
        
        @media (max-width: 768px) {
            .cta-buttons {
                max-width: 100%;
                padding: 0 16px;
            }
            
            .cta-buttons .btn {
                min-height: 52px;
                font-size: 0.95rem;
            }
        }
        
        .content-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
        }
        
        .content-section h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 10px;
            text-align: center;
        }
        
        .content-section h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 8px;
            margin-top: 15px;
            text-align: center;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 10px 0;
        }
        
        .benefit-card {
            background: white;
            padding: 24px;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            border-color: #10b981;
        }
        
        .benefit-card-icon {
            width: 56px;
            height: 56px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            border-radius: 12px;
            background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
        }
        
        .benefit-card h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 12px;
        }
        
        .benefit-card p {
            color: #6b7280;
            line-height: 1.6;
            margin: 0;
            font-size: 0.95rem;
        }
        
        .quality-list {
            list-style: none;
            padding: 0;
            margin: 10px 0;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .quality-list li {
            padding: 12px 0;
            padding-left: 40px;
            position: relative;
            color: #374151;
            line-height: 1.6;
            font-size: 1.05rem;
            border-bottom: 1px solid #f3f4f6;
        }
        
        .quality-list li:last-child {
            border-bottom: none;
        }
        
        .quality-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: bold;
            font-size: 1.5rem;
            width: 28px;
            height: 28px;
            background: #f0fdf4;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin: 10px 0;
        }
        
        .step-card {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 12px;
            border: 2px solid #e5e7eb;
            transition: all 0.3s ease;
        }
        
        .step-card:hover {
            border-color: #10b981;
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
        }
        
        .step-card-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            border-radius: 16px;
            background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
        }
        
        .step-card .step-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #10b981;
            margin-bottom: 12px;
            line-height: 1;
        }
        
        .step-card h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 8px;
        }
        
        .workflow-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 10px 0;
        }
        
        .workflow-card {
            background: white;
            padding: 24px;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
        }
        
        .workflow-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            border-color: #10b981;
        }
        
        .workflow-card-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            border-radius: 12px;
            background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
        }
        
        .workflow-card-icon.telegram {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
        }
        
        .workflow-card-icon.email {
            background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
        }
        
        .workflow-card-icon.drive {
            background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
        }
        
        .workflow-card h4 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 12px;
        }
        
        .workflow-card p {
            color: #6b7280;
            line-height: 1.6;
            margin: 0;
            font-size: 0.95rem;
        }
        
        .trial-section {
            background: white;
            border: 2px solid #10b981;
            border-radius: 20px;
            padding: 20px 32px;
            margin: 15px 0;
            text-align: center;
            box-shadow: 0 10px 40px rgba(16, 185, 129, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .trial-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #10b981, #34d399, #10b981);
            background-size: 200% 100%;
            animation: gradientShift 3s ease infinite;
        }
        
        .trial-section h3 {
            color: #111827;
            margin-bottom: 8px;
            font-size: 2rem;
            font-weight: 700;
            position: relative;
        }
        
        .trial-section .trial-badge {
            display: inline-block;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 24px;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
        }
        
        .trial-section > p {
            color: #374151;
            line-height: 1.7;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        
        .trial-section ul {
            text-align: left;
            max-width: 500px;
            margin: 20px auto;
            list-style: none;
            padding: 0;
            background: #f9fafb;
            border-radius: 12px;
            padding: 20px;
        }
        
        .trial-section li {
            padding: 12px 0;
            padding-left: 36px;
            position: relative;
            color: #374151;
            font-size: 1rem;
            line-height: 1.6;
        }
        
        .trial-section li:not(:last-child) {
            border-bottom: 1px solid #e5e7eb;
        }
        
        .trial-section li:before {
            content: "✓";
            position: absolute;
            left: 8px;
            color: white;
            font-weight: bold;
            font-size: 1rem;
            width: 20px;
            height: 20px;
            background: #10b981;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
        }
        
        .trial-section .trial-cta {
            margin-top: 28px;
        }
        
        .trial-section .trial-cta .btn {
            min-width: 240px;
        }
        
        .contact-section {
            text-align: center;
            padding: 14px 20px;
            background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
            border-radius: 16px;
            margin: 15px 0;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
        }
        
        .contact-section h3 {
            margin-top: 0;
            margin-bottom: 20px;
        }
        
        .contact-section a {
            color: #10b981;
            font-weight: 600;
            font-size: 1.2rem;
            text-decoration: none;
            display: inline-block;
            margin: 8px;
        }
        
        .contact-section a:hover {
            text-decoration: underline;
        }
        
        .whatsapp-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #25D366;
            color: white !important;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none !important;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .whatsapp-link:hover {
            background: #20BA5A;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
            text-decoration: none !important;
        }
        
        @media (max-width: 768px) {
            .b2b-hero-section {
                padding: 30px 20px 20px;
            }
            
            .b2b-hero-section h1 {
                font-size: 2rem;
            }
            
            .b2b-hero-section .subtitle {
                font-size: 1.2rem;
            }
            
            .b2b-hero-section .description {
                font-size: 1rem;
            }
            
            /* Hide header with three columns (ID PHOTO, Hero Banner, AI SKINCARE ADVISOR) on mobile */
            .header {
                display: none !important;
            }
            
            /* Switch navigation in footer: hide desktop, show mobile */
            .footer-nav-desktop {
                display: none !important;
            }
            
            .footer-nav-mobile {
                display: block !important;
            }
            
            /* Switch logo: hide desktop, show mobile */
            .logo-desktop {
                display: none !important;
            }
            
            .logo-mobile {
                display: block !important;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .cta-buttons .btn {
                width: 100%;
            }
            
            .content-section {
                padding: 20px 20px;
            }
            
            .content-section h2 {
                font-size: 2rem;
            }
            
            .content-section h3 {
                font-size: 1.5rem;
            }
            
            .benefits-grid,
            .workflow-cards {
                grid-template-columns: 1fr;
            }
        }

/* Nav handled by site.css */
        .photo-studios-page .site-breadcrumb{font-size:13px;color:#666;padding:20px clamp(20px,5vw,64px) 0;max-width:940px;margin:0 auto;display:flex;gap:6px;align-items:center}
        .photo-studios-page .site-breadcrumb a{color:#666;text-decoration:none}
        .photo-studios-page .site-breadcrumb a:hover{text-decoration:underline}
        /* Mobile nav handled by site.css */
