/* WebGlobalSolutions.com - Custom Styles */
:root {
  --primary: #0057FF;
  --primary-dark: #003FCC;
  --secondary: #00C2FF;
  --accent: #FF6B35;
  --dark: #0A0E1A;
  --dark-2: #111827;
  --gray: #6B7280;
  --light: #F9FAFB;
  --white: #FFFFFF;
  --gradient: linear-gradient(135deg, #0057FF 0%, #00C2FF 100%);
  --gradient-dark: linear-gradient(135deg, #0A0E1A 0%, #1E3A5F 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1F2937;
  background: #FFFFFF;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px; font-weight: 600;
  font-size: 0.95rem; cursor: pointer; border: none;
  transition: all 0.3s ease; text-decoration: none;
}
.btn-primary {
  background: var(--gradient); color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 87, 255, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0, 87, 255, 0.5); }
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white {
  background: var(--white); color: var(--primary);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* Header */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,87,255,0.08);
  transition: all 0.3s ease;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.3rem; }
.logo-icon {
  width: 40px; height: 40px; background: var(--gradient); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem;
}
.logo-text span { color: var(--primary); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 14px; border-radius: 6px; font-size: 0.9rem; font-weight: 500;
  color: #374151; transition: all 0.2s; white-space: nowrap;
}
.nav a:hover, .nav a.active { color: var(--primary); background: rgba(0,87,255,0.06); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px;
  background: white; border-radius: 12px; box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(-10px); transition: all 0.3s;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: 0.875rem; color: #374151;
}
.dropdown-menu a:hover { background: rgba(0,87,255,0.06); color: var(--primary); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s; }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: white; overflow-y: auto; padding: 20px; z-index: 999;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 12px 16px; border-radius: 8px; font-weight: 500;
  color: #374151; border-bottom: 1px solid #F3F4F6;
}
.mobile-nav a:hover { color: var(--primary); background: rgba(0,87,255,0.05); }
.mobile-nav-section { margin: 12px 0; }
.mobile-nav-section h4 { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); padding: 8px 16px; }

/* Hero */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--gradient-dark); color: white; padding-top: 72px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: 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.02'%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");
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,194,255,0.15); border: 1px solid rgba(0,194,255,0.3);
  color: var(--secondary); padding: 6px 16px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 20px;
}
.hero h1 { color: white; margin-bottom: 20px; }
.hero h1 span { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat h3 { font-size: 2rem; color: white; }
.hero-stat p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }

.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 32px; backdrop-filter: blur(10px);
  width: 100%; max-width: 420px;
}
.hero-card-title { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.service-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  color: white; padding: 8px 16px; border-radius: 100px; font-size: 0.85rem;
  margin: 4px; transition: all 0.3s;
}
.service-pill:hover { background: rgba(0,87,255,0.3); border-color: rgba(0,87,255,0.5); }
.service-pill .dot { width: 6px; height: 6px; background: var(--secondary); border-radius: 50%; }

/* Section Headers */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block; background: rgba(0,87,255,0.08); color: var(--primary);
  padding: 6px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--gray); font-size: 1.05rem; }

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.service-card {
  background: white; border: 1px solid #E5E7EB; border-radius: 16px;
  padding: 32px; transition: all 0.3s ease; cursor: pointer;
}
.service-card:hover { border-color: var(--primary); box-shadow: 0 10px 40px rgba(0,87,255,0.1); transform: translateY(-4px); }
.service-icon {
  width: 56px; height: 56px; background: rgba(0,87,255,0.08); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  margin-bottom: 20px; transition: all 0.3s;
}
.service-card:hover .service-icon { background: var(--primary); }
.service-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.service-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }
.service-card .arrow { color: var(--primary); font-size: 1.2rem; margin-top: 16px; display: block; }

/* Stats */
.stats-section { background: var(--gradient); color: white; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-item h3 { font-size: 2.5rem; color: white; }
.stat-item p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 24px; }
.process-step {
  text-align: center; padding: 32px 24px;
  background: white; border-radius: 16px; border: 1px solid #E5E7EB;
  position: relative;
}
.step-number {
  width: 48px; height: 48px; background: var(--gradient); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; margin: 0 auto 20px;
}
.process-step h3 { margin-bottom: 10px; }
.process-step p { color: var(--gray); font-size: 0.9rem; }

