:root {
    --primary-blue: #0040D1;
    --primary-green: #00C26C;
    --dark-blue: #002B8F;
    --light-blue: #E6EFFF;
    --neutral-white: #FFFFFF;
    --neutral-light: #F8F9FA;
    --neutral-grey: #6C757D;
    --neutral-dark: #212529;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-primary); color: var(--neutral-dark); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body.loading { overflow: hidden; }
p { font-size: 0.9rem; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Page Loader with Australia Map */
.page-loader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(255, 255, 255, 0.95); display: flex; align-items: center; justify-content: center; z-index: 9999; transition: opacity 0.5s ease, visibility 0.5s ease; }
.page-loader.loaded { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; }
.australia-loader { width: 200px; height: 150px; margin-bottom: 1rem; }
.australia-outline { stroke: var(--primary-blue); stroke-dasharray: 1000; stroke-dashoffset: 1000; animation: drawAustralia 2s ease-in-out infinite, glowPulse 2s ease-in-out infinite; }
@keyframes drawAustralia { 0%, 100% { stroke-dashoffset: 1000; stroke: var(--primary-blue); } 50% { stroke-dashoffset: 0; stroke: var(--primary-green); } }
@keyframes glowPulse { 0%, 100% { filter: drop-shadow(0 0 5px var(--primary-blue)); } 50% { filter: drop-shadow(0 0 15px var(--primary-green)); } }
.loader-text { font-size: 1.1rem; font-weight: 600; color: var(--primary-blue); animation: fadeInOut 2s ease-in-out infinite; }
@keyframes fadeInOut { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

/* Skeleton Loading Styles */
.skeleton { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; border-radius: 8px; }
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skeleton-text { height: 1rem; margin-bottom: 0.5rem; }
.skeleton-title { height: 2.5rem; margin-bottom: 1rem; width: 70%; }
.skeleton-subtitle { height: 1.25rem; margin-bottom: 1rem; width: 50%; }
.skeleton-button { height: 3rem; width: 200px; margin: 0.5rem; }
.skeleton-card { height: 300px; border-radius: 12px; }
.skeleton-image { height: 200px; border-radius: 8px; margin-bottom: 1rem; }
.skeleton-icon { width: 70px; height: 70px; border-radius: 12px; margin-bottom: 1rem; }
.skeleton-avatar { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 1rem; }

/* Show skeletons only during loading */
.skeleton { display: none; }
body.loading .skeleton { display: block; }
body.loading .hero-ctas .skeleton { display: inline-block; }

/* Hide actual content while loading */
body.loading .hero-title,
body.loading .hero-subtitle,
body.loading .hero-ctas a,
body.loading .hero-trust-badges,
body.loading .service-card h3,
body.loading .service-card p,
body.loading .service-link,
body.loading .service-icon,
body.loading .industry-card h3,
body.loading .industry-icon,
body.loading .testimonial-text,
body.loading .testimonial-author,
body.loading .blog-card h3,
body.loading .blog-card p,
body.loading .pricing-card h3,
body.loading .pricing-features,
body.loading .team-member h3,
body.loading .team-member p,
body.loading .usp-card h3,
body.loading .usp-card p { opacity: 0; visibility: hidden; }

/* Smooth transition when content loads */
.hero-title, .hero-subtitle, .hero-ctas,
.service-card h3, .service-card p,
.industry-card h3, .testimonial-text,
.blog-card h3, .pricing-card h3 { transition: opacity 0.5s ease, visibility 0.5s ease; }

/* Premium Sticky Header - Diffco Inspired */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 9999; transition: all 220ms ease; background: rgba(10, 14, 24, 0.25); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.header.is-scrolled { background: #ffffff; backdrop-filter: none; -webkit-backdrop-filter: none; border-bottom: 1px solid rgba(9, 18, 28, 0.06); box-shadow: 0 8px 24px rgba(9, 18, 28, 0.06); }
.header-container { max-width: 1400px; margin: 0 auto; padding: 0 20px; height: 76px; display: flex; align-items: center; gap: 2rem; }
.header-logo { display: flex; align-items: center; }
.header-logo a { text-decoration: none; display: flex; align-items: center; position: relative; height: 100%; }
.logo-image { height: 40px; width: auto; transition: opacity 220ms ease; }
.logo-light { display: block; opacity: 1; visibility: visible; }
.logo-dark { display: none; opacity: 0; visibility: hidden; position: absolute; top: 0; left: 0; }
.header.is-scrolled .logo-light { display: none !important; opacity: 0; visibility: hidden; }
.header.is-scrolled .logo-dark { display: block !important; opacity: 1; visibility: visible; position: relative; }
.logo-text { font-size: 1.5rem; font-weight: 700; color: white; transition: color 220ms ease; letter-spacing: -0.02em; }
.header.is-scrolled .logo-text { color: #0A121C; }
.logo-accent { color: var(--primary-blue); }

/* Promo Pill */
.promo-pill { display: inline-flex; align-items: center; gap: 0.5rem; background: #EEF6FF; padding: 8px 14px; border-radius: 9999px; font-size: 12px; font-weight: 500; letter-spacing: 0.2px; color: #0A121C; transition: all 220ms ease; opacity: 0.92; cursor: default; }
.header.is-scrolled .promo-pill { opacity: 1; }
.pill-icon { width: 14px; height: 14px; animation: twinkle 2.5s ease-in-out infinite; }
@keyframes twinkle { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Header Navigation */
.header-nav { flex: 1; display: flex; justify-content: center; }
.nav-menu { display: flex; list-style: none; gap: 2rem; align-items: center; margin: 0; padding: 0; }
.nav-menu a { text-decoration: none; color: white; font-weight: 500; font-size: 14px; transition: all 220ms ease; position: relative; padding-bottom: 4px; letter-spacing: -0.01em; }
.nav-menu a:hover, .nav-menu a.is-active { color: white; }
.nav-menu a::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--primary-green); transform: scaleX(0); transition: transform 220ms ease; }
.nav-menu a:hover::after, .nav-menu a.is-active::after { transform: scaleX(1); }
.header.is-scrolled .nav-menu a { color: #0A121C; }
.header.is-scrolled .nav-menu a:hover, .header.is-scrolled .nav-menu a.is-active { color: var(--primary-blue); }
.header.is-scrolled .nav-menu a::after { background: var(--primary-blue); }

/* Header CTAs */
.header-ctas { display: flex; gap: 0.75rem; align-items: center; }
.btn-header-secondary { padding: 0.625rem 1.5rem; background: transparent; color: white; border: 2px solid rgba(255, 255, 255, 0.3); border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 14px; transition: all 220ms ease; display: inline-flex; align-items: center; gap: 0.5rem; letter-spacing: -0.01em; }
.btn-header-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.5); }
.btn-header-secondary i { width: 18px; height: 18px; }
.btn-header-phone { width: 44px; height: 44px; background: white; color: var(--primary-blue); border-radius: 50%; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; transition: all 220ms ease; }
.btn-header-phone:hover { background: rgba(255, 255, 255, 0.9); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3); }
.btn-header-phone i { width: 20px; height: 20px; }
.header.is-scrolled .btn-header-phone { background: linear-gradient(94.67deg, #9935e8 0%, #e85535 100%); color: white; }
.header.is-scrolled .btn-header-phone:hover { background: linear-gradient(94.67deg, #8020d0 0%, #d03020 100%); box-shadow: 0 8px 20px rgba(153, 53, 232, 0.4); }
.header.is-scrolled .btn-header-secondary { color: #0A121C; border-color: rgba(9, 18, 28, 0.2); }
.header.is-scrolled .btn-header-secondary:hover { background: rgba(0, 64, 209, 0.05); border-color: var(--primary-blue); color: var(--primary-blue); }

/* Mobile Menu Toggle */
.mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; color: white; transition: color 220ms ease; }
.header.is-scrolled .mobile-menu-toggle { color: #0A121C; }
.mobile-menu-toggle i { width: 24px; height: 24px; }

/* Mobile Drawer */
.mobile-drawer { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 10000; pointer-events: none; }
.mobile-drawer.is-open { pointer-events: auto; }
.mobile-drawer-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10, 14, 24, 0.6); backdrop-filter: blur(8px); opacity: 0; transition: opacity 300ms ease; }
.mobile-drawer.is-open .mobile-drawer-overlay { opacity: 1; }
.mobile-drawer-content { position: absolute; top: 0; right: 0; bottom: 0; width: 100%; max-width: 400px; background: white; transform: translateX(100%); transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1); overflow-y: auto; padding: 2rem; display: flex; flex-direction: column; gap: 2rem; }
.mobile-drawer.is-open .mobile-drawer-content { transform: translateX(0); }
.drawer-close { align-self: flex-end; background: none; border: none; cursor: pointer; padding: 0.5rem; color: #0A121C; }
.drawer-close i { width: 28px; height: 28px; }
.mobile-pill { margin-bottom: 1rem; }
.mobile-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-nav a { text-decoration: none; color: #0A121C; font-weight: 500; font-size: 18px; display: block; padding: 0.5rem 0; transition: color 220ms ease; }
.mobile-nav a:hover { color: var(--primary-blue); }
.mobile-ctas { display: flex; flex-direction: column; gap: 1rem; margin-top: auto; }
.mobile-ctas .btn-header-primary, .mobile-ctas .btn-header-secondary { justify-content: center; width: 100%; }
.mobile-ctas .btn-header-secondary { color: #0A121C; border-color: rgba(9, 18, 28, 0.2); }

.sticky-cta { position: fixed; bottom: 30px; right: 30px; background: var(--primary-green); color: white; border: none; padding: 1rem 1.5rem; border-radius: 50px; font-weight: 600; font-size: 1rem; cursor: pointer; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 0.5rem; z-index: 999; opacity: 0; transform: translateY(100px); transition: var(--transition); }
.sticky-cta.visible { opacity: 1; transform: translateY(0); }
.sticky-cta:hover { background: #00A85D; transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0, 194, 108, 0.3); }

.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; border: none; cursor: pointer; font-size: 1rem; }
.btn-primary { background: linear-gradient(94.67deg, #9935e8 0%, #e85535 100%); color: white; border-radius: 12px; transition: all 0.3s ease, transform 0.2s ease; }
.btn-primary:hover { background: linear-gradient(94.67deg, #8020d0 0%, #d03020 100%); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(153, 53, 232, 0.4); }
.btn-secondary { background: transparent; color: #000000; border: 2px solid #000000; }
.btn-secondary:hover { background: #000000; color: white; }
.btn-outline { background: transparent; color: var(--primary-blue); border-color: var(--primary-blue); }
.btn-outline:hover { background: var(--primary-blue); color: white; }
.btn-large { padding: 1rem 2rem; font-size: 0.9rem; }
.btn-block { width: 100%; justify-content: center; }

/* Hero Section - Diffco Inspired */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 140px 20px 100px; overflow: hidden; background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%); }
.hero-background { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E'); opacity: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 50% 50%, rgba(0, 64, 209, 0.1) 0%, transparent 70%); }
.bubble-container { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; z-index: 1; pointer-events: none; overflow: hidden; }
bubles { border-radius: 100%; position: absolute; pointer-events: none; background: #20e3a2; box-shadow: 10px 10px 30px #31c8a2, -10px -10px 30px #31c8a2; transform: translate(-50%, -50%); animation: colorgen 1s infinite; }
@keyframes colorgen { 0% { opacity: 1; filter: hue-rotate(0deg); } 100% { opacity: 0; filter: hue-rotate(270deg); } }
.hero-container { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto; width: 100%; }
.hero-content { text-align: left; max-width: 900px; margin-bottom: 5rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); padding: 0.5rem 1rem; border-radius: 50px; color: white; font-size: 13px; margin-bottom: 2rem; border: 1px solid rgba(255, 255, 255, 0.2); font-weight: 500; }
.hero-badge i { width: 16px; height: 16px; color: var(--primary-green); }
.hero-title { font-size: 3.2rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; color: white; letter-spacing: -0.03em; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
.gradient-text { background: linear-gradient(135deg, #FFA500 0%, #FF1493 50%, #00CED1 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 2.5rem; max-width: 700px; line-height: 1.6; font-weight: 400; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-hero-primary { padding: 1rem 2rem; font-size: 0.9rem; font-weight: 600; background: var(--primary-green); color: white; border: none; border-radius: 8px; text-decoration: none; transition: all 0.3s ease; display: inline-block; }
.btn-hero-primary:hover { background: #00b359; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 204, 102, 0.3); }
.btn-hero-secondary { padding: 1rem 2rem; font-size: 0.9rem; font-weight: 600; background: transparent; color: white; border: 2px solid white; border-radius: 8px; text-decoration: none; transition: all 0.3s ease; display: inline-block; }
.btn-hero-secondary:hover { background: white; color: var(--neutral-dark); transform: translateY(-2px); }

/* Hero Service Cards */
.hero-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.hero-service-card { position: relative; background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px; padding: 2rem; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer; overflow: hidden; min-height: 180px; }
.hero-service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(255, 20, 147, 0.1) 100%); opacity: 0; transition: opacity 0.4s ease; }
.hero-service-card:hover { transform: translateY(-8px); border-color: rgba(255, 255, 255, 0.3); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }
.hero-service-card:hover::before { opacity: 1; }
.service-card-content { position: relative; z-index: 2; margin-bottom: 3rem; }
.service-card-content h3 { font-size: 1.5rem; font-weight: 700; color: white; margin-bottom: 1rem; line-height: 1.3; }
.service-card-content p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); line-height: 1.6; margin: 0; }
.service-card-icon { position: absolute; bottom: 2.5rem; left: 2.5rem; width: 40px; height: 40px; color: rgba(255, 255, 255, 0.3); transition: all 0.4s ease; z-index: 1; display: flex; align-items: center; justify-content: center; }
.service-card-icon i { width: 24px; height: 24px; }
.hero-service-card:hover .service-card-icon { color: var(--primary-green); transform: scale(1.1); }
.service-card-arrow { position: absolute; bottom: 2.5rem; right: 2.5rem; width: 40px; height: 40px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: all 0.4s ease; z-index: 2; }
.service-card-arrow i { width: 20px; height: 20px; }
.hero-service-card:hover .service-card-arrow { background: var(--primary-green); transform: translateX(4px); }

.fade-in { animation: fadeInUp 0.8s ease-out forwards; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.4s; }
.fade-in:nth-child(4) { animation-delay: 0.6s; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.scroll-fade { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.scroll-fade.visible { opacity: 1; transform: translateY(0); }

/* Clutch Recognition Section */
.clutch-recognition { padding: 100px 20px; background: #FAFBFC; }
.clutch-container { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.clutch-content { padding-right: 2rem; }
.clutch-heading { font-size: 2rem; font-weight: 500; line-height: 1.2; color: var(--neutral-dark); margin-bottom: 2.5rem; letter-spacing: -0.02em; }
.clutch-copy { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.clutch-copy p { font-size: 0.9rem; line-height: 1.7; color: #000000; margin: 0; }
.clutch-cta { margin-top: 1rem; }

/* Stat Boxes - 2+2+1 Grid Layout */
.clutch-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.stat-box { border-radius: 20px; padding: 2rem; position: relative; overflow: hidden; transition: all 0.3s ease; border: none; min-height: 180px; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.stat-box:hover { transform: translateY(-4px); }
.stat-box-peach { background: #FDECD8 !important; }
.stat-box-blue { background: #DAEBF3 !important; }
.stat-box-pink { background: #FFDDE5 !important; }
.stat-box-purple { background: #E1E8FF !important; }
.stat-box-blue-gradient { background: #A6B5E2 !important; }
.stat-box-wide { grid-column: 1 / -1; }
.stat-decoration { position: absolute; top: 1rem; right: 1rem; width: 100px; height: 100px; opacity: 0.7; animation: floatIcon 3s ease-in-out infinite; }
.stat-decoration img { width: 100%; height: 100%; object-fit: contain; }
@keyframes floatIcon { 
    0%, 100% { transform: translateY(0px) translateX(0px); } 
    25% { transform: translateY(-5px) translateX(3px); } 
    50% { transform: translateY(0px) translateX(5px); } 
    75% { transform: translateY(5px) translateX(3px); } 
}
.stat-label { font-size: 0.8125rem; font-weight: 600; color: rgba(0, 0, 0, 0.6); margin-bottom: 0.75rem; position: relative; z-index: 2; }
.stat-value { font-size: 2rem; font-weight: 700; color: rgb(45 45 45); line-height: 1; margin-bottom: 0.5rem; letter-spacing: -0.02em; position: relative; z-index: 2; }
.stat-text { font-size: 0.8375rem; font-weight: 600; color: #494b4d; margin: 0 0 0.5rem 0; position: relative; z-index: 2; }
.stat-description { font-size: 0.875rem; line-height: 1.5; color: rgba(0, 0, 0, 0.6); margin: 0; position: relative; z-index: 2; }
.stat-box-wide .stat-label, .stat-box-wide .stat-value, .stat-box-wide .stat-text, .stat-box-wide .stat-description { color: #000000; }
.stat-decoration-revenue { color: rgba(0, 0, 0, 0.25); }

/* Services Section - AONE 1:1 Match */
.td-services { padding: 80px 0 60px 0; background: #FFFFFF; overflow-x: clip; }
.td-services-container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* Header - Two Column */
.td-services-header { display: grid; grid-template-columns: 55% 45%; gap: 3rem; align-items: flex-start; margin-bottom: 3.5rem; }
.td-services-title { font-size: 2rem; font-weight: 400; line-height: 1.3; color: #0A121C; margin: 0; letter-spacing: -0.01em; }
.td-services-title strong { font-weight: 700; }
.td-services-header-right { display: flex; align-items: center; }
.td-services-description { font-size: 0.9rem; font-weight: 400; line-height: 1.7; color: #0A121C; margin: 0; }

/* Grid - 2 Rows with Horizontal Scroll */
.td-services-grid { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 3rem; }
.td-services-row { display: flex; gap: 1.5rem; overflow-x: auto; overflow-y: hidden; scroll-behavior: auto; padding: 1rem 0; scrollbar-width: none; -webkit-overflow-scrolling: touch; margin-right: -100vw; padding-right: 100vw; cursor: grab; }
.td-services-row::-webkit-scrollbar { display: none; }
.td-services-row.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.td-services-row.is-dragging * { cursor: grabbing !important; }
.td-services-row .td-card { flex-shrink: 0; width: 600px; max-width: 600px; }

/* Card - AONE Style */
.td-card { display: flex; align-items: center; gap: 1.25rem; text-decoration: none; border-radius: 20px; padding: 3rem 2.75rem; min-height: 200px; box-shadow: none; transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); position: relative; overflow: hidden; }
.td-card:hover { transform: translateY(-2px); box-shadow: none; }
.td-card:focus { outline: 2px solid #0040D1; outline-offset: 3px; }

/* Badge - Left Circle with Icon */
.td-badge { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; background: white !important; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); position: relative; }
.td-badge::before { content: ''; position: absolute; width: 22px; height: 22px; background: linear-gradient(94.67deg, #9935e8 0%, #e85535 100%); border-radius: 50%; opacity: 0; z-index: 0; }
.td-badge i, .td-badge svg { width: 22px; height: 22px; color: #9935e8 !important; stroke: #9935e8 !important; transition: transform 0.25s ease; position: relative; z-index: 1; }
.td-card:hover .td-badge { background: white !important; }
.td-card:hover .td-badge i, .td-card:hover .td-badge svg { transform: rotate(-45deg); }

/* Content Wrapper */
.td-card-content { flex: 1; display: flex; flex-direction: column; gap: 0; position: relative; }

/* Title */
.td-card-title { font-size: clamp(1.125rem, 2vw, 1.375rem); font-weight: 600; color: #0A121C; margin: 0; line-height: 1.35; transition: transform 0.35s ease; }
.td-card:hover .td-card-title { transform: translateY(-12px); }

/* Description - Hidden by default */
.td-card-description { font-size: 0.9rem; line-height: 1.6; color: rgba(10, 18, 28, 0.7); margin: 0; padding-top: 0; opacity: 0; max-height: 0; overflow: hidden; transition: opacity 0.35s ease, max-height 0.35s ease, padding-top 0.35s ease; }
.td-card:hover .td-card-description { opacity: 1; max-height: 120px; padding-top: 0.5rem; }

/* Arrow - Right Circle */
.td-arrow { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: white !important; display: flex; align-items: center; justify-content: center; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); }
.td-arrow i, .td-arrow svg { width: 16px; height: 16px; color: #1a1a1a; transition: transform 0.3s ease !important; transform: rotate(0deg) !important; }
.td-card:hover .td-arrow i, .td-card:hover .td-arrow svg { transform: rotate(45deg) !important; }

/* Services CTA */
.services-cta { display: flex; gap: 1rem; justify-content: center; align-items: center; margin-top: 3rem; }

/* Our Process Section - Modern Design */
.our-process-new { padding: 100px 20px; background: radial-gradient(34.45% 46.83% at 77.4% 50%, rgba(161, 28, 208, 0.1) 0, rgba(19, 20, 38, 0) 100%), radial-gradient(30.13% 51.49% at 18.2% 43.83%, rgba(208, 93, 28, 0.1) 0, rgba(19, 20, 38, 0) 100%), #fff; }
.our-process-new .container { max-width: 1400px; margin: 0 auto; padding: 0; }
.process-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.process-step-card { background: #FFFFFF; border-radius: 16px; padding: 2.5rem 2rem; text-align: left; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); border: 1px solid rgba(0, 0, 0, 0.06); position: relative; overflow: hidden; }
.process-step-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #0040D1 0%, #00C26C 100%); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.process-step-card:hover::before { transform: scaleX(1); }
.process-step-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(0, 64, 209, 0.12); border-color: rgba(0, 64, 209, 0.1); }
.step-icon { width: 56px; height: 56px; background: linear-gradient(94.67deg, #9935e8 0%, #e85535 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; box-shadow: 0 4px 12px rgba(153, 53, 232, 0.25); }
.step-icon i, .step-icon svg { width: 26px; height: 26px; color: white !important; stroke: white !important; }
.step-number { font-size: 0.75rem; font-weight: 700; color: #0040D1; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px; }
.step-divider { width: 40px; height: 3px; background: linear-gradient(90deg, #0040D1 0%, #00C26C 100%); margin-bottom: 1rem; border-radius: 2px; }
.step-title { font-size: 1.125rem; font-weight: 700; color: #0A121C; margin-bottom: 0.875rem; line-height: 1.4; }
.step-description { font-size: 0.875rem; line-height: 1.7; color: #6C757D; margin: 0; }

.usps { padding: 80px 20px; background: var(--neutral-white); }
.usps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.usp-card { text-align: center; padding: 2rem; border-radius: 12px; background: var(--neutral-light); transition: var(--transition); }
.usp-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); background: white; }
.usp-icon { width: 80px; height: 80px; margin: 0 auto 1.5rem; background: linear-gradient(135deg, var(--primary-blue), var(--primary-green)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; }
.usp-icon i { width: 40px; height: 40px; }
.usp-card h3 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--neutral-dark); }
.usp-card p { color: var(--neutral-grey); font-size: 0.95rem; }
.section-cta { text-align: center; margin-top: 2rem; }

.trust-logos { padding: 60px 0; background: var(--neutral-light); overflow: hidden; }
.trust-logos .container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.logos-marquee-wrapper { display: flex; flex-direction: column; gap: 2rem; margin-top: 3rem; }
.logos-marquee { display: flex; gap: 2rem; animation: marquee 30s linear infinite; }
.logos-marquee-reverse { animation: marquee-reverse 30s linear infinite; }
.logo-item { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 1.5rem 2rem; background: white; border-radius: 12px; min-width: 150px; flex-shrink: 0; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); }
.logo-item i { width: 32px; height: 32px; color: var(--neutral-grey); margin-bottom: 0.5rem; }
.logo-item span { font-size: 0.85rem; color: var(--neutral-grey); font-weight: 600; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marquee-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
.logo-item i { width: 32px; height: 32px; color: var(--neutral-grey); margin-bottom: 0.5rem; }
.logo-item span { font-size: 0.85rem; color: var(--neutral-grey); font-weight: 600; }

.team { padding: 80px 20px; background: white; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.team-member { text-align: center; padding: 2rem; background: var(--neutral-light); border-radius: 12px; transition: var(--transition); }
.team-member:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); background: white; }
.team-photo { width: 120px; height: 120px; margin: 0 auto 1.5rem; background: linear-gradient(135deg, var(--primary-blue), var(--primary-green)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; }
.team-photo i { width: 60px; height: 60px; }
.team-member h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--neutral-dark); }
.team-role { font-size: 1rem; color: var(--primary-blue); font-weight: 600; margin-bottom: 1rem; }
.team-bio { color: var(--neutral-grey); line-height: 1.6; font-size: 0.95rem; }

/* About Us Section */
.about-us { padding: 80px 20px; background: var(--neutral-light); }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; margin-top: 3.5rem; margin-bottom: 3rem; }
.about-description { text-align: left; max-width: 590px; }
.about-description h2 { margin-bottom: 1rem; margin-top: 4rem; }
.about-subheading { font-size: 1.25rem; color: var(--neutral-grey); margin-bottom: 1.5rem; font-weight: 400; }
.about-description p { font-size: 1.0625rem; line-height: 1.7; color: var(--neutral-dark); margin-bottom: 1rem; }
.about-ctas { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.about-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.stat-box { text-align: center; padding: 2rem; background: white; border-radius: 24px; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06); transition: var(--transition); display: flex; flex-direction: column; min-height: 100%; }
.stat-box:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); }
.stat-icon { width: 56px; height: 56px; margin: 0 auto 1rem; background: linear-gradient(135deg, var(--primary-blue), var(--primary-green)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; }
.stat-icon i { width: 28px; height: 28px; }
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--primary-blue); line-height: 1; display: inline-block; }
.stat-suffix { font-size: 1.25rem; font-weight: 700; color: var(--primary-blue); display: inline-block; }
.stat-label { font-size: 1rem; font-weight: 600; color: var(--neutral-dark); margin: 0.5rem 0 0.25rem; }
.stat-desc { font-size: 0.875rem; color: var(--neutral-grey); line-height: 1.4; }

/* Our Process Section - Premium Wide Layout */
.our-process { padding: 100px 20px; background: #F7F9FC; }
.container-wide-process { max-width: 1320px; margin: 0 auto; }
.process-title { font-size: 2.5rem; font-weight: 700; text-align: center; color: var(--neutral-dark); margin-bottom: 1rem; }
.process-subtitle { font-size: 1.125rem; text-align: center; color: var(--neutral-grey); margin-bottom: 3.5rem; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-bottom: 3rem; }
.process-card { background: white; padding: 2.5rem; border-radius: 24px; box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06); transition: all 0.3s ease; position: relative; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.process-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); }
.process-card:focus-within { outline: 2px solid var(--primary-blue); outline-offset: 2px; }
.step-label { font-size: 0.875rem; font-weight: 600; color: var(--primary-blue); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 1rem; }
.process-icon { width: auto; height: auto; background: none; border-radius: 0; display: flex; align-items: center; justify-content: flex-start; color: var(--primary-blue); margin-bottom: 1.5rem; padding: 0; }
.process-icon i { width: 48px; height: 48px; }
.process-card h3 { font-size: 1.375rem; font-weight: 700; color: var(--neutral-dark); margin-bottom: 1rem; line-height: 1.3; }
.process-card p { font-size: 1rem; line-height: 1.6; color: var(--neutral-grey); margin-bottom: 0; }
.process-ctas { display: flex; gap: 1.5rem; justify-content: center; align-items: center; flex-wrap: wrap; }

.services { padding: 80px 20px; background: white; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-title { font-size: 2rem; font-weight: 400; margin-bottom: 1rem; color: var(--neutral-dark); }
.section-title strong { font-weight: 700; }
.section-subtitle { font-size: 1.1rem; color: var(--neutral-grey); max-width: 600px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.service-card { background: white; padding: 2.5rem; border-radius: 12px; box-shadow: var(--shadow-sm); transition: var(--transition); cursor: pointer; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-icon { width: 70px; height: 70px; background: var(--light-blue); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: var(--primary-blue); transition: var(--transition); }
.service-card:hover .service-icon { background: var(--primary-blue); color: white; transform: scale(1.1); }
.service-icon i { width: 35px; height: 35px; }
.service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--neutral-dark); }
.service-card p { color: var(--neutral-grey); margin-bottom: 1.5rem; line-height: 1.6; }
.service-link { color: var(--primary-blue); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; transition: var(--transition); }
.service-link:hover { gap: 1rem; }

.industries { padding: 80px 20px; background: white; }
.industries .container { max-width: 1400px; margin: 0 auto; padding: 0; }
.industries-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.industry-card { background: var(--neutral-light); padding: 2rem; border-radius: 12px; text-align: center; transition: var(--transition); cursor: pointer; position: relative; overflow: hidden; min-height: 160px; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.industry-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(94.67deg, #9935e8 0%, #e85535 100%); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.industry-card:hover::before { transform: scaleX(1); }
.industry-card:hover { background: white; color: inherit; transform: translateY(-8px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); }
.industry-icon { width: 60px; height: 60px; margin: 0 auto 1rem; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); }
.industry-card:hover .industry-icon { background: white; transform: scale(1.15); }
.industry-icon i, .industry-icon svg { width: 30px; height: 30px; color: #9935e8 !important; stroke: #9935e8 !important; }
.industry-card h3 { font-size: 0.9rem; font-weight: 600; }
.industry-card-cta { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1rem; }
.industry-card-cta .industry-icon { background: linear-gradient(94.67deg, #9935e8 0%, #e85535 100%); }
.industry-card-cta .industry-icon i, .industry-card-cta .industry-icon svg { color: white !important; stroke: white !important; }
.industry-cta-link { color: white; text-decoration: none; font-weight: 600; font-size: 0.9rem; padding: 0.5rem 1.5rem; background: linear-gradient(94.67deg, #9935e8 0%, #e85535 100%); border-radius: 8px; transition: all 0.3s ease; }
.industry-cta-link:hover { background: linear-gradient(94.67deg, #8020d0 0%, #d03020 100%); transform: translateY(-2px); }
.industry-card-cta:hover { background: var(--primary-blue); color: white; transform: translateY(-8px); box-shadow: var(--shadow-md); }
.industry-card-cta:hover .industry-icon { background: var(--primary-green); color: white; transform: scale(1.15); }

/* Modern Case Studies Section */
.case-studies-modern { padding: 100px 20px; background: #FAFBFC; }
.case-studies-modern .container { max-width: 1400px; }
.case-studies-wrapper { display: flex; flex-direction: column; gap: 3rem; margin-bottom: 4rem; }
.case-study-modern { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: 3rem 4rem; border-radius: 24px; color: white; align-items: center; min-height: 500px; }
.case-study-left { display: flex; flex-direction: column; gap: 1.5rem; }
.case-study-logo { display: flex; align-items: center; gap: 0.75rem; font-size: 1.5rem; font-weight: 700; }
.case-study-logo i { width: 32px; height: 32px; }
.case-study-tags-modern { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.tag-modern { background: rgba(255, 255, 255, 0.2); padding: 0.4rem 1rem; border-radius: 6px; font-size: 0.85rem; font-weight: 500; }
.case-study-heading { font-size: 1.75rem; line-height: 1.3; font-weight: 600; margin: 0; }
.case-study-description { font-size: 1rem; line-height: 1.6; opacity: 0.9; margin: 0; }
.case-study-quote { display: flex; flex-direction: column; gap: 1rem; }
.case-study-quote p { font-size: 1rem; line-height: 1.6; opacity: 0.95; margin: 0; }
.case-study-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 48px; height: 48px; border-radius: 50%; background: rgba(255, 255, 255, 0.2); display: flex; align-items: center; justify-content: center; }
.author-avatar i { width: 24px; height: 24px; }
.author-info { display: flex; flex-direction: column; gap: 0.25rem; }
.author-info strong { font-size: 0.95rem; font-weight: 600; }
.author-info span { font-size: 0.85rem; opacity: 0.8; }
.case-study-btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.875rem 1.75rem; background: white; color: #1a1a1a; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: all 0.3s ease; align-self: flex-start; }
.case-study-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); }
.case-study-btn i { width: 18px; height: 18px; }
.case-study-right { display: flex; align-items: center; justify-content: center; }
.case-study-mockup { display: flex; align-items: center; justify-content: center; }
.case-studies-footer { text-align: center; padding: 2rem 0; }
.case-studies-footer p { font-size: 1.25rem; color: var(--neutral-dark); margin-bottom: 1.5rem; font-weight: 500; }
.case-studies-footer .btn { display: inline-flex; align-items: center; gap: 0.5rem; }
.case-studies-footer .btn i { width: 18px; height: 18px; }

@media (max-width: 1024px) {
    .case-study-modern { grid-template-columns: 1fr; padding: 2rem; min-height: auto; }
    .case-study-right { display: none; }
    .case-study-heading { font-size: 1.5rem; }
}

.audit-section { padding: 80px 20px; background: linear-gradient(135deg, var(--primary-green), #00A85D); color: white; }
.audit-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.audit-text h2 { margin-bottom: 1rem; }
.audit-text p { font-size: 1.1rem; margin-bottom: 2rem; opacity: 0.95; }
.audit-benefits { list-style: none; }
.audit-benefits li { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; font-size: 1.05rem; }
.audit-benefits i { width: 24px; height: 24px; flex-shrink: 0; }
.audit-form { background: white; padding: 2.5rem; border-radius: 12px; box-shadow: var(--shadow-lg); }
.form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-weight: 600; color: var(--neutral-dark); font-size: 0.95rem; }
.form-group input, .form-group select { padding: 0.875rem; border: 2px solid #E0E0E0; border-radius: 6px; font-size: 1rem; font-family: var(--font-primary); transition: var(--transition); }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--primary-blue); box-shadow: 0 0 0 3px rgba(0, 64, 209, 0.1); }
.form-note { font-size: 0.85rem; color: var(--neutral-grey); text-align: center; margin-top: -0.5rem; }

.why-choose { padding: 80px 20px; background: white; }
.why-choose-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-choose-image { position: relative; }
.image-placeholder { width: 100%; height: 500px; background: linear-gradient(135deg, var(--light-blue), var(--neutral-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary-blue); }
.image-placeholder i { width: 150px; height: 150px; }
.why-choose-text h2 { margin-bottom: 1rem; }
.lead { font-size: 0.9rem; color: var(--neutral-grey); margin-bottom: 2rem; }
.why-choose-list { list-style: none; margin-bottom: 2rem; }
.why-choose-list li { display: flex; gap: 1.5rem; margin-bottom: 2rem; align-items: flex-start; }
.why-choose-list i { width: 30px; height: 30px; color: var(--primary-green); flex-shrink: 0; margin-top: 0.25rem; }
.why-choose-list strong { display: block; font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--neutral-dark); }
.why-choose-list p { color: var(--neutral-grey); line-height: 1.6; }

.testimonials { padding: 80px 20px; background: var(--neutral-light); }

.process { padding: 80px 20px; background: white; }
.process-timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.process-step { text-align: center; padding: 2rem; position: relative; }
.process-number { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 40px; background: var(--primary-blue); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; }
.process-icon { width: 80px; height: 80px; margin: 3rem auto 1.5rem; background: var(--light-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-blue); transition: var(--transition); }
.process-step:hover .process-icon { background: var(--primary-blue); color: white; transform: scale(1.1); }
.process-icon i { width: 40px; height: 40px; }
.process-step h3 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--neutral-dark); }
.process-step p { color: var(--neutral-grey); line-height: 1.6; }

.clients { padding: 80px 20px; background: var(--neutral-light); }
.clients-logos { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem; align-items: center; }
.client-logo { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; background: white; border-radius: 12px; box-shadow: var(--shadow-sm); transition: var(--transition); min-height: 120px; }
.client-logo:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.client-logo i { width: 40px; height: 40px; color: var(--neutral-grey); margin-bottom: 0.5rem; }
.client-logo span { font-size: 0.9rem; color: var(--neutral-grey); font-weight: 600; }

.pricing { padding: 80px 20px; background: white; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.pricing-card { background: var(--neutral-light); padding: 2.5rem; border-radius: 12px; box-shadow: var(--shadow-sm); transition: var(--transition); position: relative; }
.pricing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.pricing-featured { background: white; border: 3px solid var(--primary-blue); }
.pricing-badge { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary-green); color: white; padding: 0.5rem 1.5rem; border-radius: 20px; font-size: 0.85rem; font-weight: 600; }
.pricing-icon { width: 70px; height: 70px; margin: 0 auto 1.5rem; background: var(--light-blue); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary-blue); }
.pricing-featured .pricing-icon { background: var(--primary-blue); color: white; }
.pricing-icon i { width: 35px; height: 35px; }
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 1rem; text-align: center; color: var(--neutral-dark); }
.pricing-amount { text-align: center; margin-bottom: 2rem; }
.price-from { display: block; font-size: 0.9rem; color: var(--neutral-grey); margin-bottom: 0.5rem; }
.price { font-size: 3rem; font-weight: 700; color: var(--primary-blue); }
.price-period { font-size: 1rem; color: var(--neutral-grey); margin-left: 0.5rem; }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; color: var(--neutral-grey); }
.pricing-features i { width: 20px; height: 20px; color: var(--primary-green); flex-shrink: 0; margin-top: 0.2rem; }

.faq { padding: 80px 20px; background: var(--neutral-light); }
.faq-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.faq-item { background: white; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-question { width: 100%; padding: 1.5rem; background: none; border: none; text-align: left; font-size: 1.1rem; font-weight: 600; color: var(--neutral-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: var(--transition); font-family: var(--font-primary); }
.faq-question:hover { color: var(--primary-blue); }
.faq-question i { width: 24px; height: 24px; transition: var(--transition); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 1.5rem 1.5rem; color: var(--neutral-grey); line-height: 1.8; }

.testimonials { padding: 80px 20px; background: white; }
.testimonials-carousel { position: relative; max-width: 900px; margin: 0 auto; padding: 0 60px; }
.testimonials-track { position: relative; overflow: hidden; }
.testimonial-card { display: none; background: white; padding: 3rem; border-radius: 12px; box-shadow: var(--shadow-md); text-align: center; }
.testimonial-card.active { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.testimonial-stars { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem; }
.star-filled { color: #FFB800; width: 24px; height: 24px; }
.testimonial-text { font-size: 1.25rem; line-height: 1.8; color: var(--neutral-dark); margin-bottom: 2rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.author-avatar { width: 60px; height: 60px; background: var(--light-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-blue); }
.author-avatar i { width: 30px; height: 30px; }
.author-info { text-align: left; }
.author-info strong { display: block; font-size: 1.1rem; color: var(--neutral-dark); }
.author-industry { color: var(--neutral-grey); font-size: 0.9rem; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); background: white; border: none; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow-md); transition: var(--transition); z-index: 10; }
.carousel-btn:hover { background: var(--primary-blue); color: white; transform: translateY(-50%) scale(1.1); }
.carousel-prev { left: 0; }
.carousel-next { right: 0; }
.carousel-btn i { width: 24px; height: 24px; }
.carousel-dots { display: flex; justify-content: center; gap: 0.75rem; margin-top: 2rem; }
.carousel-dot { width: 12px; height: 12px; border-radius: 50%; background: #D0D0D0; cursor: pointer; transition: var(--transition); }
.carousel-dot.active { background: var(--primary-blue); width: 32px; border-radius: 6px; }

.blog { padding: 80px 20px; background: white; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.blog-card { background: var(--neutral-light); border-radius: 12px; overflow: hidden; transition: var(--transition); cursor: pointer; }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.blog-image { height: 200px; background: linear-gradient(135deg, var(--primary-blue), var(--primary-green)); display: flex; align-items: center; justify-content: center; color: white; }
.blog-image i { width: 60px; height: 60px; }
.blog-content { padding: 2rem; }
.blog-meta { display: flex; justify-content: space-between; margin-bottom: 1rem; font-size: 0.85rem; }
.blog-category { background: var(--primary-blue); color: white; padding: 0.3rem 0.8rem; border-radius: 4px; font-weight: 600; }
.blog-date { color: var(--neutral-grey); }
.blog-content h3 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--neutral-dark); line-height: 1.4; }
.blog-content p { color: var(--neutral-grey); margin-bottom: 1.5rem; line-height: 1.6; }
.blog-link { color: var(--primary-blue); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; transition: var(--transition); }
.blog-link:hover { gap: 1rem; }

.final-cta { position: relative; padding: 100px 20px; background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue)); color: white; text-align: center; overflow: hidden; }
.final-cta-background { position: absolute; top: 0; left: 0; right: 0; bottom: 0; opacity: 0.3; }
.final-cta-content { position: relative; z-index: 2; }
.final-cta h2 { margin-bottom: 1rem; }
.final-cta p { font-size: 1.25rem; margin-bottom: 2.5rem; opacity: 0.95; }
.final-cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.final-cta .btn-primary { background: var(--primary-green); }
.final-cta .btn-primary:hover { background: #00A85D; }
.final-cta .btn-secondary { background: white; color: var(--primary-blue); border-color: white; }
.final-cta .btn-secondary:hover { background: transparent; color: white; }

.footer { background: var(--neutral-dark); color: white; padding: 60px 20px 30px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-section h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.footer-section h4 { font-size: 1.1rem; margin-bottom: 1rem; color: var(--primary-green); }
.footer-section p { color: rgba(255, 255, 255, 0.8); line-height: 1.6; margin-bottom: 1.5rem; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.75rem; }
.footer-section ul li a { color: rgba(255, 255, 255, 0.8); text-decoration: none; transition: var(--transition); }
.footer-section ul li a:hover { color: var(--primary-green); }
.footer-contact li { display: flex; align-items: center; gap: 0.75rem; color: rgba(255, 255, 255, 0.8); }
.footer-contact i { width: 18px; height: 18px; color: var(--primary-green); }
.footer-social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-social a { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; transition: var(--transition); }
.footer-social a:hover { background: var(--primary-green); transform: translateY(-3px); }
.footer-social i { width: 20px; height: 20px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { color: rgba(255, 255, 255, 0.6); }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { color: rgba(255, 255, 255, 0.6); text-decoration: none; transition: var(--transition); }
.footer-legal a:hover { color: white; }

@media (max-width: 1024px) {
    .header-nav { display: none; }
    .promo-pill { display: none; }
    .header-container { padding: 0 20px; height: 64px; gap: 1rem; }
    .header-logo { flex: 1; }
    .header-ctas { display: flex; gap: 0.75rem; margin-left: auto; }
    .btn-header-secondary { display: none; }
    .btn-header-phone { display: flex; }
    .mobile-menu-toggle { display: block; margin-left: 0; }
}

@media (max-width: 968px) {
    .hero-title { font-size: 2.75rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-services-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .clutch-container { grid-template-columns: 1fr; gap: 3rem; }
    .clutch-content { padding-right: 0; }
    .clutch-heading { font-size: 2rem; }
    .clutch-stats { grid-template-columns: 1fr; }
    .td-services { padding: 80px 20px; }
    .td-services-header { grid-template-columns: 1fr; gap: 2rem; }
    .td-services-row .td-card { width: 80vw; min-width: 280px; }
    .audit-content { grid-template-columns: 1fr; gap: 2rem; }
    .why-choose-content { grid-template-columns: 1fr; }
    .image-placeholder { height: 350px; }
    .testimonials-carousel { padding: 0 50px; }
    .about-content { grid-template-columns: 1fr; gap: 2rem; }
    .about-description { text-align: center; max-width: 100%; }
    .about-ctas { justify-content: center; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .process-title { font-size: 2rem; }
    .process-subtitle { font-size: 1.1rem; }
    .container-wide-process { padding: 0 20px; }
}

@media (max-width: 768px) {
    .bubble-container { display: none; }
    .hero { padding: 100px 20px 60px; min-height: auto; }
    .our-process-new { padding: 40px 20px; }
    .hero-title { font-size: 2.25rem; line-height: 1.2; }
    .hero-subtitle { font-size: 1rem; }
    .hero-content { margin-bottom: 3rem; max-width: 100%; }
    .hero-badge { font-size: 12px; padding: 0.4rem 0.8rem; }
    .hero-ctas { flex-direction: column; gap: 0.75rem; width: 100%; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
    .process-steps-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .hero-service-card { padding: 2rem; }
    .clutch-recognition { padding: 60px 20px; }
    .clutch-container { grid-template-columns: 1fr; gap: 2rem; }
    .clutch-content { padding-right: 0; }
    .clutch-heading { font-size: 1.75rem; }
    .clutch-copy p { font-size: 1rem; }
    .clutch-stats { grid-template-columns: 1fr; }
    .stat-box { padding: 1.75rem; }
    .stat-value { font-size: 2.5rem; }
    .td-services { padding: 60px 16px; }
    .td-services-header { flex-direction: column; gap: 1.5rem; }
    .td-services-title { font-size: 1.75rem; }
    .td-services-grid { display: flex; flex-direction: column; gap: 0; }
    .td-services-row { display: flex; flex-direction: column; gap: 1rem; overflow: visible; margin-bottom: 0; }
    .td-services-row:nth-child(2) { margin-top: -0.5rem; }
    .td-card { padding: 1.5rem; min-height: auto; flex-direction: column; gap: 0.75rem; }
    .td-badge { width: 44px; height: 44px; margin-bottom: 0; flex-shrink: 0; align-self: flex-start; }
    .td-badge i { width: 20px; height: 20px; }
    .td-card-content { flex: 1; width: 100%; margin-top: -52px; padding-left: 52px; }
    .td-card-title { font-size: 1.0625rem; white-space: normal; margin-bottom: 0.75rem; transform: none !important; padding-top: 6px; }
    .td-card-description { opacity: 1 !important; max-height: none !important; padding-top: 0.5rem !important; display: block !important; margin-bottom: 0.75rem; margin-left: -52px; padding-left: 0; margin-top: 0.5rem; }
    .td-arrow { width: 34px; height: 34px; position: static; align-self: flex-end; }
    .td-arrow i, .td-arrow svg { width: 16px; height: 16px; }
    .services-cta { flex-direction: column; }
    .services-cta .btn { width: 100%; justify-content: center; }
    .section-title { font-size: 2rem; }
    .section-cta { flex-direction: column; gap: 0.75rem; }
    .section-cta .btn { width: 100%; justify-content: center; }
    .services-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .industry-icon { margin-bottom: 0.5rem; }
    .case-studies-grid { grid-template-columns: 1fr; }
    .audit-content { grid-template-columns: 1fr; gap: 2rem; }
    .blog-grid { grid-template-columns: 1fr; }
    .faq-container { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 2.5rem; }
    .stat-suffix { font-size: 1.25rem; }
    .sticky-cta { bottom: 20px; right: 20px; padding: 0.875rem 1.25rem; font-size: 0.9rem; }
    .carousel-btn { width: 40px; height: 40px; }
    .testimonials-carousel { padding: 0 40px; }
}

@media (max-width: 480px) {
    .hero { padding: 80px 16px 40px; }
    .hero-title { font-size: 1.75rem; line-height: 1.2; }
    .hero-subtitle { font-size: 0.9rem; }
    .hero-badge { font-size: 11px; padding: 0.35rem 0.7rem; }
    .hero-badge i { width: 14px; height: 14px; }
    .hero-ctas { flex-direction: column; width: 100%; gap: 0.5rem; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; text-align: center; justify-content: center; padding: 0.875rem 1.25rem; font-size: 0.9rem; }
    .btn-large { padding: 0.875rem 1.5rem; font-size: 1rem; }
    .header-container { height: 60px; padding: 0 16px; gap: 0.75rem; }
    .logo-image { height: 32px; }
    .btn-header-phone { width: 40px; height: 40px; }
    .btn-header-phone i { width: 18px; height: 18px; }
    .mobile-menu-toggle { padding: 0.375rem; }
    .mobile-menu-toggle i { width: 22px; height: 22px; }
    .promo-pill { display: none; }
    .clutch-recognition { padding: 40px 16px; }
    .clutch-heading { font-size: 1.35rem; }
    .clutch-stats { gap: 1rem; }
    .stat-box { padding: 1.5rem; min-height: auto; }
    .stat-value { font-size: 1.75rem; }
    .stat-text { font-size: 0.85rem; }
    .td-services-title { font-size: 1.5rem; }
    .td-services-description { font-size: 0.9rem; }
    .section-title { font-size: 1.75rem; }
    .section-subtitle { font-size: 0.9rem; }
    .industries-grid { grid-template-columns: 1fr; }
    .industry-card { padding: 1.5rem; }
    .about-stats { grid-template-columns: 1fr; }
    .about-description p { font-size: 1rem; }
    .case-study-heading { font-size: 1.35rem; }
    .case-study-description { font-size: 0.9rem; }
    .audit-text p { font-size: 1rem; }
    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .about-subheading { font-size: 1.1rem; }
    .about-ctas { flex-direction: column; }
    .about-ctas .btn { width: 100%; }
    .process-grid { grid-template-columns: 1fr; gap: 1rem; }
    .process-title { font-size: 1.75rem; }
    .process-card { padding: 2rem; }
    .process-card p { font-size: 1rem; }
    .process-ctas { flex-direction: column; width: 100%; }
    .process-ctas .btn { width: 100%; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
