/* ============================================================
   APEX TECH WEB SERVICES INC. — Professional Stylesheet
   ============================================================ */

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

:root {
  --primary:      #0A1628;
  --secondary:    #1E6FFF;
  --accent:       #FF6B35;
  --success:      #22C55E;
  --white:        #FFFFFF;
  --light-gray:   #F7F9FC;
  --border:       #E8EDF5;
  --text-dark:    #0A1628;
  --text-mid:     #4A5568;
  --text-light:   #8896AB;
  --font-body:    'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm:    0 2px 8px rgba(10,22,40,0.08);
  --shadow-md:    0 8px 32px rgba(10,22,40,0.12);
  --shadow-lg:    0 20px 60px rgba(10,22,40,0.16);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    24px;
  --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-body); color: var(--text-dark); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.text-center { text-align: center; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(30,111,255,0.08); color: var(--secondary);
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(28px, 4vw, 44px);
  font-weight: 800; line-height: 1.2; color: var(--primary); margin-bottom: 20px;
}
.section-title span { color: var(--secondary); }
.section-subtitle { font-size: 17px; color: var(--text-mid); line-height: 1.75; max-width: 640px; }
.section-header-center { text-align: center; }
.section-header-center .section-subtitle { margin: 0 auto; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  padding: 13px 28px; border-radius: var(--radius-sm);
  transition: all var(--transition); cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--secondary); color: var(--white); }
.btn-primary:hover { background: #1558d4; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,111,255,0.35); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: #e55a26; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,53,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--primary); border-color: var(--border); }
.btn-outline-dark:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-sm { padding: 9px 20px; font-size: 14px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* TOPBAR */
.topbar { background: var(--primary); color: rgba(255,255,255,0.7); font-size: 13px; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item a { color: rgba(255,255,255,0.7); }
.topbar-item a:hover { color: var(--white); }
.topbar-item svg { flex-shrink: 0; opacity: 0.6; }

/* NAVBAR */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white); border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.nav-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo { width: 42px; height: 42px; object-fit: contain; border-radius: 8px; }
.nav-brand-name { font-family: var(--font-heading); font-size: 18px; font-weight: 800; color: var(--primary); line-height: 1.1; }
.nav-brand-name span { color: var(--secondary); }
.nav-brand-sub { font-size: 10px; font-weight: 500; color: var(--text-light); letter-spacing: 0.5px; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; color: var(--text-dark);
  transition: all var(--transition);
}
.nav-menu > li > a:hover, .nav-menu > li > a.active { color: var(--secondary); background: rgba(30,111,255,0.06); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); min-width: 220px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all var(--transition); z-index: 100;
}
.nav-menu > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 14px; font-size: 14px; font-weight: 500; color: var(--text-mid); border-radius: var(--radius-sm); transition: all var(--transition); }
.dropdown a:hover { background: rgba(30,111,255,0.06); color: var(--secondary); }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-phone { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--primary); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--primary); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0A1628 0%, #0D2144 40%, #0A2B5C 70%, #0A1628 100%);
}
.hero-overlay { 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='%231E6FFF' fill-opacity='0.04'%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-content { position: relative; z-index: 2; width: 100%; padding: 120px 0 80px; }
.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: rgba(30,111,255,0.15); color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 100px; border: 1px solid rgba(30,111,255,0.3); margin-bottom: 24px; }
.dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.2)} }
.hero-title { font-family: var(--font-heading); font-size: clamp(36px, 5vw, 62px); font-weight: 900; line-height: 1.1; color: var(--white); margin-bottom: 24px; }
.hero-title .highlight { color: var(--secondary); }
.hero-title .accent-text { color: var(--accent); }
.hero-desc { font-size: 18px; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 40px; max-width: 520px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 40px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat-num { font-family: var(--font-heading); font-size: 36px; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat-num span { color: var(--accent); }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; }
.hero-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-img-wrap img { width: 100%; height: 480px; object-fit: cover; }
.hero-card {
  position: absolute; background: var(--white); border-radius: var(--radius-md);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-lg); min-width: 180px;
}
.hero-card-1 { bottom: 32px; left: -24px; }
.hero-card-2 { top: 32px; right: -24px; }
.hero-card-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-card-icon.orange { background: rgba(255,107,53,0.1); color: var(--accent); }
.hero-card-icon.blue { background: rgba(30,111,255,0.1); color: var(--secondary); }
.hero-card-val { font-family: var(--font-heading); font-size: 20px; font-weight: 800; color: var(--primary); }
.hero-card-label { font-size: 12px; color: var(--text-light); }

/* TRUST BAR */
.trust-bar { background: var(--light-gray); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px 0; }
.trust-bar-inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-label { font-size: 12px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; flex-shrink: 0; }
.trust-logos { display: flex; gap: 32px; flex-wrap: wrap; align-items: center; }
.trust-logo-item { font-size: 14px; font-weight: 700; color: var(--text-light); letter-spacing: 0.5px; }

/* SERVICES */
.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; transition: all var(--transition); position: relative;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(30,111,255,0.2); }
.service-card-img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 28px; }
.service-tag { position: absolute; top: 16px; right: 16px; background: var(--accent); color: var(--white); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.5px; }
.service-icon { width: 52px; height: 52px; background: rgba(30,111,255,0.08); color: var(--secondary); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-card h3 { font-family: var(--font-heading); font-size: 19px; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--secondary); margin-top: 20px; transition: gap var(--transition); }
.service-link:hover { gap: 10px; }