/* Why Choose Us */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 44px; height: 44px; min-width: 44px; background: rgba(0,87,255,0.08);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.why-item h4 { margin-bottom: 4px; }
.why-item p { color: var(--gray); font-size: 0.9rem; }

/* Industries */
.industries-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.industry-card {
  background: white; border: 1px solid #E5E7EB; border-radius: 12px;
  padding: 24px 20px; text-align: center; transition: all 0.3s;
}
.industry-card:hover { border-color: var(--primary); box-shadow: 0 4px 20px rgba(0,87,255,0.1); }
.industry-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.industry-card h4 { font-size: 0.9rem; color: #374151; }

/* SaaS Products */
.saas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.saas-card {
  background: var(--gradient-dark); border-radius: 16px; padding: 32px;
  color: white; position: relative; overflow: hidden; transition: all 0.3s;
}
.saas-card::before {
  content: ''; position: absolute; top: -50%; right: -50%;
  width: 100%; height: 100%; background: radial-gradient(circle, rgba(0,194,255,0.1) 0%, transparent 70%);
}
.saas-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,87,255,0.2); }
.saas-badge {
  display: inline-block; background: rgba(0,194,255,0.2); color: var(--secondary);
  padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 600;
  margin-bottom: 16px;
}
.saas-card h3 { color: white; margin-bottom: 10px; }
.saas-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 20px; }
.saas-features { list-style: none; }
.saas-features li { font-size: 0.85rem; color: rgba(255,255,255,0.7); padding: 4px 0; }
.saas-features li::before { content: '✓ '; color: var(--secondary); font-weight: 700; }

/* CTA Section */
.cta-section {
  background: var(--gradient-dark); color: white; text-align: center;
  padding: 100px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,87,255,0.3) 0%, transparent 70%);
}
.cta-section h2 { color: white; margin-bottom: 16px; position: relative; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 36px; position: relative; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid #E5E7EB; border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-question {
  width: 100%; background: white; border: none; cursor: pointer;
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  font-size: 1rem; font-weight: 600; color: var(--dark); text-align: left;
  transition: all 0.2s;
}
.faq-question:hover { background: rgba(0,87,255,0.02); }
.faq-question.open { color: var(--primary); }
.faq-question .icon { font-size: 1.2rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-question.open .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--gray); line-height: 1.7; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.testimonial-card {
  background: white; border: 1px solid #E5E7EB; border-radius: 16px; padding: 32px;
  transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.stars { color: #F59E0B; font-size: 1rem; margin-bottom: 16px; }
.testimonial-card p { color: #4B5563; font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--gradient);
  display: flex; align-items: center; justify-content: center; color: white; font-weight: 700;
}
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-role { color: var(--gray); font-size: 0.8rem; }

/* Contact Form */
.contact-form { max-width: 700px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-weight: 600; font-size: 0.9rem; color: #374151; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1.5px solid #E5E7EB; border-radius: 8px;
  font-size: 0.95rem; color: #1F2937; background: white;
  transition: border-color 0.2s; font-family: inherit; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,87,255,0.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* Footer */
.footer { background: var(--dark); color: white; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; margin: 16px 0 24px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 0.9rem;
  transition: all 0.2s;
}
.social-link:hover { background: var(--primary); }
.footer h4 { color: white; font-size: 0.95rem; margin-bottom: 20px; font-weight: 700; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,0.6); font-size: 0.875rem; transition: color 0.2s; }
.footer ul li a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,0.4); font-size: 0.85rem;
}

