@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* Innvoque Premium Design System */
:root {
  --google-blue: #0F4C81; /* Deep Electric Blue */
  --google-red: #FF007F; /* Neon Pink/Magenta */
  --google-yellow: #FFD700; /* Neon Gold */
  --google-green: #00E676; /* Vibrant Green */
  --accent-cyan: #00F2FE; /* Cyber Cyan */
  --text-dark: #0B0F19; /* Sleek Dark Blue/Black */
  --text-mid: #334155; /* Slate Mid */
  --text-light: #64748B; /* Slate Light */
  --bg-white: #FFFFFF;
  --bg-gray: #F8FAFC; /* Slate Gray Light */
  --bg-gray2: #E2E8F0;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md: 0 4px 12px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.04);
  --shadow-lg: 0 8px 28px rgba(15,23,42,0.12), 0 4px 12px rgba(15,23,42,0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --font: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--bg-white); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; color: var(--text-dark); }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 1.5rem; }
h2 { font-size: clamp(1.8rem, 3vw, 2.75rem); line-height: 1.2; margin-bottom: 1rem; }
h3 { font-size: 1.375rem; font-weight: 600; margin-bottom: 0.75rem; }
h4 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.5rem; }
p { color: var(--text-light); font-size: 1rem; line-height: 1.75; margin-bottom: 1rem; }
a { text-decoration: none; color: var(--google-blue); transition: var(--transition); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 80px 0; }
.text-center { text-align: center; }
.section-label { font-size: 0.875rem; font-weight: 500; color: var(--google-blue); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1rem; }

/* Color bar accent (Google 4-color) */
.color-bar { display: flex; height: 4px; border-radius: 2px; overflow: hidden; }
.color-bar span:nth-child(1) { background: var(--google-blue); flex: 1; }
.color-bar span:nth-child(2) { background: var(--google-red); flex: 1; }
.color-bar span:nth-child(3) { background: var(--google-yellow); flex: 1; }
.color-bar span:nth-child(4) { background: var(--google-green); flex: 1; }

/* Buttons */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 0 28px; height: 48px; background: linear-gradient(135deg, var(--google-blue), var(--accent-cyan)); color: #fff; border-radius: var(--radius-lg); font-size: 0.9375rem; font-weight: 600; border: none; cursor: pointer; transition: var(--transition); box-shadow: 0 4px 15px rgba(15,76,129,0.25); position: relative; overflow: hidden; z-index: 1; }
.btn-primary::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, var(--accent-cyan), var(--google-blue)); z-index: -1; opacity: 0; transition: var(--transition); }
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(15,76,129,0.35); }
.btn-primary:hover::before { opacity: 1; }

.btn-secondary { display: inline-flex; align-items: center; gap: 8px; padding: 0 27px; height: 48px; background: transparent; color: var(--google-blue); border-radius: var(--radius-lg); font-size: 0.9375rem; font-weight: 600; border: 2px solid var(--google-blue); cursor: pointer; transition: var(--transition); }
.btn-secondary:hover { background: rgba(15,76,129,0.05); color: var(--google-blue); transform: translateY(-2px); border-color: var(--google-blue); }

.btn-white { display: inline-flex; align-items: center; gap: 8px; padding: 0 28px; height: 48px; background: #fff; color: var(--google-blue); border-radius: var(--radius-lg); font-size: 0.9375rem; font-weight: 600; border: none; cursor: pointer; transition: var(--transition); box-shadow: var(--shadow-md); }
.btn-white:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); color: var(--google-blue); }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); transition: var(--transition); }
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.nav-content { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 44px; width: auto; display: block; }
/* Legacy colored-text logo spans (kept for fallback) */
.logo .g { color: var(--google-blue); }
.logo .o1 { color: var(--google-red); }
.logo .o2 { color: var(--google-yellow); }
.logo .l { color: var(--google-blue); }
.logo .e { color: var(--google-green); }
/* Footer logo — uses dedicated white SVG, no filter needed */
.footer-brand .logo img { height: 38px; }
/* Slogan tag shown in footer */
.logo-slogan { font-size: 0.78rem; font-weight: 400; color: rgba(255,255,255,0.45); letter-spacing: 0.5px; margin-top: 3px; display: block; }

