/* ============================================
   CADRONIX — SHARED STYLESHEET
   https://cadronix.com
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ============ CSS VARIABLES ============ */
:root {
  --navy:       #0B1F3A;
  --navy-light: #132b52;
  --blue:       #1D6FEB;
  --blue-dark:  #155bb5;
  --blue-light: #E8F0FE;
  --cyan:       #00C9FF;
  --gray-100:   #F5F7FA;
  --gray-200:   #E8ECF0;
  --gray-400:   #9BA8B9;
  --gray-600:   #5C6B7A;
  --gray-800:   #2D3A47;
  --white:      #FFFFFF;
  --black:      #060F1A;
  --success:    #10B981;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --shadow-sm:  0 2px 8px rgba(11,31,58,0.08);
  --shadow-md:  0 8px 32px rgba(11,31,58,0.12);
  --shadow-lg:  0 20px 60px rgba(11,31,58,0.16);
  --transition: all 0.25s ease;
  --font-head:  'Syne', sans-serif;
  --font-body:  'DM Sans', sans-serif;
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; }

/* ============ TYPOGRAPHY ============ */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); color: var(--navy); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; color: var(--gray-600); font-size: 1.05rem; }
p:last-child { margin-bottom: 0; }

/* ============ LAYOUT UTILITIES ============ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-bg { background: var(--gray-100); }
.section-navy { background: var(--navy); }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-blue { color: var(--blue); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mb-64 { margin-bottom: 64px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  font-family: var(--font-head); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.01em; transition: var(--transition); cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue); color: var(--white);
  box-shadow: 0 4px 20px rgba(29,111,235,0.35);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(29,111,235,0.45); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-outline-blue {
  background: transparent; color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); }

/* ============ SECTION LABELS ============ */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-light); color: var(--blue);
  font-family: var(--font-head); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 16px;
}
.section-label.white { background: rgba(255,255,255,0.15); color: var(--white); }

/* ============ CARDS ============ */
.card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 32px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200); transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--blue-light); }
.card-icon {
  width: 56px; height: 56px; border-radius: var(--radius-sm);
  background: var(--blue-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--blue);
}

/* ============ HEADER / NAV ============ */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11,31,58,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
#header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.2); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 32px;
}
.nav-logo {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.02em; flex-shrink: 0;
}
.nav-logo span { color: var(--cyan); }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 500;
  color: rgba(255,255,255,0.8); padding: 8px 14px; border-radius: var(--radius-sm);
  transition: var(--transition); display: flex; align-items: center; gap: 5px;
  cursor: pointer; white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); border: 1px solid var(--gray-200);
  min-width: 260px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.2s ease; z-index: 100;
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--radius-sm);
  color: var(--gray-800); font-size: 0.92rem; font-weight: 500;
  transition: var(--transition);
}
.dropdown-link:hover { background: var(--blue-light); color: var(--blue); }
.dropdown-link svg { color: var(--blue); flex-shrink: 0; }
.nav-cta { margin-left: 8px; }

/* Mobile Nav Toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2d5e 50%, #0B1F3A 100%);
  padding: 160px 0 100px; position: relative; overflow: hidden; min-height: 100vh;
  display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(29,111,235,0.15) 0%, transparent 70%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(29,111,235,0.2); border: 1px solid rgba(29,111,235,0.4);
  color: var(--cyan); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--cyan); }
.hero p { color: rgba(255,255,255,0.7); font-size: 1.15rem; margin-bottom: 36px; max-width: 500px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat strong { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--white); }
.hero-stat span { font-size: 0.88rem; color: rgba(255,255,255,0.55); }

/* Hero Form Card */
.hero-form-card {
  background: rgba(255,255,255,0.97); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  position: relative; z-index: 1;
}
.hero-form-card h3 { color: var(--navy); margin-bottom: 6px; font-size: 1.3rem; }
.hero-form-card p { font-size: 0.9rem; margin-bottom: 24px; }

/* ============ FORMS ============ */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-control {
  width: 100%; padding: 12px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-200); font-family: var(--font-body); font-size: 0.95rem;
  color: var(--gray-800); background: var(--white); transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,111,235,0.12); }
