/* ========================================
   G-Tech Auto Repair — SiteLift Demo
   Style.css — Shared across all pages
   ======================================== */

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

/* ---- CSS Variables ---- */
:root {
  --primary: #0f0f0f;
  --brand: #d42b2b;
  --brand-dark: #a01e1e;
  --accent: #ff6a1a;
  --accent-light: #ff8c47;
  --white: #ffffff;
  --light: #f6f6f6;
  --gray: #888888;
  --gray-light: #e0e0e0;
  --text: #1c1c1c;
  --text-muted: #666666;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ---- Reset ---- */
*, *::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); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
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.6rem); }
h4 { font-size: 1.1rem; }
p { line-height: 1.8; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 4px;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: all var(--transition); cursor: pointer;
}
.btn-primary {
  background: var(--brand); color: var(--white);
  box-shadow: 0 4px 16px rgba(212,43,43,0.35);
}
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,43,43,0.45); }
.btn-accent {
  background: var(--accent); color: var(--white);
  box-shadow: 0 4px 16px rgba(255,106,26,0.35);
}
.btn-accent:hover { background: var(--accent-light); transform: translateY(-2px); }
.btn-outline {
  border: 2px solid var(--white); color: var(--white);
  background: transparent;
}
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-outline-dark {
  border: 2px solid var(--brand); color: var(--brand);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--brand); color: var(--white); }
.btn-lg { padding: 18px 44px; font-size: 1rem; }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .label {
  display: inline-block; color: var(--brand);
  font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px;
}
.section-header h2 { color: var(--primary); margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-dark { background: var(--primary); color: var(--white); }
.section-dark .section-header h2 { color: var(--white); }
.section-gray { background: var(--light); }
.divider {
  width: 60px; height: 4px; background: var(--brand);
  margin: 16px auto 0; border-radius: 2px;
}

/* ---- Top Bar ---- */
.topbar {
  background: var(--primary); color: rgba(255,255,255,0.8);
  padding: 9px 0; font-size: 0.82rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: rgba(255,255,255,0.8); transition: color var(--transition); }
.topbar a:hover { color: var(--accent); }
.topbar-right { display: flex; gap: 24px; align-items: center; }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { flex-shrink: 0; }

/* ---- Navigation ---- */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white); box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo .logo-icon {
  width: 44px; height: 44px; background: var(--brand);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
}
.nav-logo .logo-text { font-family: var(--font-heading); font-weight: 900; font-size: 1.15rem; color: var(--primary); line-height: 1.1; }
.nav-logo .logo-text span { color: var(--brand); display: block; font-size: 0.65rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 16px; border-radius: 4px;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.3px; color: var(--text);
  transition: all var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 16px; right: 16px;
  height: 2px; background: var(--brand); transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--brand); }
.nav-cta { margin-left: 8px; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: all var(--transition); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; background: var(--white); border-top: 1px solid var(--gray-light);
  padding: 16px 24px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 0; border-bottom: 1px solid var(--gray-light);
  font-family: var(--font-heading); font-weight: 600; color: var(--text); font-size: 0.95rem;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ---- Hero ---- */
.hero {
  min-height: 88vh; background: var(--primary);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg-pattern {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,43,43,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(255,106,26,0.08) 0%, transparent 50%);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 80px 24px; }
.hero-text .label {
  display: inline-block; background: rgba(212,43,43,0.2); color: var(--brand);
  padding: 6px 16px; border-radius: 100px; border: 1px solid rgba(212,43,43,0.3);
  font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
}
.hero-text h1 { color: var(--white); margin-bottom: 20px; }
.hero-text h1 .highlight { color: var(--brand); }
.hero-text p { color: rgba(255,255,255,0.72); font-size: 1.1rem; margin-bottom: 36px; max-width: 480px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat { }
.hero-stat .stat-num { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: var(--white); line-height: 1; }
.hero-stat .stat-num span { color: var(--accent); }
.hero-stat .stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* Hero Interactive Visual */
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  height: 480px;
}
.gear-canvas { position: relative; width: 100%; height: 100%; }

/* Speedometer */
.speedometer-container {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  text-align: center; z-index: 5;
}
.speedometer-label {
  font-family: var(--font-heading); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-top: 6px;
}

/* Particle canvas */
#particleCanvas {
  position: absolute; inset: 0; pointer-events: none;
}