/* Global Logo SVG Brand Color Overrides */
.logo svg polygon:nth-of-type(1), .footer-logo-svg polygon:nth-of-type(1) { fill: var(--google-blue) !important; }
.logo svg polygon:nth-of-type(2), .footer-logo-svg polygon:nth-of-type(2) { fill: var(--google-red) !important; }
.logo svg polygon:nth-of-type(3), .footer-logo-svg polygon:nth-of-type(3) { fill: var(--google-yellow) !important; }
.logo svg polygon:nth-of-type(4), .footer-logo-svg polygon:nth-of-type(4) { fill: var(--google-green) !important; }
.logo svg text, .footer-logo-svg text { font-family: var(--font-heading) !important; }
.logo svg text[fill="#4285F4"] { fill: var(--google-blue) !important; }
.logo svg text[fill="#EA4335"] { fill: var(--google-red) !important; }
.logo svg text[fill="#34A853"] { fill: var(--google-green) !important; }
.logo svg text[fill="#202124"] { fill: var(--text-dark) !important; }

.nav-links { display: flex; list-style: none; align-items: center; gap: 2rem; }
.nav-links a { color: var(--text-mid); font-size: 0.9375rem; font-weight: 500; padding: 4px 0; border-bottom: 2px solid transparent; }
.nav-links a:hover { color: var(--google-blue); border-bottom-color: var(--google-blue); }
.nav-links a.active { color: var(--google-blue); border-bottom-color: var(--google-blue); }
.btn-nav-pill { padding: 8px 20px !important; background: linear-gradient(135deg, var(--google-blue), var(--accent-cyan)); color: #fff !important; border-radius: 20px; border-bottom: none !important; font-weight: 600 !important; box-shadow: 0 4px 12px rgba(15,76,129,0.2); }
.btn-nav-pill:hover { transform: translateY(-1px); box-shadow: 0 6px 15px rgba(15,76,129,0.3); color: #fff !important; }
.mobile-menu-btn { display: none; font-size: 1.4rem; cursor: pointer; color: var(--text-mid); }

/* Hero */
.hero { padding: 140px 0 80px; background: var(--bg-white); }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: #e8f0fe; color: var(--google-blue); padding: 6px 16px; border-radius: 20px; font-size: 0.875rem; font-weight: 500; margin-bottom: 1.5rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-visual { position: relative; }
.hero-img-wrapper { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-img-wrapper img { width: 100%; height: auto; display: block; }
.stat-pill { position: absolute; background: #fff; border-radius: var(--radius-md); padding: 12px 20px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px; }
.stat-pill-1 { top: 20px; left: -30px; }
.stat-pill-2 { bottom: 20px; right: -30px; }
.stat-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.stat-icon.blue { background: #e8f0fe; color: var(--google-blue); }
.stat-icon.green { background: #e6f4ea; color: var(--google-green); }
.stat-pill h4 { font-size: 1.25rem; font-weight: 700; margin: 0; }
.stat-pill span { font-size: 0.75rem; color: var(--text-light); }

/* Stats row */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); padding-top: 2.5rem; margin-top: 2.5rem; gap: 2rem; }
.stat-item { text-align: center; }
.stat-item h3 { font-size: 2rem; font-weight: 700; color: var(--google-blue); margin: 0; }
.stat-item p { font-size: 0.875rem; margin: 0; color: var(--text-light); }

/* Section header */
.section-header { max-width: 700px; margin: 0 auto 3.5rem; text-align: center; }
.section-header.left { margin: 0 0 3rem; text-align: left; }

/* Cards */
.card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2rem; transition: var(--transition); }
.card:hover { box-shadow: var(--shadow-md); border-color: #c5d3f5; transform: translateY(-2px); }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.package-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 2rem; box-shadow: 0 24px 80px rgba(15,23,42,0.08); transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.package-card:hover { transform: translateY(-5px); border-color: rgba(66,133,244,0.2); box-shadow: 0 30px 90px rgba(15,23,42,0.14); }
.package-label { display: inline-flex; align-items: center; justify-content: center; padding: 0.6rem 1rem; background: rgba(66,133,244,0.12); color: var(--google-blue); border-radius: 999px; font-size: 0.85rem; font-weight: 700; margin-bottom: 1rem; }
.package-card h3 { font-size: 1.4rem; margin-bottom: 0.85rem; }
.package-card p { color: var(--text-mid); margin-bottom: 1.3rem; }
.package-card ul { list-style: none; margin: 0 0 1.5rem; padding: 0; color: var(--text-mid); }
.package-card ul li { display: flex; gap: 0.75rem; align-items: flex-start; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.95rem; }
.package-card ul li i { margin-top: 0.2rem; color: var(--google-blue); }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; padding: 0 26px; height: 48px; border: 1px solid rgba(66,133,244,0.25); border-radius: var(--radius-lg); color: var(--google-blue); background: transparent; font-size: 0.9375rem; font-weight: 500; transition: var(--transition); }
.btn-outline:hover { background: rgba(66,133,244,0.08); }
.gradient-text { background: linear-gradient(90deg, #7f56d9, #22d3ee); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.glass-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); backdrop-filter: blur(18px); border-radius: var(--radius-md); box-shadow: 0 24px 60px rgba(15,23,42,0.08); }
.service-card { padding: 2rem; transition: var(--transition); border-radius: var(--radius-md); border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.08); }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 22px 60px rgba(15,23,42,0.08); }
.icon-box { width: 56px; height: 56px; border-radius: 18px; display: flex; align-items: center; justify-content: center; background: rgba(66,133,244,0.12); color: var(--google-blue); font-size: 1.35rem; margin-bottom: 1.25rem; }
.bg-elements { position: fixed; inset: 0; pointer-events: none; z-index: -1; }
.glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.35; }
.glow-1 { width: 380px; height: 380px; background: rgba(56,189,248,0.25); left: -120px; top: 20%; }
.glow-2 { width: 320px; height: 320px; background: rgba(124,58,237,0.24); right: -100px; top: 50%; }
.card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--google-blue); font-weight: 500; font-size: 0.9rem; margin-top: 1rem; }
.card-link:hover { gap: 10px; }