/* Page Hero */
.page-hero {
  background: var(--gradient-dark); color: white; padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,87,255,0.3) 0%, transparent 60%);
}
.page-hero .container { position: relative; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 0.875rem; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: rgba(255,255,255,0.9); }
.page-hero h1 { color: white; margin-bottom: 16px; max-width: 700px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  background: white; border: 1px solid #E5E7EB; border-radius: 20px;
  padding: 36px; transition: all 0.3s;
}
.pricing-card.featured {
  background: var(--gradient-dark); border-color: transparent; color: white;
  transform: scale(1.05);
}
.pricing-card:hover:not(.featured) { border-color: var(--primary); box-shadow: 0 10px 40px rgba(0,87,255,0.1); }
.pricing-badge { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; color: var(--primary); }
.pricing-card.featured .pricing-badge { color: var(--secondary); }
.pricing-price { font-size: 2.5rem; font-weight: 800; margin: 12px 0; }
.pricing-card.featured .pricing-price { color: white; }
.pricing-features { list-style: none; margin: 24px 0; }
.pricing-features li { padding: 8px 0; font-size: 0.9rem; border-bottom: 1px solid rgba(0,0,0,0.05); }
.pricing-card.featured .pricing-features li { border-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); }
.pricing-features li::before { content: '✓ '; color: var(--primary); font-weight: 700; }
.pricing-card.featured .pricing-features li::before { color: var(--secondary); }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 28px; }
.blog-card { background: white; border: 1px solid #E5E7EB; border-radius: 16px; overflow: hidden; transition: all 0.3s; }
.blog-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.blog-img { height: 200px; background: var(--gradient-dark); position: relative; overflow: hidden; }
.blog-category {
  position: absolute; top: 16px; left: 16px; background: var(--primary);
  color: white; padding: 4px 12px; border-radius: 100px; font-size: 0.75rem; font-weight: 600;
}
.blog-body { padding: 24px; }
.blog-meta { display: flex; gap: 16px; color: var(--gray); font-size: 0.8rem; margin-bottom: 12px; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }
.blog-link { color: var(--primary); font-size: 0.9rem; font-weight: 600; margin-top: 16px; display: block; }

/* Portfolio */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.portfolio-card { border-radius: 16px; overflow: hidden; position: relative; background: var(--gradient-dark); }
.portfolio-img { height: 240px; background: var(--gradient-dark); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.portfolio-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.7); opacity: 0;
  transition: opacity 0.3s; display: flex; align-items: flex-end;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-info { padding: 24px; color: white; }
.portfolio-tag { font-size: 0.75rem; color: var(--secondary); text-transform: uppercase; letter-spacing: 1px; }
.portfolio-info h3 { color: white; margin: 6px 0 8px; }
.portfolio-info p { color: rgba(255,255,255,0.7); font-size: 0.875rem; }

/* Tools */
.tool-section { background: #F9FAFB; }
.tool-card {
  background: white; border: 1px solid #E5E7EB; border-radius: 16px;
  padding: 36px; max-width: 700px; margin: 0 auto;
}
.range-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.range-group label { font-weight: 600; font-size: 0.9rem; display: flex; justify-content: space-between; }
.range-group input[type=range] { width: 100%; accent-color: var(--primary); }
.result-box {
  background: var(--gradient); color: white; border-radius: 12px;
  padding: 24px; text-align: center; margin-top: 24px;
}
.result-box .amount { font-size: 2.5rem; font-weight: 800; }

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 768px) {
  .nav, .header-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  .hero-grid, .why-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.fade-in { animation: fadeInUp 0.6s ease forwards; }
.float { animation: float 4s ease-in-out infinite; }

/* Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.bg-light { background: var(--light); }
.bg-dark { background: var(--dark); }
.mt-4 { margin-top: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.gap-4 { gap: 1rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.grid { display: grid; }
.rounded { border-radius: 8px; }
.shadow { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.tag { display: inline-block; background: rgba(0,87,255,0.08); color: var(--primary); padding: 4px 12px; border-radius: 6px; font-size: 0.8rem; font-weight: 600; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

.highlight-box {
  background: rgba(0,87,255,0.04); border: 1px solid rgba(0,87,255,0.1);
  border-left: 4px solid var(--primary); border-radius: 8px; padding: 20px 24px;
}

/* Notification bar */
.notif-bar {
  background: var(--gradient); color: white; text-align: center;
  padding: 10px; font-size: 0.875rem; font-weight: 500;
}
.notif-bar a { color: white; text-decoration: underline; }