.form-control::placeholder { color: var(--gray-400); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239BA8B9' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; }
.form-note { font-size: 0.78rem; color: var(--gray-400); text-align: center; margin-top: 12px; }
.honeypot { display: none !important; }

/* Form Status Messages */
.form-success {
  background: #D1FAE5; border: 1px solid #10B981; color: #065F46;
  padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.92rem;
  font-weight: 500; display: none; margin-top: 16px;
}
.form-error {
  background: #FEE2E2; border: 1px solid #EF4444; color: #991B1B;
  padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.92rem;
  font-weight: 500; display: none; margin-top: 16px;
}

/* ============ SERVICE CARDS ============ */
.service-card {
  background: var(--white); border-radius: var(--radius-md); padding: 32px;
  border: 1px solid var(--gray-200); transition: var(--transition);
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow-sm);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: rgba(29,111,235,0.3); }
.service-card-icon {
  width: 60px; height: 60px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue-light), rgba(29,111,235,0.1));
  display: flex; align-items: center; justify-content: center; color: var(--blue);
}
.service-card h3 { font-size: 1.15rem; color: var(--navy); }
.service-card p { font-size: 0.92rem; line-height: 1.6; flex-grow: 1; }
.service-card-link { color: var(--blue); font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.service-card:hover .service-card-link { gap: 10px; }

/* ============ PROCESS STEPS ============ */
.process-step {
  display: flex; gap: 24px; align-items: flex-start;
}
.step-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  font-family: var(--font-head); font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-content h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step-content p { font-size: 0.92rem; }

/* ============ TESTIMONIALS ============ */
.testimonial-card {
  background: var(--white); border-radius: var(--radius-md); padding: 32px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200);
}
.testimonial-stars { color: #F59E0B; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.97rem; line-height: 1.7; color: var(--gray-600); font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.92rem; color: var(--navy); }
.testimonial-role { font-size: 0.8rem; color: var(--gray-400); }

/* ============ STATS BAR ============ */
.stats-bar { background: var(--navy); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-item strong { display: block; font-family: var(--font-head); font-size: 2.8rem; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.stat-item strong span { color: var(--cyan); }
.stat-item p { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin: 0; }

/* ============ CTA SECTION ============ */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, #0d4db5 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ TRUST BADGES ============ */
.trust-strip { background: var(--gray-100); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 32px 0; }
.trust-items { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--gray-600); font-size: 0.9rem; font-weight: 500; }
.trust-item svg { color: var(--blue); }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2d5e 100%);
  padding: 140px 0 80px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 30%, rgba(29,111,235,0.2) 0%, transparent 70%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.15rem; max-width: 640px; margin: 0 auto 32px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a { color: rgba(255,255,255,0.5); font-size: 0.85rem; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.3); font-size: 0.85rem; }
.breadcrumb .current { color: rgba(255,255,255,0.8); font-size: 0.85rem; }

/* ============ FEATURES / WHY US ============ */
.feature-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.feature-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--blue-light); display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; }

/* ============ FAQ ============ */
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
  width: 100%; text-align: left; padding: 20px 0; background: none;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--navy);
  cursor: pointer; gap: 16px;
}
.faq-question svg { flex-shrink: 0; transition: transform 0.25s; color: var(--blue); }
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding-bottom: 20px; font-size: 0.95rem; line-height: 1.7; }

/* ============ PORTFOLIO GRID ============ */
.portfolio-item {
  border-radius: var(--radius-md); overflow: hidden;
  background: var(--gray-200); aspect-ratio: 4/3;
  position: relative; cursor: pointer;
}
.portfolio-item-inner {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  padding: 24px; text-align: center; transition: var(--transition);
}
.portfolio-item:hover .portfolio-item-inner { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); }
.portfolio-item-inner svg { color: rgba(255,255,255,0.3); }
.portfolio-item-inner h4 { color: var(--white); font-size: 1rem; }
.portfolio-item-inner span { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.portfolio-overlay {
  position: absolute; inset: 0; background: rgba(29,111,235,0.9);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px;
  opacity: 0; transition: opacity 0.3s; padding: 20px; text-align: center;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay span { color: var(--white); font-weight: 600; font-size: 0.95rem; }

/* ============ FOOTER ============ */
.footer { background: var(--black); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .nav-logo { font-size: 1.6rem; margin-bottom: 16px; display: block; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 38px; height: 38px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.social-btn:hover { background: var(--blue); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.45); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-item svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.5; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.85rem; margin: 0; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.3); font-size: 0.82rem; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ============ STICKY QUOTE BUTTON ============ */
.sticky-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  background: var(--blue); color: var(--white);
  padding: 14px 22px; border-radius: 100px;
  font-family: var(--font-head); font-weight: 600; font-size: 0.88rem;
  box-shadow: 0 8px 32px rgba(29,111,235,0.5); transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.sticky-cta:hover { background: var(--blue-dark); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(29,111,235,0.6); }

/* WhatsApp Float */
.whatsapp-btn {
  position: fixed; bottom: 90px; right: 28px; z-index: 900;
  background: #25D366; color: var(--white);
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45); transition: var(--transition);
}
.whatsapp-btn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }

/* Scroll to Top */
.scroll-top {
  position: fixed; bottom: 28px; left: 28px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(11,31,58,0.8); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: var(--transition); cursor: pointer;
  border: 1px solid rgba(255,255,255,0.15);
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--navy); transform: translateY(-3px); }