/* About strip */
.about-strip { background: var(--bg-gray); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.about-img img { width: 100%; display: block; }
.tech-chips { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.chip { padding: 6px 16px; border: 1px solid var(--border); border-radius: 20px; font-size: 0.875rem; color: var(--text-mid); background: var(--bg-white); display: inline-flex; align-items: center; gap: 6px; }

/* Industry pills */
.industries-section { background: var(--bg-gray); }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.5rem; }
.industry-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; transition: var(--transition); }
.industry-card:hover { box-shadow: var(--shadow-md); }
.ind-icon { font-size: 1.5rem; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.price-card { border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2rem; background: var(--bg-white); transition: var(--transition); display: flex; flex-direction: column; }
.price-card.featured { border-color: var(--google-blue); box-shadow: 0 0 0 1px var(--google-blue), var(--shadow-md); }
.featured-badge { background: var(--google-blue); color: #fff; font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: 12px; display: inline-block; margin-bottom: 1rem; }
.price-card h3 { font-size: 1.375rem; font-weight: 600; }
.price-card .desc { font-size: 0.9rem; color: var(--text-light); margin: 0.5rem 0 1.5rem; }
.features-list { list-style: none; margin: 1.5rem 0; flex-grow: 1; }
.features-list li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; border-bottom: 1px solid var(--bg-gray); font-size: 0.9375rem; color: var(--text-mid); }
.features-list li i { color: var(--google-green); margin-top: 3px; flex-shrink: 0; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testi-card { border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2rem; background: var(--bg-white); }
.stars { color: var(--google-yellow); margin-bottom: 1rem; font-size: 1rem; }
.quote-text { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.7; font-style: italic; }
.client-row { display: flex; align-items: center; gap: 12px; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--bg-gray); }
.avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; color: #fff; font-weight: 600; flex-shrink: 0; }
.client-row h5 { font-size: 0.9rem; font-weight: 600; margin: 0; }
.client-row span { font-size: 0.8rem; color: var(--text-light); }

/* Portfolio */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
.case-card { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.case-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.case-img { height: 240px; overflow: hidden; }
.case-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s ease; }
.case-card:hover .case-img img { transform: scale(1.03); }
.case-body { padding: 1.75rem; }
.case-tag { font-size: 0.8rem; font-weight: 500; color: var(--google-blue); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.case-results { display: flex; gap: 2rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--bg-gray); }
.res-num { font-size: 1.5rem; font-weight: 700; display: block; color: var(--text-dark); }
.res-label { font-size: 0.8rem; color: var(--text-light); }

/* Contact */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 2rem; }
.ci-icon { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.ci-icon.blue { background: #e8f0fe; color: var(--google-blue); }
.ci-icon.green { background: #e6f4ea; color: var(--google-green); }
.ci-icon.red { background: #fce8e6; color: var(--google-red); }
.ci-label { font-size: 0.8rem; color: var(--text-light); font-weight: 500; margin-bottom: 2px; }
.contact-form-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2.5rem; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--text-mid); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font); font-size: 0.9375rem; color: var(--text-dark); background: var(--bg-white); transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--google-blue); box-shadow: 0 0 0 3px rgba(66,133,244,0.15); }
.btn-block { width: 100%; justify-content: center; }

