* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --primary: #C17817;
            --primary-dark: #9A5F12;
            --primary-light: #D89B3F;
            --accent: #1B4332;
            --accent-light: #2D6A4F;
            --accent-lighter: #40916C;
            --dark: #0A0E27;
            --gray-900: #1A1D2E;
            --gray-800: #2E3244;
            --gray-700: #4A5066;
            --gray-600: #6B7280;
            --gray-500: #9CA3AF;
            --gray-400: #D1D5DB;
            --gray-300: #E5E7EB;
            --gray-200: #F3F4F6;
            --gray-100: #F9FAFB;
            --white: #FFFFFF;
            --success: #059669;
            --whatsapp: #25D366;
            --gold: #FFD700;
            --gradient-primary: linear-gradient(135deg, #C17817 0%, #D89B3F 100%);
            --gradient-accent: linear-gradient(135deg, #1B4332 0%, #40916C 100%);
            --gradient-overlay: linear-gradient(135deg, rgba(193, 120, 23, 0.05) 0%, rgba(27, 67, 50, 0.05) 100%);
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: var(--gray-900);
            background: var(--white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
        }
        
        /* Top Info Bar */
        .top-bar {
            background: var(--dark);
            color: var(--white);
            padding: 12px 0;
            font-size: 14px;
        }
        
        .top-bar-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .top-bar-left {
            display: flex;
            gap: 32px;
            align-items: center;
        }
        
        .top-bar-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.9);
        }
        
        .top-bar-item a {
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
        }
        
        .top-bar-social {
            display: flex;
            gap: 16px;
        }
        
        .social-icon {
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-icon:hover {
            background: var(--primary);
            transform: translateY(-2px);
        }
        
        /* Navigation */
        nav {
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        nav.scrolled {
            box-shadow: var(--shadow-lg);
        }
        
        .nav-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 90px;
        }
        
        .logo-wrapper {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .logo {
            font-size: 32px;
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
            text-decoration: none;
            font-family: 'Playfair Display', serif;
        }
        
        .logo-tagline {
            font-size: 11px;
            color: var(--gray-600);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-weight: 600;
        }
        
        .nav-links {
            display: flex;
            gap: 48px;
            align-items: center;
        }
        
        .nav-links a {
            color: var(--gray-700);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: color 0.3s ease;
            position: relative;
            padding: 8px 0;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gradient-primary);
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .nav-cta {
            display: flex;
            gap: 16px;
            align-items: center;
        }
        
        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            white-space: nowrap;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: 0 4px 14px 0 rgba(193, 120, 23, 0.4);
            height: 50px;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px 0 rgba(193, 120, 23, 0.5);
        }
        
        .btn-whatsapp {
            background: var(--whatsapp);
            color: var(--white);
            box-shadow: 0 4px 14px 0 rgba(37, 211, 102, 0.4);
            margin-bottom: 20px;
            height: 50px;
        }
        
        .btn-whatsapp:hover {
            background: #20BA5A;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px 0 rgba(37, 211, 102, 0.5);
        }
        
        .btn-accent {
            background: var(--gradient-accent);
            color: var(--white);
            box-shadow: 0 4px 14px 0 rgba(27, 67, 50, 0.4);
        }
        
        .btn-accent:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px 0 rgba(27, 67, 50, 0.5);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: var(--white);
        }
        
        .btn-ghost {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.3);
            height: 50px;
        }
        
        .btn-ghost:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.6);
        }
        
        /* Hero Section */
        .hero {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: var(--dark);
            overflow: hidden;
            padding-top: 90px;
        }
        
        .hero-video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .hero-video-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(10, 14, 39, 0.85) 0%, rgba(27, 67, 50, 0.75) 100%);
        }
        
        .hero-video-bg video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .hero-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.05;
            background-image: 
                repeating-linear-gradient(0deg, transparent, transparent 3px, var(--white) 3px, var(--white) 6px),
                repeating-linear-gradient(90deg, transparent, transparent 3px, var(--white) 3px, var(--white) 6px);
            z-index: 1;
        }
        
        .hero-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 10;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 80px;
            align-items: center;
        }
        
        .hero-content {
            color: var(--white);
        }
        
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(193, 120, 23, 0.2);
            border: 1px solid rgba(193, 120, 23, 0.3);
            padding: 10px 24px;
            border-radius: 50px;
            margin-bottom: 32px;
            backdrop-filter: blur(10px);
        }
        
        .hero-badge-icon {
            font-size: 20px;
        }
        
        .hero-badge-text {
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--gold);
        }
        
        .hero-content h1 {
            font-size: 82px;
            font-weight: 900;
            line-height: 1.05;
            margin-bottom: 32px;
            letter-spacing: -2px;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        }
        
        .hero-content h1 .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }
        
        .hero-description {
            font-size: 22px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 48px;
            max-width: 650px;
        }
        
        .hero-cta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }
        
        .hero-trust-badges {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
        }
        
        .trust-badge {
            text-align: center;
        }
        
        .trust-number {
            font-size: 56px;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 12px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-family: 'Playfair Display', serif;
        }
        
        .trust-label {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 700;
        }
        
        .hero-slider {
            position: relative;
            height: 600px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-2xl);
        }
        
        .hero-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
        }
        
        .hero-slide.active {
            opacity: 1;
        }
        
        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .slider-controls {
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background: var(--primary);
            width: 40px;
            border-radius: 6px;
        }
        
        /* Stats Bar */
        .stats-bar {
            background: var(--gradient-primary);
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
        }
        
        .stats-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="white" opacity="0.1"/></svg>');
            opacity: 0.3;
        }
        
        .stats-container {
            max-width: 1600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 60px;
            position: relative;
            z-index: 2;
        }
        
        .stat-item {
            text-align: center;
            color: var(--white);
        }
        
        .stat-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            margin: 0 auto 20px;
            backdrop-filter: blur(10px);
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 12px;
            font-family: 'Playfair Display', serif;
        }
        
        .stat-text {
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            opacity: 0.95;
        }
        
        /* Section */
        section {
            padding: 120px 40px;
        }
        
        .section-container {
            max-width: 1600px;
            margin: 0 auto;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 80px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .section-label {
            display: inline-block;
            padding: 10px 28px;
            background: var(--gradient-overlay);
            border: 1px solid var(--gray-300);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary);
            margin-bottom: 24px;
        }
        
        h2 {
            font-size: 64px;
            font-weight: 900;
            color: var(--gray-900);
            line-height: 1.15;
            letter-spacing: -2px;
            margin-bottom: 28px;
        }
        
        h2 .highlight {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-description {
            font-size: 20px;
            color: var(--gray-600);
            line-height: 1.8;
        }
        
        /* Wirecut Bricks Prices Section */
        .pricing-section {
            background: var(--gray-100);
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .pricing-card {
            background: var(--white);
            border-radius: 20px;
            padding: 48px;
            box-shadow: var(--shadow-lg);
            border: 2px solid var(--gray-200);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-2xl);
            border-color: var(--primary);
        }
        
        .pricing-card:hover::before {
            transform: scaleX(1);
        }
        
        .pricing-card.featured {
            background: var(--gradient-accent);
            color: var(--white);
            border: none;
            transform: scale(1.05);
        }
        
        .pricing-card.featured::before {
            background: var(--gradient-primary);
            transform: scaleX(1);
        }
        
        .pricing-badge {
            position: absolute;
            top: 24px;
            right: 24px;
            background: var(--gold);
            color: var(--dark);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .pricing-type {
            font-size: 14px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .pricing-card.featured .pricing-type {
            color: var(--gold);
        }
        
        .pricing-name {
            font-size: 32px;
            font-weight: 900;
            margin-bottom: 16px;
            font-family: 'Playfair Display', serif;
            letter-spacing: -1px;
        }
        
        .pricing-card.featured .pricing-name {
            color: var(--white);
        }
        
        .pricing-price {
            font-size: 56px;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 8px;
            font-family: 'Playfair Display', serif;
            color: var(--primary);
        }
        
        .pricing-card.featured .pricing-price {
            color: var(--white);
        }
        
        .pricing-unit {
            font-size: 16px;
            color: var(--gray-600);
            margin-bottom: 32px;
        }
        
        .pricing-card.featured .pricing-unit {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 40px;
        }
        
        .pricing-features li {
            padding: 12px 0;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 16px;
            border-bottom: 1px solid var(--gray-200);
        }
        
        .pricing-card.featured .pricing-features li {
            border-bottom-color: rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.95);
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        .feature-icon {
            color: var(--success);
            font-size: 20px;
            flex-shrink: 0;
        }
        
        .pricing-card.featured .feature-icon {
            color: var(--gold);
        }
        
        .pricing-note {
            background: var(--gray-100);
            border-left: 4px solid var(--primary);
            padding: 24px;
            margin-top: 48px;
            border-radius: 8px;
        }
        
        .pricing-note h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--gray-900);
        }
        
        .pricing-note p {
            color: var(--gray-700);
            line-height: 1.7;
        }
        
        /* Product Gallery Section */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        
        .gallery-item {
            position: relative;
            aspect-ratio: 1;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.4s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-2xl);
            z-index: 10;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
            padding: 24px;
            transform: translateY(100%);
            transition: transform 0.4s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }
        
        .gallery-title {
            color: var(--white);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
        }
        
        .gallery-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 13px;
        }
        
        /* Sizes & Specifications Section */
        .sizes-section {
            background: var(--white);
        }
        
        .sizes-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .size-card {
            background: var(--white);
            border: 2px solid var(--gray-200);
            border-radius: 20px;
            padding: 48px;
            transition: all 0.4s ease;
        }
        
        .size-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-xl);
            transform: translateY(-4px);
        }
        
        .size-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 32px;
            padding-bottom: 24px;
            border-bottom: 2px solid var(--gray-200);
        }
        
        .size-icon {
            width: 72px;
            height: 72px;
            background: var(--gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            box-shadow: 0 8px 16px rgba(193, 120, 23, 0.3);
        }
        
        .size-title {
            flex: 1;
        }
        
        .size-title h3 {
            font-size: 28px;
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 6px;
            font-family: 'Playfair Display', serif;
        }
        
        .size-title p {
            font-size: 14px;
            color: var(--gray-600);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }
        
        .specs-table {
            width: 100%;
        }
        
        .specs-table tr {
            border-bottom: 1px solid var(--gray-200);
        }
        
        .specs-table tr:last-child {
            border-bottom: none;
        }
        
        .specs-table td {
            padding: 16px 0;
            font-size: 16px;
        }
        
        .specs-table td:first-child {
            font-weight: 600;
            color: var(--gray-700);
            width: 50%;
        }
        
        .specs-table td:last-child {
            font-weight: 700;
            color: var(--gray-900);
        }
        
        .spec-highlight {
            color: var(--primary);
            font-weight: 800;
        }
        
        /* Quality Factors Section */
        .quality-section {
            background: var(--dark);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .quality-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(193, 120, 23, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(27, 67, 50, 0.15) 0%, transparent 50%);
        }
        
        .quality-container {
            position: relative;
            z-index: 2;
        }
        
        .quality-section h2,
        .quality-section .section-label {
            color: var(--white);
        }
        
        .quality-section .section-description {
            color: rgba(255, 255, 255, 0.8);
        }
        
        .quality-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        
        .quality-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 48px;
            transition: all 0.4s ease;
        }
        
        .quality-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: var(--primary);
            transform: translateY(-8px);
        }
        
        .quality-number {
            font-size: 72px;
            font-weight: 900;
            line-height: 1;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
            font-family: 'Playfair Display', serif;
        }
        
        .quality-card h3 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--white);
        }
        
        .quality-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            font-size: 16px;
        }
        
        /* Video Section */
        .video-section {
            background: var(--gradient-overlay);
        }
        
        .video-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .video-card {
            position: relative;
            aspect-ratio: 16/9;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            cursor: pointer;
            transition: all 0.4s ease;
        }
        
        .video-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-2xl);
        }
        
        .video-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(193, 120, 23, 0.7), rgba(27, 67, 50, 0.7));
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            transition: opacity 0.4s ease;
        }
        
        .video-card:hover .video-overlay {
            opacity: 0.95;
        }
        
        .play-button {
            width: 90px;
            height: 90px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 24px;
            transition: all 0.3s ease;
        }
        
        .video-card:hover .play-button {
            transform: scale(1.1);
        }
        
        .video-title {
            color: var(--white);
            font-size: 24px;
            font-weight: 800;
            text-align: center;
            padding: 0 32px;
        }
        
        /* Features Section */
        .features-section {
            background: var(--white);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        
        .feature-card {
            background: var(--white);
            border: 2px solid var(--gray-200);
            border-radius: 20px;
            padding: 48px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-2xl);
            border-color: transparent;
        }
        
        .feature-card:hover::before {
            transform: scaleX(1);
        }
        
        .feature-icon-wrapper {
            width: 88px;
            height: 88px;
            background: var(--gradient-primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 44px;
            margin-bottom: 32px;
            box-shadow: 0 10px 20px rgba(193, 120, 23, 0.3);
            transition: transform 0.4s ease;
        }
        
        .feature-card:hover .feature-icon-wrapper {
            transform: scale(1.1) rotate(5deg);
        }
        
        .feature-card h3 {
            font-size: 26px;
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }
        
        .feature-card p {
            color: var(--gray-600);
            line-height: 1.8;
            font-size: 16px;
        }
        
        /* FAQ Section */
        .faq-section {
            background: var(--gray-100);
        }
        
        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .faq-grid {
            display: grid;
            gap: 24px;
        }
        
        .faq-item {
            background: var(--white);
            border: 2px solid var(--gray-200);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
        }
        
        .faq-question {
            padding: 32px 40px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover .faq-question {
            background: var(--gray-50);
        }
        
        .faq-question h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--gray-900);
            margin: 0;
            flex: 1;
        }
        
        .faq-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 24px;
            font-weight: 700;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }
        
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
        }
        
        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 40px 32px;
        }
        
        .faq-answer p {
            font-size: 17px;
            color: var(--gray-700);
            line-height: 1.8;
        }
        
        /* Testimonials Section */
        .testimonials-section {
            background: var(--white);
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        
        .testimonial-card {
            background: var(--white);
            border: 2px solid var(--gray-200);
            border-radius: 20px;
            padding: 48px;
            transition: all 0.4s ease;
            position: relative;
        }
        
        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-2xl);
            border-color: var(--primary);
        }
        
        .quote-icon {
            width: 64px;
            height: 64px;
            background: var(--gradient-primary);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 28px;
            box-shadow: 0 8px 16px rgba(193, 120, 23, 0.3);
        }
        
        .testimonial-text {
            font-size: 18px;
            line-height: 1.8;
            color: var(--gray-700);
            margin-bottom: 32px;
            font-style: italic;
        }
        
        .rating {
            display: flex;
            gap: 6px;
            margin-bottom: 24px;
        }
        
        .star {
            color: var(--gold);
            font-size: 20px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
            padding-top: 24px;
            border-top: 2px solid var(--gray-200);
        }
        
        .author-avatar {
            width: 64px;
            height: 64px;
            background: var(--gradient-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            font-weight: 700;
            color: var(--white);
        }
        
        .author-info h4 {
            font-size: 18px;
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: 4px;
        }
        
        .author-info p {
            font-size: 14px;
            color: var(--gray-600);
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--gradient-accent);
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 50%, rgba(193, 120, 23, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(64, 145, 108, 0.2) 0%, transparent 50%);
        }
        
        .cta-container {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .cta-section h2 {
            color: var(--white);
            font-size: 68px;
            margin-bottom: 28px;
        }
        
        .cta-section p {
            font-size: 24px;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 56px;
            line-height: 1.7;
        }
        
        .cta-buttons {
            display: flex;
            gap: 24px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 80px;
        }
        
        .cta-info {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 48px;
            padding-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .cta-info-item {
            text-align: center;
        }
        
        .cta-info-item h4 {
            font-size: 16px;
            font-weight: 700;
            color: rgba(255, 255, 255, 0.7);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 12px;
        }
        
        .cta-info-item a {
            font-size: 32px;
            font-weight: 900;
            color: var(--white);
            text-decoration: none;
            font-family: 'Playfair Display', serif;
            transition: opacity 0.3s ease;
        }
        
        .cta-info-item a:hover {
            opacity: 0.8;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 100px 40px 40px;
        }
        
        .footer-container {
            max-width: 1600px;
            margin: 0 auto;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 80px;
        }
        
        .footer-brand h3 {
            font-size: 40px;
            font-weight: 900;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 24px;
            font-family: 'Playfair Display', serif;
        }
        
        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            margin-bottom: 32px;
            font-size: 16px;
        }
        
        .footer-social {
            display: flex;
            gap: 16px;
        }
        
        .footer-social a {
            width: 56px;
            height: 56px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 24px;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background: var(--gradient-primary);
            transform: translateY(-4px);
        }
        
        .footer-section h4 {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 28px;
            color: var(--white);
            font-family: 'Playfair Display', serif;
        }
        
        .footer-section a {
            display: block;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            margin-bottom: 16px;
            font-size: 15px;
            transition: color 0.3s ease;
        }
        
        .footer-section a:hover {
            color: var(--primary);
        }
        
        .footer-bottom {
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }
        
        .footer-links {
            display: flex;
            gap: 32px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--white);
        }
        
        /* Floating WhatsApp */
        .whatsapp-float {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 72px;
            height: 72px;
            background: var(--whatsapp);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
            z-index: 999;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            animation: pulse-whatsapp 2s infinite;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.15);
            box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
        }
        
        @keyframes pulse-whatsapp {
            0%, 100% {
                box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            50% {
                box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5), 0 0 0 24px rgba(37, 211, 102, 0);
            }
        }
        
        /* Responsive */
        @media (max-width: 1400px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .hero-slider {
                max-width: 700px;
                margin: 0 auto;
            }
            
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pricing-card.featured {
                grid-column: span 2;
            }
        }
        
        @media (max-width: 1024px) {
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .quality-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .top-bar-container {
                flex-direction: column;
                gap: 16px;
                padding: 16px 24px;
            }
            
            .top-bar-left {
                flex-direction: column;
                gap: 12px;
            }
            
            .nav-container {
                height: 70px;
                padding: 0 24px;
            }
            
            .nav-links {
                display: none;
            }
            
            .logo {
                font-size: 28px;
            }
            
            .hero-content h1 {
                font-size: 48px;
            }
            
            .hero-description {
                font-size: 18px;
            }
            
            .hero-trust-badges {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            
            h2 {
                font-size: 42px;
            }
            
            .stats-container {
                grid-template-columns: 1fr;
            }
            
            .pricing-grid,
            .gallery-grid,
            .sizes-grid,
            .features-grid,
            .quality-grid,
            .video-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.featured {
                grid-column: span 1;
            }
            
            .cta-section h2 {
                font-size: 42px;
            }
            
            .cta-info {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }


/* MOBILE DRAWER (full-screen) - ADDED BY CHATGPT */
/* MOBILE DRAWER (full-screen) - ADDED BY CHATGPT */
.mobile-drawer{position:fixed;inset:0;display:none;pointer-events:none;z-index:1300}
.mobile-drawer[aria-hidden="false"]{display:block;pointer-events:auto}
.drawer-backdrop{position:absolute;inset:0;background:rgba(3,6,23,0.45);opacity:0;transition:opacity .35s ease}
.mobile-drawer.open .drawer-backdrop{opacity:1}
.drawer-panel{position:fixed;right:0;top:0;height:100vh;width:86vw;max-width:420px;background:linear-gradient(180deg,#ffffff,#fbfdff);box-shadow:-18px 0 40px rgba(8,12,24,0.12);transform:translateX(100%);transition:transform .42s cubic-bezier(.22,.9,.35,1);display:flex;flex-direction:column;padding:28px 22px;gap:18px}
.mobile-drawer.open .drawer-panel{transform:translateX(0)}
.drawer-close{position:absolute;top:14px;right:14px;background:transparent;border:0;font-size:32px;line-height:1;color:var(--gray-700);cursor:pointer}
.drawer-nav{display:flex;flex-direction:column;gap:10px;margin-top:36px}
.drawer-nav a{padding:12px 14px;border-radius:10px;font-weight:700}
.drawer-nav a:hover{background:rgba(3,6,23,0.03)}
.drawer-cta{margin-top:auto;display:flex;flex-direction:column;gap:10px}
.drawer-cta .btn{width:100%}
@media (max-width: 900px){.nav-cta{display:none} .nav-toggle{display:flex} .drawer-panel{width:100vw;max-width:none}}
/* End drawer CSS */




/* QUICK FIX: ensure desktop nav links hide on small screens and navbar is fixed */
@media (max-width: 900px){
  .nav-links, #desktop-nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .nav-toggle { display: flex !important; }
  /* ensure header stays at top */
  nav#navbar { position: fixed !important; top: 0; left: 0; right: 0; z-index: 1200; background: rgba(255,255,255,0.95); }
  .nav-container { height: 74px; align-items: center; padding: 0 16px; }
  main { padding-top: 80px; } /* push content under fixed header */
}

/* safe desktop fallback: ensure nav-links display on larger screens */
@media (min-width: 901px){
  .nav-links, #desktop-nav-links { display:flex !important; }
  .nav-toggle { display: none !important; }
}


/* MOBILE OVERRIDE - ensure desktop nav hidden and hamburger visible on small screens
   This is appended at end to override previous conflicting rules. */
@media (max-width: 900px) {
  /* hide desktop nav links that sometimes leak into the top */
  .nav-links, #desktop-nav-links { display: none !important; }
  /* hide desktop CTA buttons */
  .nav-cta, .nav-cta-desktop { display: none !important; }
  /* show hamburger */
  .nav-toggle { display: flex !important; align-items:center; justify-content:center; }
  /* ensure mobile drawer covers full screen width */
  .drawer-panel { width:100vw !important; max-width: none !important; }
  /* reduce header height if needed */
  nav#navbar { height:70px !important; }
  main { padding-top: 74px !important; }
}

@media (max-width:900px){
  .nav-links, #desktop-nav-links { display: none !important; }
  .nav-cta, .nav-cta-desktop { display: none !important; }
  .nav-toggle { display: flex !important; }
  .drawer-panel { width:100vw !important; max-width:none !important; }
  nav#navbar { height:70px !important; }
  main { padding-top:74px !important; }
}

/* === PREMIUM MOBILE DRAWER (ADDED) === */
/* === PREMIUM MOBILE DRAWER (ADDED) === */
:root{ --drawer-z:99999; }

#navbar.navbar, nav#navbar { position: fixed !important; top:0; left:0; right:0; height:72px; z-index: calc(var(--drawer-z) - 10); background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85)); backdrop-filter: blur(6px); }

.main-content, main { padding-top: 76px !important; }

.nav-toggle { display: none; border:0; background:transparent; padding:8px; cursor:pointer; align-items:center; justify-content:center; gap:6px; }
.nav-toggle .bar{ display:block; width:22px; height:2.5px; background:#111; border-radius:3px; transition: transform .28s ease, opacity .2s ease; }
.nav-toggle.open .bar:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav-toggle.open .bar:nth-child(2){ opacity:0; transform: scaleX(0); }
.nav-toggle.open .bar:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none !important; visibility: hidden !important; }

  .nav-toggle { display:flex !important; position: fixed !important; top: 12px !important; right: 14px !important; z-index: var(--drawer-z) !important; width:46px; height:46px; background: rgba(0,0,0,0.35); border-radius:10px; box-shadow: 0 8px 30px rgba(2,6,23,0.28); }
  .nav-toggle .bar { background: #fff !important; }

  .mobile-drawer{ position:fixed; inset:0; display:none; pointer-events:none; z-index: var(--drawer-z); }
  .mobile-drawer[aria-hidden="false"]{ display:block; pointer-events:auto; }
  .drawer-backdrop{ position:absolute; inset:0; background: linear-gradient(180deg, rgba(6,10,20,0.78), rgba(2,6,23,0.86)); opacity:0; transition: opacity .45s ease; }
  .mobile-drawer.open .drawer-backdrop{ opacity:1; }

  .drawer-panel{ position:fixed; inset:0; display:flex; align-items:center; justify-content:center; padding:48px; transition: transform .45s cubic-bezier(.22,.9,.35,1), opacity .45s ease; transform: translateY(10px); opacity:0; }
  .mobile-drawer.open .drawer-panel{ transform: translateY(0); opacity:1; }

  .drawer-inner{ width:100%; max-width:720px; text-align:center; display:flex; flex-direction:column; gap:22px; align-items:center; justify-content:center; color:#fff; z-index:2; }
  .drawer-heading{ font-size:28px; font-weight:800; color:#fff; text-shadow:0 6px 30px rgba(0,0,0,0.6); }

  .drawer-nav{ display:flex; flex-direction:column; gap:14px; width:100%; align-items:center; }
  .drawer-nav a{ display:block; width:100%; max-width:480px; padding:16px 20px; border-radius:14px; background: rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.06); backdrop-filter: blur(6px); color:#fff; font-weight:700; font-size:18px; text-decoration:none; transition: transform .18s ease, box-shadow .18s ease; }
  .drawer-nav a:hover{ transform: translateY(-4px); box-shadow: 0 18px 50px rgba(0,0,0,0.5); }

  .drawer-cta{ margin-top:10px; display:flex; flex-direction:column; gap:12px; width:100%; max-width:480px; }
  .drawer-cta .btn{ width:100%; padding:14px; border-radius:12px; font-weight:800; }

  .drawer-close{ position:fixed; top:18px; right:18px; background:transparent; border:0; color:#fff; font-size:34px; z-index:3; cursor:pointer; }

  .drawer-glow{ position:absolute; inset:0; pointer-events:none; background: radial-gradient(600px 300px at 10% 20%, rgba(11,116,222,0.12), transparent 12%), radial-gradient(500px 260px at 85% 80%, rgba(2,200,150,0.06), transparent 14%); filter: blur(30px); opacity:0; transition: opacity .9s ease; }
  .mobile-drawer.open .drawer-glow{ opacity:1; transition-delay:.06s; }

  .hero { padding-top: 90px; }
}

.body-no-scroll { overflow: hidden !important; height: 100% !important; }
/* === END PREMIUM MOBILE DRAWER === */
.mobile-drawer.open .drawer-panel a {
    background: black;
}


/* ------------------------------------------------------
   PREMIUM SVG HAMBURGER (OPTION A)
------------------------------------------------------ */
.nav-toggle {
  display: none;
  border: none;
  background: rgba(0,0,0,0.40);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  position: fixed;
  top: 12px;
  right: 14px;
  z-index: 99999;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,0.45);
}

.nav-toggle svg {
  stroke: #fff !important;
  pointer-events: none;
}

.nav-toggle .bar {
  display: none !important;
}

/* SVG → X ANIMATION */
.nav-toggle.open svg line:nth-child(1) {
  transform-origin: 50% 50%;
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.open svg line:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open svg line:nth-child(3) {
  transform-origin: 50% 50%;
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile only show */
@media (max-width:900px){
  .nav-toggle { display:flex !important; }
  .nav-links, .nav-cta { display:none !important; }
}

/* Desktop hide mobile drawer */
@media (min-width:901px){
  #mobile-drawer, .drawer-panel, .drawer-backdrop, .drawer-inner, .drawer-close {
    display:none !important;
  }
}

/* ------------------------------------------------------
   PREMIUM FULLSCREEN MOBILE DRAWER
------------------------------------------------------ */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 99995;
  display: none;
}

.mobile-drawer.open {
  display: block;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 20, 0.85);
  transition: 0.4s;
  opacity: 0;
}

.mobile-drawer.open .drawer-backdrop {
  opacity: 1;
}

.drawer-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  transform: translateY(16px);
  opacity: 0;
  transition: 0.4s ease;
}

.mobile-drawer.open .drawer-panel {
  transform: translateY(0);
  opacity: 1;
}

.drawer-inner {
  width: 100%;
  max-width: 700px;
  text-align: center;
  color: #fff;
}

.drawer-heading {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-nav a {
  background: rgba(255,255,255,0.08);
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  backdrop-filter: blur(10px);
  color: #fff;
}

.drawer-close {
  font-size: 34px;
  color: #fff;
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.4);
  border-radius: 12px;
  width: 46px;
  height: 46px;
  border: none;
}

/* scroll lock */
.body-no-scroll {
  overflow: hidden;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
}

/* ============================================
   MOBILE CONTENT CENTER ALIGN FIX
   (Does NOT affect desktop)
   ============================================ */
@media (max-width: 900px) {

  /* Center align ALL text inside sections */
  section,
  .main-content,
  .content-wrapper,
  .hero-text,
  .text-block,
  .stats-section,
  .card,
  .feature,
  .benefits,
  .pricing-card {
    text-align: center !important;
  }

  /* Make buttons centered (block-level + auto margin) */
  .btn,
  .button,
  .cta-btn,
  .primary-btn,
  .secondary-btn {
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Center stats / counters (15K+, 800+, 100%) */
  .stats-box,
  .stats-item,
  .single-counter {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* If inside flex rows — convert to column centered */
  .row,
  .flex,
  .flex-row {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  /* Make pricing cards centered */
  .pricing-card,
  .product-card,
  .info-card {
    margin-left: auto !important;
    margin-right: auto !important;
  }

}