/* ---- Badges / Trust ---- */
.trust-strip {
  background: var(--brand); padding: 20px 0;
}
.trust-strip .container { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--white); font-family: var(--font-heading); font-weight: 600; font-size: 0.88rem; }
.trust-icon { width: 32px; height: 32px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ---- Services Grid ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; box-shadow: var(--shadow);
  border: 1px solid var(--gray-light);
  transition: all var(--transition); cursor: pointer;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--brand); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-icon {
  width: 60px; height: 60px; background: rgba(212,43,43,0.1);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: background var(--transition);
}
.service-card:hover .service-icon { background: rgba(212,43,43,0.18); }
.service-card h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.15rem; }
.service-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 20px; }
.service-link { color: var(--brand); font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; display: flex; align-items: center; gap: 6px; }
.service-link svg { transition: transform var(--transition); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* Services page full cards */
.services-full .service-full-card {
  display: grid; grid-template-columns: 80px 1fr; gap: 28px;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow); border: 1px solid var(--gray-light);
  margin-bottom: 24px; transition: all var(--transition);
}
.services-full .service-full-card:hover { box-shadow: var(--shadow-lg); border-color: var(--gray-light); transform: translateX(4px); }

/* ---- Why Choose Us ---- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 36px; }
.feature-item { text-align: center; padding: 20px; }
.feature-icon {
  width: 72px; height: 72px; background: var(--brand);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 8px 24px rgba(212,43,43,0.3);
}
.feature-item h3 { color: var(--primary); margin-bottom: 12px; font-size: 1.1rem; }
.feature-item p { color: var(--text-muted); font-size: 0.92rem; }

/* ---- Reviews ---- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.review-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); border: 1px solid var(--gray-light); }
.review-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--brand); display: flex; align-items: center; justify-content: center; color: var(--white); font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem; flex-shrink: 0; }
.review-name { font-family: var(--font-heading); font-weight: 700; color: var(--primary); }
.review-date { font-size: 0.8rem; color: var(--gray); }
.review-stars { display: flex; gap: 3px; margin-bottom: 12px; }
.star { color: #f5a623; font-size: 1rem; }
.review-text { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }
.google-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--gray-light); border-radius: 100px; padding: 8px 18px; font-size: 0.85rem; font-family: var(--font-heading); font-weight: 600; margin-top: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.google-badge .rating-num { font-size: 1.2rem; font-weight: 900; color: var(--primary); }

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--brand) 0%, #8b0000 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.08) 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.85); font-size: 1.05rem; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-section .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- About Page ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-image-main {
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1515 100%);
  height: 420px; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--brand); color: var(--white);
  border-radius: var(--radius-lg); padding: 20px 24px; text-align: center;
  box-shadow: var(--shadow);
}
.about-badge .badge-num { font-family: var(--font-heading); font-size: 2.4rem; font-weight: 900; line-height: 1; }
.about-badge .badge-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.5px; opacity: 0.85; }
.about-text .label { color: var(--brand); font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; display: block; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; }
.about-checklist { margin: 24px 0; }
.about-checklist li { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; color: var(--text); }
.check-icon { width: 22px; height: 22px; background: rgba(212,43,43,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.team-card { text-align: center; }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), #8b0000); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; color: var(--white); font-family: var(--font-heading); font-weight: 900; font-size: 2rem; box-shadow: 0 8px 24px rgba(212,43,43,0.25); }
.team-card h3 { color: var(--primary); margin-bottom: 4px; font-size: 1.05rem; }
.team-card .role { color: var(--brand); font-size: 0.85rem; font-family: var(--font-heading); font-weight: 600; }

/* Accreditations */
.accred-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.accred-card { background: var(--white); border: 2px solid var(--gray-light); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; transition: border-color var(--transition); }
.accred-card:hover { border-color: var(--brand); }
.accred-card h4 { font-family: var(--font-heading); color: var(--primary); font-size: 0.9rem; margin-top: 12px; }
.accred-card p { color: var(--text-muted); font-size: 0.8rem; margin-top: 4px; }

/* ---- Contact Page ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-info h3 { color: var(--primary); margin-bottom: 24px; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-detail-icon { width: 48px; height: 48px; background: rgba(212,43,43,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-text .label { font-family: var(--font-heading); font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-detail-text a, .contact-detail-text p { color: var(--text); font-weight: 500; font-size: 1rem; }
.contact-detail-text a:hover { color: var(--brand); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 8px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--gray-light); font-size: 0.88rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 600; color: var(--primary); }
.hours-row .time { color: var(--text-muted); }

/* Contact Form */
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow); }
.contact-form h3 { color: var(--primary); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-family: var(--font-heading); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border: 2px solid var(--gray-light);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem; color: var(--text);
  background: var(--white); transition: border-color var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--brand); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #bbb; }