/* Whatsapp */
.btn-wa { display: inline-flex; align-items: center; gap: 10px; padding: 12px 24px; background: #25D366; color: #fff; border-radius: var(--radius-lg); font-weight: 500; font-size: 0.9375rem; margin-top: 1.5rem; transition: var(--transition); }
.btn-wa:hover { background: #128C7E; color: #fff; }

/* CTA Banner */
.cta-banner { background: var(--google-blue); color: #fff; padding: 80px 0; text-align: center; }
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; }

/* Page Header */
.page-hero { padding: 120px 0 60px; border-bottom: 1px solid var(--border); background: var(--bg-gray); }
.page-hero .section-label { margin-bottom: 0.75rem; }
.page-hero h1 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1rem; }
.page-hero p { font-size: 1.125rem; max-width: 600px; }

/* Service detail */
.service-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; padding: 60px 0; }
.service-content h2 { font-size: 1.75rem; margin-bottom: 1rem; }
.service-content h3 { font-size: 1.25rem; color: var(--google-blue); margin: 2rem 0 1rem; }
.service-content ul { list-style: none; }
.service-content ul li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--bg-gray); font-size: 0.9375rem; color: var(--text-mid); }
.service-content ul li i { color: var(--google-green); margin-top: 3px; flex-shrink: 0; }
.sticky-sidebar { position: sticky; top: 90px; }
.sidebar-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-sm); }
.sidebar-card h4 { font-size: 1.1rem; margin-bottom: 1.25rem; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.5rem; }
.tech-tag { padding: 5px 14px; background: var(--bg-gray); border-radius: 20px; font-size: 0.8rem; color: var(--text-mid); border: 1px solid var(--border); }

/* FAQ */
.faq-list { max-width: 760px; margin: 2.5rem auto 0; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 1rem; overflow: hidden; }
.faq-q { padding: 1.25rem 1.5rem; font-weight: 500; display: flex; justify-content: space-between; align-items: center; cursor: pointer; transition: var(--transition); background: var(--bg-white); }
.faq-q:hover { background: var(--bg-gray); }
.faq-a { padding: 0 1.5rem 1.25rem; color: var(--text-light); font-size: 0.9375rem; }