/* ============ INDUSTRIES ============ */
.industry-card {
  background: var(--white); border-radius: var(--radius-md); padding: 28px 24px;
  border: 1px solid var(--gray-200); text-align: center; transition: var(--transition);
}
.industry-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(29,111,235,0.3); }
.industry-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--blue-light); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; color: var(--blue); }
.industry-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 8px; }
.industry-card p { font-size: 0.85rem; }

/* ============ SCROLL ANIMATIONS ============ */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.6s ease; }
.fade-in.visible { opacity: 1; }

/* ============ TOOLS SECTION ============ */
.tool-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gray-100); border: 1px solid var(--gray-200);
  padding: 10px 18px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.9rem; color: var(--navy);
  transition: var(--transition);
}
.tool-badge:hover { background: var(--blue-light); border-color: rgba(29,111,235,0.3); color: var(--blue); }

/* ============ CONTENT PAGES ============ */
.content-section h2 { margin-bottom: 16px; }
.content-section h3 { margin-top: 32px; margin-bottom: 12px; font-size: 1.2rem; }
.content-section p { margin-bottom: 16px; }
.content-section ul { margin: 16px 0 24px 0; }
.content-section ul li { padding: 6px 0 6px 24px; position: relative; font-size: 0.97rem; color: var(--gray-600); }
.content-section ul li::before { content: ''; position: absolute; left: 0; top: 14px; width: 8px; height: 8px; background: var(--blue); border-radius: 50%; }

/* ============ CONTACT PAGE ============ */
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-info-icon { width: 52px; height: 52px; border-radius: var(--radius-sm); background: var(--blue-light); display: flex; align-items: center; justify-content: center; color: var(--blue); flex-shrink: 0; }
.contact-info-text h4 { color: var(--navy); margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a { font-size: 0.95rem; color: var(--gray-600); margin: 0; }
.contact-info-text a:hover { color: var(--blue); }

/* ============ PRELOADER ============ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--white); margin-bottom: 24px; }
.preloader-logo span { color: var(--cyan); }
.preloader-bar { width: 200px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; margin: 0 auto; }
.preloader-fill { height: 100%; background: linear-gradient(90deg, var(--blue), var(--cyan)); border-radius: 3px; animation: preload 1.2s ease forwards; }
@keyframes preload { from { width: 0; } to { width: 100%; } }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero { padding: 120px 0 64px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .nav-menu { display: none; }
  .nav-menu.open { 
    display: flex; flex-direction: column; position: absolute; 
    top: 72px; left: 0; right: 0; background: var(--navy);
    padding: 16px; border-top: 1px solid rgba(255,255,255,0.08);
    gap: 0; z-index: 999;
  }
  .nav-toggle { display: flex; }
  .dropdown { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; background: rgba(255,255,255,0.05); border: none; display: none; margin-top: 4px; }
  .nav-item.open .dropdown { display: block; }
  .dropdown-link { color: rgba(255,255,255,0.7); }
  .dropdown-link:hover { background: rgba(255,255,255,0.05); color: var(--white); }
  .nav-cta { margin-left: 0; width: 100%; margin-top: 8px; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 24px; }
  .trust-items { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
  .sticky-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 0.82rem; }
  .whatsapp-btn { bottom: 80px; right: 16px; }
}