/* WHY SECTION */
.why-section { background: var(--light-gray); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img-wrap { position: relative; }
.why-img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.why-badge-float { position: absolute; bottom: -24px; right: -24px; background: var(--secondary); color: var(--white); padding: 20px 28px; border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-md); }
.why-badge-float .num { font-family: var(--font-heading); font-size: 40px; font-weight: 900; line-height: 1; }
.why-badge-float .label { font-size: 12px; opacity: 0.85; margin-top: 4px; }
.why-features { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.why-feature { display: flex; gap: 16px; align-items: flex-start; }
.why-feature-icon { width: 48px; height: 48px; background: rgba(30,111,255,0.08); color: var(--secondary); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-feature h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.why-feature p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* PROCESS */
.process-section { background: var(--primary); padding: 96px 0; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 64px; }
.process-step { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md); padding: 36px 28px; transition: all var(--transition); }
.process-step:hover { background: rgba(30,111,255,0.1); border-color: rgba(30,111,255,0.3); transform: translateY(-4px); }
.process-num { font-family: var(--font-heading); font-size: 48px; font-weight: 900; color: rgba(30,111,255,0.3); line-height: 1; margin-bottom: 20px; }
.process-step h4 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.process-step p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* STATS */
.stats-section { background: var(--secondary); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-heading); font-size: 52px; font-weight: 900; color: var(--white); line-height: 1; }
.stat-num span { color: rgba(255,255,255,0.7); }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 8px; font-weight: 500; }

/* TESTIMONIALS */
.testimonials-section { background: var(--light-gray); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 36px; transition: all var(--transition); }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.testimonial-text { font-size: 15px; color: var(--text-mid); line-height: 1.75; font-style: italic; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; background: linear-gradient(135deg, var(--secondary), #0D2144); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 15px; font-weight: 700; flex-shrink: 0; }
.testimonial-name { font-weight: 700; color: var(--primary); font-size: 15px; }
.testimonial-role { font-size: 13px; color: var(--text-light); margin-top: 2px; }

/* CTA */
.cta-section { position: relative; padding: 96px 0; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0A1628 0%, #0D2144 50%, #0A2B5C 100%); }
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 700px; margin: 0 auto; }
.cta-content h2 { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--white); margin-bottom: 20px; line-height: 1.2; }
.cta-content p { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 40px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* CONTACT */
.contact-section { background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h3 { font-family: var(--font-heading); font-size: 26px; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
.contact-info > p { font-size: 15px; color: var(--text-mid); line-height: 1.75; margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon { width: 44px; height: 44px; background: rgba(30,111,255,0.08); color: var(--secondary); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-label { font-size: 12px; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.contact-item-val { font-size: 15px; color: var(--text-dark); font-weight: 500; line-height: 1.5; }
.contact-item-val a { color: var(--secondary); }
.contact-form-wrap { background: var(--light-gray); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 15px; color: var(--text-dark); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--secondary); box-shadow: 0 0 0 3px rgba(30,111,255,0.1); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; padding: 15px; font-size: 16px; margin-top: 8px; }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, #0A1628 0%, #0D2144 60%, #0A2B5C 100%); padding: 80px 0 64px; }
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,0.8); }
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(32px, 5vw, 56px); font-weight: 900; color: var(--white); margin-bottom: 16px; line-height: 1.1; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 600px; line-height: 1.7; }

/* POLICY PAGES */
.policy-body { padding: 80px 0; background: var(--white); }
.policy-container { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.policy-last-updated { font-size: 13px; color: var(--text-light); background: var(--light-gray); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 20px; margin-bottom: 40px; }
.policy-container h2 { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--primary); margin: 40px 0 16px; padding-bottom: 12px; border-bottom: 2px solid var(--border); }
.policy-container p { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.policy-container ul { margin: 0 0 16px 20px; }
.policy-container ul li { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 8px; list-style: disc; }
.policy-container a { color: var(--secondary); }
.policy-container a:hover { text-decoration: underline; }

/* FOOTER */
.footer { background: var(--primary); }
.footer-top { padding: 80px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-logo-img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; }
.footer-logo-name { font-family: var(--font-heading); font-size: 20px; font-weight: 800; color: var(--white); }
.footer-logo-name span { color: var(--secondary); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 28px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 38px; height: 38px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6); border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: all var(--transition); }
.social-btn:hover { background: var(--secondary); color: var(--white); }
.footer-col h4 { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact-items { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-item svg { color: var(--secondary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-payment { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.footer-payment span:first-child { font-size: 12px; color: rgba(255,255,255,0.35); }
.payment-badge { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 4px; letter-spacing: 0.5px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* SCROLL TOP */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 48px; height: 48px; background: var(--secondary); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden;
  transform: translateY(16px); transition: all var(--transition);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--accent); transform: translateY(-2px); }

/* TOAST */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: var(--success); color: var(--white);
  padding: 14px 24px; border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 600; box-shadow: var(--shadow-lg);
  opacity: 0; transition: all var(--transition); z-index: 9999; white-space: nowrap;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-content { padding: 100px 0 60px; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-img-wrap { max-width: 560px; }
  .why-badge-float { right: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .topbar .container { justify-content: center; }
  .topbar-right { display: none; }
  .nav-menu {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 16px; box-shadow: var(--shadow-md); gap: 4px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { padding: 12px 16px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; background: var(--light-gray); margin-top: 4px; }
  .nav-toggle { display: flex; }
  .nav-phone { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .section-pad { padding: 64px 0; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { justify-content: center; }
  .trust-logos { justify-content: center; }
}