/* Footer */
.footer { background: var(--text-dark); color: rgba(255,255,255,0.7); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding: 60px 0 40px; }
.footer-brand .logo { color: #fff; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 1rem 0; }
.footer-col h5 { color: #fff; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.25rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 0.75rem; }
.footer-col a:hover { color: #fff; }
.social-row { display: flex; gap: 12px; margin-top: 1rem; }
.social-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 0.875rem; transition: var(--transition); }
.social-btn:hover { background: var(--google-blue); color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; }

/* Animations */
.fade-up { opacity: 0; transform: translateY(24px); transition: 0.6s cubic-bezier(0.16,1,0.3,1); }
.fade-up.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner, .about-inner, .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .card-grid-3, .industry-grid, .testi-grid, .package-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .service-layout { grid-template-columns: 1fr; }
  .sticky-sidebar { position: static; }
}
@media (max-width: 768px) {
  .nav-links { position: fixed; top: 64px; right: -100%; width: 260px; height: calc(100vh - 64px); background: #fff; flex-direction: column; justify-content: flex-start; padding: 2rem 1.5rem; gap: 1.5rem; border-left: 1px solid var(--border); transition: 0.3s ease; }
  .nav-links.open { right: 0; box-shadow: var(--shadow-lg); }
  .mobile-menu-btn { display: block; }
  .card-grid-3, .card-grid-2, .industry-grid, .testi-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .hero-inner { gap: 2rem; }
  .stat-pill { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .stats-row { grid-template-columns: 1fr; gap: 1rem; }
}

/* App Suite Layout (Google Workspace Style) */
.app-suite-section { padding: 6rem 0; background: #f8fafd; text-align: center; }
.app-suite-header h2 { font-size: 2.5rem; color: var(--text-dark); margin-bottom: 1rem; }
.app-suite-header p { font-size: 1.1rem; color: var(--text-mid); max-width: 600px; margin: 0 auto 3rem; }
.app-suite-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; max-width: 1000px; margin: 0 auto; }
.app-icon-card { background: transparent; padding: 1rem; width: 110px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; text-decoration: none; transition: all 0.2s ease; border: none; box-shadow: none; cursor: pointer; border-radius: 8px; outline: none; }
.app-icon-card:hover { background: rgba(0,0,0,0.04); transform: none; box-shadow: none; border-color: transparent; }
.app-icon-card .icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.app-icon-card .app-name { font-size: 0.85rem; font-weight: 500; color: #3c4043; text-align: center; line-height: 1.2; font-family: "Roboto", Arial, sans-serif; }

/* Strategy Call Modal */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(5px); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-content { background: #fff; border-radius: 20px; width: 90%; max-width: 450px; padding: 2.5rem 2rem; position: relative; transform: translateY(20px) scale(0.95); transition: transform 0.3s ease; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.modal-overlay.active .modal-content { transform: translateY(0) scale(1); }
.modal-close { position: absolute; top: 15px; right: 20px; background: transparent; border: none; font-size: 1.5rem; color: var(--text-light); cursor: pointer; transition: color 0.2s; }
.modal-close:hover { color: var(--google-red); }
.modal-header { text-align: center; margin-bottom: 1.5rem; }
.modal-header h3 { font-size: 1.5rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.modal-header p { font-size: 0.95rem; color: var(--text-mid); }
.strategy-form .form-group { margin-bottom: 1.2rem; text-align: left; }
.strategy-form label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.4rem; }
.strategy-form input, .strategy-form select { width: 100%; padding: 12px 15px; border: 1px solid var(--border); border-radius: 8px; font-family: inherit; font-size: 0.95rem; transition: border-color 0.2s; background: #fff; }
.strategy-form input:focus, .strategy-form select:focus { outline: none; border-color: var(--google-blue); box-shadow: 0 0 0 3px rgba(66,133,244,0.1); }

.page-header {
  padding: 120px 0 60px;
  background: var(--bg-light);
  text-align: center;
}
/* App Popover Styles (Google Style) */
.app-suite-grid .app-icon-card { background: transparent; padding: 1rem; width: 110px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; text-decoration: none; transition: all 0.2s ease; border: none; box-shadow: none; cursor: pointer; border-radius: 8px; outline: none; }
.app-popover { z-index: 2000; 
  position: absolute;
  top: 110%; left: 50%;
  transform: translateX(-50%) translateY(10px) scale(0.95);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
  padding: 1.5rem;
  width: 220px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.1, 0.9, 0.2, 1);
  z-index: 1000;
  pointer-events: none;
  cursor: default;
}
.app-icon-card:hover .app-popover,
.app-icon-card:focus .app-popover,
.app-icon-card:focus-within .app-popover { z-index: 2000; 
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  pointer-events: auto;
}
.app-popover .popover-icon { font-size: 3rem; margin-bottom: 10px; }
.app-popover .popover-title { font-size: 1.2rem; margin-bottom: 5px; color: var(--text-dark); font-weight: 500; font-family: 'Roboto', Arial, sans-serif; }
.app-popover .popover-desc { font-size: 0.95rem; color: #5f6368; margin-bottom: 20px; line-height: 1.4; font-family: 'Roboto', Arial, sans-serif; }
.app-popover .popover-link { display: inline-block; color: #1a73e8; font-weight: 500; font-size: 0.95rem; text-decoration: none; padding: 6px 16px; border-radius: 4px; transition: background 0.2s; font-family: 'Roboto', Arial, sans-serif; }
.app-popover .popover-link:hover { background: rgba(26,115,232,0.04); }

.app-icon-card:focus, .app-icon-card:active { outline: none !important; border: none !important; box-shadow: none !important; background: rgba(0,0,0,0.04); }

/* --- New Lead Gen & Trust Sections --- */
.free-services-section { background: var(--bg-gray); padding: 80px 0; }
.free-services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.free-card { background: var(--bg-white); border-radius: var(--radius-md); padding: 1.5rem; border: 1px solid var(--border); transition: var(--transition); display: flex; flex-direction: column; align-items: flex-start; position: relative; overflow: hidden; z-index: 1; }
.free-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(66,133,244,0.05), transparent); z-index: -1; opacity: 0; transition: var(--transition); }
.free-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--google-blue); }
.free-card:hover::before { opacity: 1; }
.free-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1rem; color: var(--google-blue); background: #e8f0fe; }
.free-card h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text-dark); }
.free-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1.5rem; flex-grow: 1; }
.btn-free { font-size: 0.9rem; font-weight: 500; color: var(--google-blue); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border: 1px solid rgba(66,133,244,0.3); border-radius: 20px; transition: var(--transition); cursor: pointer; background: transparent; }
.btn-free:hover { background: var(--google-blue); color: #fff; border-color: var(--google-blue); }

.starter-services-section { background: var(--bg-white); padding: 80px 0; border-top: 1px solid var(--border); }
.starter-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.starter-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2rem; transition: var(--transition); display: flex; flex-direction: column; position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.starter-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--google-blue); }
.starter-card::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--google-blue); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.starter-card:hover::after { transform: scaleX(1); }
.starter-price { font-size: 2rem; font-weight: 700; color: var(--google-blue); margin-bottom: 1rem; display: flex; align-items: baseline; gap: 4px; }
.starter-price span { font-size: 0.9rem; font-weight: 500; color: var(--text-light); }
.starter-card h4 { font-size: 1.25rem; font-weight: 600; margin-bottom: 1.5rem; color: var(--text-dark); border-bottom: 1px dashed var(--border); padding-bottom: 1rem; }
.starter-features { list-style: none; margin-bottom: 2rem; flex-grow: 1; }
.starter-features li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 0.75rem; font-size: 0.95rem; color: var(--text-mid); }
.starter-features li i { color: var(--google-green); margin-top: 3px; font-size: 0.85rem; }