.form-submit { width: 100%; padding: 16px; font-size: 1rem; }
.form-success { display: none; text-align: center; padding: 20px; background: rgba(39,174,96,0.08); border: 1px solid rgba(39,174,96,0.3); border-radius: var(--radius); color: #27ae60; font-family: var(--font-heading); font-weight: 600; margin-top: 16px; }

/* Map */
.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-top: 60px; }
.map-placeholder {
  height: 380px; background: linear-gradient(135deg, #1c1c1e 0%, #2d2d2d 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px; color: rgba(255,255,255,0.7);
}
.map-placeholder .map-icon { font-size: 3rem; }
.map-placeholder h4 { font-family: var(--font-heading); color: var(--white); font-size: 1.2rem; }
.map-placeholder p { font-size: 0.9rem; }
.map-placeholder a { color: var(--accent); font-weight: 600; }

/* ---- Footer ---- */
.footer { background: #080808; color: rgba(255,255,255,0.7); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 60px; }
.footer-brand .logo-text { font-family: var(--font-heading); font-weight: 900; font-size: 1.2rem; color: var(--white); }
.footer-brand .logo-text span { color: var(--brand); display: block; font-size: 0.62rem; letter-spacing: 2px; }
.footer-brand p { margin-top: 16px; font-size: 0.88rem; line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all var(--transition); }
.social-btn:hover { background: var(--brand); color: var(--white); }
.footer h4 { color: var(--white); font-family: var(--font-heading); font-size: 0.88rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer ul li a:hover { color: var(--white); }
.footer-contact .fc-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.88rem; }
.footer-contact .fc-item svg { flex-shrink: 0; margin-top: 2px; color: var(--brand); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }

/* ---- Page Hero (interior pages) ---- */
.page-hero { background: var(--primary); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(212,43,43,0.15) 0%, transparent 70%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.45); }
.page-hero .breadcrumb a:hover { color: var(--accent); }
.page-hero .breadcrumb .sep { color: rgba(255,255,255,0.25); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ---- Password Gate ---- */
.password-gate {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 100%);
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.password-gate-card { background: #141414; border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 52px 44px; max-width: 420px; width: 100%; text-align: center; box-shadow: 0 24px 80px rgba(0,0,0,0.6); }
.gate-logo { font-family: var(--font-heading); font-weight: 900; font-size: 1.3rem; color: var(--white); margin-bottom: 8px; }
.gate-logo span { color: var(--brand); }
.gate-subtitle { color: rgba(255,255,255,0.4); font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 36px; }
.gate-title { color: var(--white); font-size: 1.1rem; font-family: var(--font-heading); font-weight: 600; margin-bottom: 24px; }
.gate-input-wrap { position: relative; margin-bottom: 16px; }
.gate-input {
  width: 100%; padding: 14px 18px; background: rgba(255,255,255,0.06); border: 2px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); color: var(--white); font-family: var(--font-body); font-size: 1rem;
  text-align: center; letter-spacing: 4px; outline: none; transition: border-color var(--transition);
}
.gate-input::placeholder { letter-spacing: 1px; color: rgba(255,255,255,0.25); }
.gate-input:focus { border-color: var(--brand); }
.gate-error { color: #ff6b6b; font-size: 0.82rem; margin-bottom: 12px; display: none; }
.gate-btn { width: 100%; padding: 14px; background: var(--brand); color: var(--white); border: none; border-radius: var(--radius); font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; transition: background var(--transition); }
.gate-btn:hover { background: var(--brand-dark); }
.gate-note { color: rgba(255,255,255,0.3); font-size: 0.75rem; margin-top: 24px; }

/* ---- Responsive ---- */
@media (max-width: 968px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; padding: 60px 24px; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { height: 320px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .trust-strip .container { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .topbar .container { justify-content: center; }
  .topbar-left { display: none; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .contact-form { padding: 28px 20px; }
}

/* ---- Animations ---- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes spinGear { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes spinGearReverse { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.05); opacity: 0.8; } }
@keyframes needleSweep { 0% { transform: rotate(-90deg); } 100% { transform: rotate(var(--target-angle, 60deg)); } }

.animate-up { animation: fadeUp 0.7s ease both; }
.animate-up-delay-1 { animation: fadeUp 0.7s ease 0.15s both; }
.animate-up-delay-2 { animation: fadeUp 0.7s ease 0.3s both; }
.animate-up-delay-3 { animation: fadeUp 0.7s ease 0.45s both; }

/* Gear SVG animations */
.gear-large { animation: spinGear 8s linear infinite; transform-origin: center; }
.gear-medium { animation: spinGearReverse 6s linear infinite; transform-origin: center; }
.gear-small { animation: spinGear 4s linear infinite; transform-origin: center; }

/* Speedometer needle */
.speedo-needle { transform-origin: 50% 90%; animation: needleSweep 2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both; }