.trust-section { background: var(--text-dark); color: #fff; padding: 60px 0; }
.trust-header { text-align: center; max-width: 700px; margin: 0 auto; }
.trust-header h2 { color: #fff; margin-bottom: 1rem; }
.trust-header p { color: rgba(255,255,255,0.7); }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 2rem; margin-top: 3rem; text-align: center; }
.trust-item { padding: 1rem; }
.trust-icon { width: 60px; height: 60px; margin: 0 auto 1rem; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--google-blue); transition: var(--transition); }
.trust-item:hover .trust-icon { background: var(--google-blue); color: #fff; transform: scale(1.1); }
.trust-item h5 { font-size: 1rem; font-weight: 500; margin: 0; color: #fff; }

.floating-whatsapp { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; background-color: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: var(--shadow-lg); z-index: 1000; text-decoration: none; transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.floating-whatsapp:hover { transform: scale(1.1) rotate(-10deg); color: #fff; }
.floating-whatsapp::before { content: ''; position: absolute; width: 100%; height: 100%; background-color: inherit; border-radius: 50%; z-index: -1; animation: pulse 2s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(1.5); opacity: 0; } }

.sticky-inquiry { position: fixed; left: -36px; top: 50%; transform: translateY(-50%) rotate(-90deg); transform-origin: left top; background: var(--google-blue); color: #fff; padding: 12px 24px; font-weight: 600; border-radius: 0 0 12px 12px; z-index: 999; box-shadow: var(--shadow-md); text-decoration: none; letter-spacing: 1px; transition: padding 0.3s ease; }
.sticky-inquiry:hover { padding-top: 18px; color: #fff; }

@media (max-width: 768px) {
  .free-services-grid { grid-template-columns: 1fr; }
  .starter-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-inquiry { display: none; }
}
