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

:root {
  --indigo: #212575;
  --navy: #04093A;
  --black: #0B0C11;
  --orange: #F98B16;
  --orange-hover: #F73900;
  --blue: #0037DD;
  --blue-bright: #0057FF;
  --blue-light: #BFDFFF;
  --peach: #FFCAA5;
  --white: #FFFFFF;
  --gray: #F4F4F4;
  --border: #D8D8D8;
  --muted: #6f6f6f;
  --font: 'Manrope', Arial, sans-serif;
  --font-caption: 'DM Sans', sans-serif;
  --wide: 1248px;
  --ease: cubic-bezier(0.475, 0.425, 0, 0.995);
}

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

.al-wrap { max-width: var(--wide); margin: 0 auto; padding: 0 24px; }

@keyframes al-fade-up { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes al-kenburns { from { transform: scale(1); } to { transform: scale(1.08); } }
@keyframes al-shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes al-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes al-pulse-ring { 0% { box-shadow: 0 0 0 0 rgba(249,139,22,0.4); } 70% { box-shadow: 0 0 0 12px rgba(249,139,22,0); } 100% { box-shadow: 0 0 0 0 rgba(249,139,22,0); } }

.al-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.al-reveal.visible { opacity: 1; transform: translateY(0); }

/* Header */
.al-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  height: 80px; display: flex; align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  animation: al-fade-up 0.6s var(--ease) both;
}
.al-header-inner { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.al-logo img { height: 34px; transition: transform 0.3s; }
.al-logo:hover img { transform: scale(1.03); }
.al-nav { display: flex; align-items: center; gap: 28px; }
.al-nav-item { position: relative; }
.al-nav-item > a {
  font-size: 15px; font-weight: 500; color: var(--black); transition: color 0.32s;
  padding: 8px 0; position: relative;
}
.al-nav-item:hover > a, .al-nav-item > a.active { color: var(--orange); }
.al-nav-item > a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 2px;
  background: var(--orange); transform: scaleX(0); transition: transform 0.32s var(--ease);
}
.al-nav-item:hover > a::after, .al-nav-item > a.active::after { transform: scaleX(1); }
.al-dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 280px; background: var(--white); border-radius: 12px;
  box-shadow: 0 20px 60px rgba(11,12,17,0.15); padding: 12px 0;
  opacity: 0; visibility: hidden; transition: all 0.32s var(--ease); pointer-events: none;
}
.al-nav-item:hover .al-dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.al-dropdown a { display: block; padding: 10px 22px; font-size: 14px; transition: all 0.2s; }
.al-dropdown a:hover { color: var(--orange); background: var(--gray); padding-left: 28px; }
.al-header-cta {
  padding: 11px 26px; background: var(--orange); color: var(--white);
  font-size: 14px; font-weight: 600; border-radius: 32px; border: 2px solid var(--orange);
  transition: all 0.3s var(--ease); box-shadow: 0 4px 20px rgba(249,139,22,0.35);
}
.al-header-cta:hover { background: var(--orange-hover); border-color: var(--orange-hover); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(247,57,0,0.4); color: var(--white); }
.al-menu-btn { display: none; font-size: 14px; font-weight: 600; }

.al-drawer { position: fixed; inset: 0; z-index: 950; pointer-events: none; }
.al-drawer.open { pointer-events: auto; }
.al-drawer-bg { position: absolute; inset: 0; background: rgba(4,9,58,0.6); backdrop-filter: blur(4px); opacity: 0; transition: opacity 0.35s; }
.al-drawer.open .al-drawer-bg { opacity: 1; }
.al-drawer-panel { position: absolute; top: 0; right: 0; width: min(400px, 92vw); height: 100%; background: var(--white); overflow-y: auto; transform: translateX(100%); transition: transform 0.45s var(--ease); padding: 80px 28px 40px; }
.al-drawer.open .al-drawer-panel { transform: translateX(0); }
.al-drawer-close { position: absolute; top: 22px; right: 24px; font-size: 32px; color: var(--black); }
.al-drawer-group { margin-bottom: 28px; }
.al-drawer-group h3 { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--indigo); margin-bottom: 12px; }
.al-drawer-group a { display: block; padding: 12px 0; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--gray); transition: color 0.2s, padding-left 0.2s; }
.al-drawer-group a:hover { color: var(--orange); padding-left: 8px; }

/* Buttons */
.al-btn-pill {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 36px; background: var(--orange); color: var(--white);
  font-size: 15px; font-weight: 700; border-radius: 60px;
  transition: all 0.35s var(--ease); box-shadow: 0 6px 24px rgba(249,139,22,0.4);
  position: relative; overflow: hidden;
}
.al-btn-pill::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transform: translateX(-100%); transition: transform 0.6s; }
.al-btn-pill:hover::before { transform: translateX(100%); }
.al-btn-pill:hover { background: var(--orange-hover); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(247,57,0,0.45); color: var(--white); }
.al-btn-gradient {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; background: linear-gradient(135deg, #205FDB 0%, #1114C4 100%);
  color: var(--white); font-size: 14px; font-weight: 700; border-radius: 8px;
  transition: all 0.3s; box-shadow: 0 4px 16px rgba(32,95,219,0.35);
}
.al-btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(32,95,219,0.45); color: var(--white); }
.al-btn-3d {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 32px;
  background: linear-gradient(164deg, var(--indigo) 0%, var(--blue) 100%);
  color: var(--white); font-size: 14px; font-weight: 700; border-radius: 8px;
  box-shadow: 0 4px 0 #00124D, 0 8px 20px rgba(33,37,117,0.35);
  transition: all 0.2s;
}
.al-btn-3d:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #00124D, 0 12px 28px rgba(33,37,117,0.4); color: var(--white); }
.al-btn-3d:active { transform: translateY(2px); box-shadow: 0 2px 0 #00124D; }
.al-link { color: var(--blue-bright); font-weight: 600; transition: color 0.2s; position: relative; }
.al-link::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 100%; height: 1px; background: var(--orange); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
.al-link:hover { color: var(--orange); }
.al-link:hover::after { transform: scaleX(1); }

/* Hero — Aciron parallax cinematic */
.al-hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: var(--white); padding: 120px 24px 80px; margin-top: 80px; overflow: hidden;
}
.al-hero-media { position: absolute; inset: 0; overflow: hidden; }
.al-hero-bg { width: 100%; height: 100%; object-fit: cover; animation: al-kenburns 20s ease-in-out infinite alternate; }
.al-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(152deg, rgba(11,12,17,0.82) 0%, rgba(4,9,58,0.7) 45%, rgba(33,37,117,0.5) 100%);
}
.al-hero-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,139,22,0.15) 0%, transparent 70%);
  top: 20%; right: -10%; pointer-events: none; animation: al-float 8s ease-in-out infinite;
}
.al-hero-content { position: relative; z-index: 2; max-width: 820px; animation: al-fade-up 0.9s 0.2s var(--ease) both; }
.al-hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); font-weight: 700; line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.02em; }
.al-hero-eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.al-hero-tagline { font-size: clamp(1.2rem, 2.5vw, 1.65rem); font-weight: 500; margin-bottom: 16px; color: var(--blue-light); }
.al-hero-sub { font-size: 18px; opacity: 0.88; margin-bottom: 36px; max-width: 580px; line-height: 1.7; font-weight: 400; }
.al-img-caption { position: absolute; bottom: 12px; left: 12px; right: 12px; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.75); background: rgba(0,0,0,0.55); padding: 8px 12px; border-radius: 6px; z-index: 2; }
.al-section-sub { text-align: center; color: rgba(255,255,255,0.72); max-width: 560px; margin: -36px auto 48px; font-size: 15px; line-height: 1.65; position: relative; z-index: 1; }
.al-lead-text { color: var(--muted); line-height: 1.75; max-width: 680px; margin-bottom: 32px; }
.al-page-img { width: 100%; max-width: 720px; border-radius: 12px; margin-bottom: 24px; }
.al-badge { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); background: rgba(249,139,22,0.12); padding: 4px 10px; border-radius: 4px; margin-bottom: 10px; }
.al-badge-inline { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); }
.al-founder { display: flex; gap: 28px; align-items: flex-start; margin-bottom: 40px; padding: 32px; background: var(--gray); border-radius: 16px; }
.al-founder-avatar { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--indigo), var(--blue)); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700; flex-shrink: 0; }
.al-founder-role { font-size: 14px; font-weight: 600; color: var(--orange); margin-bottom: 12px; }
.al-facts-table { width: 100%; max-width: 640px; border-collapse: collapse; font-size: 14px; }
.al-facts-table th, .al-facts-table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); }
.al-facts-table th { width: 38%; font-weight: 600; color: var(--indigo); background: var(--gray); }
.al-address-note { font-size: 13px; color: var(--muted); display: block; margin: 4px 0 8px; }
.al-faq-list { max-width: 680px; }
.al-faq-item { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.al-faq-item dt { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--indigo); }
.al-faq-item dd { font-size: 15px; color: var(--muted); line-height: 1.75; }
.al-cta-band { background: linear-gradient(152deg, var(--navy) 0%, var(--black) 100%); color: var(--white); padding: 80px 0; text-align: center; }
.al-cta-inner h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; margin-bottom: 14px; }
.al-cta-inner p { opacity: 0.85; max-width: 560px; margin: 0 auto 28px; line-height: 1.7; }
.al-trust-lead { text-align: center; opacity: 0.85; margin-bottom: 8px; }
.al-portfolio-grid-3 { grid-template-columns: repeat(3, 1fr); }
.al-form-light label { color: var(--indigo); }

/* Intro split with image */
.al-intro { background: var(--black); color: var(--white); padding: 0; position: relative; overflow: hidden; }
.al-intro-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.al-intro-copy { padding: clamp(48px, 6vw, 80px); display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
.al-intro-copy h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; margin-bottom: 20px; line-height: 1.25; }
.al-intro-copy p { font-size: 15px; opacity: 0.85; line-height: 1.75; margin-bottom: 14px; }
.al-intro-visual { position: relative; overflow: hidden; }
.al-intro-visual img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; transition: transform 0.8s var(--ease); }
.al-intro-visual:hover img { transform: scale(1.04); }
.al-intro-visual::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--black) 0%, transparent 30%); }
.al-form { background: rgba(255,255,255,0.06); padding: 28px; border-radius: 12px; border: 1px solid rgba(191,223,255,0.12); margin-top: 24px; backdrop-filter: blur(8px); }
.al-form label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--blue-light); }
.al-form input, .al-form textarea {
  width: 100%; padding: 12px 14px; margin-bottom: 14px; border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.07); color: var(--white); font-family: var(--font); font-size: 14px; border-radius: 6px; transition: border-color 0.3s;
}
.al-form input:focus, .al-form textarea:focus { outline: none; border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(191,223,255,0.15); }
.al-form textarea { min-height: 90px; resize: vertical; }

/* Services dark — glass cards */
.al-services-dark {
  background: linear-gradient(180deg, var(--navy) 0%, #0a0d2e 100%);
  color: var(--white); padding: 100px 0; position: relative;
}
.al-services-dark::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(0,55,221,0.12) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 80%, rgba(249,139,22,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.al-section-title { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; text-align: center; margin-bottom: 56px; position: relative; z-index: 1; }
.al-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; z-index: 1; }
.al-svc-box {
  padding: 32px 28px; background: rgba(255,255,255,0.04); border-radius: 16px;
  border: 1px solid rgba(191,223,255,0.1); transition: all 0.4s var(--ease);
  position: relative; overflow: hidden;
}
.al-svc-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), var(--blue-light)); transform: scaleX(0); transition: transform 0.4s var(--ease); }
.al-svc-box:hover { transform: translateY(-8px); border-color: rgba(249,139,22,0.35); box-shadow: 0 20px 50px rgba(0,0,0,0.3); background: rgba(255,255,255,0.07); }
.al-svc-box:hover::before { transform: scaleX(1); }
.al-svc-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 10px; margin-bottom: 20px; }
.al-svc-box h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.al-svc-box p { font-size: 14px; opacity: 0.78; line-height: 1.65; margin-bottom: 16px; }
.al-svc-box a { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue-light); transition: color 0.2s; }
.al-svc-box a:hover { color: var(--orange); }

/* Stats shimmer pills */
.al-stats { background: var(--white); padding: 80px 0; text-align: center; }
.al-stats-headline { font-size: clamp(1.2rem, 2.5vw, 1.65rem); font-weight: 500; max-width: 920px; margin: 0 auto 48px; line-height: 1.45; }
.al-stats-row { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.al-stat-pill {
  padding: 28px 48px; border-radius: 8px; color: var(--white); min-width: 200px;
  background: linear-gradient(208deg, var(--blue) 0%, var(--navy) 54%);
  box-shadow: 0 8px 32px rgba(0,55,221,0.25); transition: transform 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.al-stat-pill::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent); background-size: 200% 100%; animation: al-shimmer 3s infinite; }
.al-stat-pill:hover { transform: translateY(-6px) scale(1.02); }
.al-stat-num { font-size: clamp(1.4rem, 3vw, 2.5rem); font-weight: 800; display: block; margin-bottom: 6px; position: relative; z-index: 1; }
.al-stat-label { font-size: 13px; font-weight: 500; opacity: 0.9; position: relative; z-index: 1; letter-spacing: 0.04em; }

/* White sections */
.al-section { padding: 100px 0; background: var(--white); }
.al-section-gray { background: var(--gray); }
.al-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.al-split h2 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); font-weight: 600; margin-bottom: 18px; line-height: 1.3; }
.al-split p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 12px; }
.al-highlight-card { border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,0.1); transition: all 0.4s var(--ease); display: block; }
.al-highlight-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.al-highlight-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform 0.6s var(--ease); }
.al-highlight-card:hover img { transform: scale(1.05); }
.al-highlight-body { padding: 28px; background: var(--gray); }
.al-highlight-body h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.al-highlight-body p { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.al-three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 64px; }
.al-col-item { text-align: center; padding: 32px 24px; border-radius: 16px; border: 1px solid var(--border); transition: all 0.35s var(--ease); }
.al-col-item:hover { border-color: var(--orange); box-shadow: 0 12px 36px rgba(249,139,22,0.12); transform: translateY(-4px); }
.al-col-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 50%; margin: 0 auto 20px; border: 3px solid var(--blue-light); }
.al-col-item h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--indigo); }
.al-col-item p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }

/* Trust dark */
.al-trust { background: linear-gradient(180deg, var(--navy) 0%, var(--black) 100%); color: var(--white); padding: 100px 0; position: relative; overflow: hidden; }
.al-trust::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(0,55,221,0.15) 0%, transparent 70%); }
.al-trust h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; text-align: center; margin-bottom: 16px; position: relative; z-index: 1; }
.al-checklist { max-width: 640px; margin: 0 auto 36px; position: relative; z-index: 1; }
.al-checklist li { padding: 14px 0 14px 36px; position: relative; font-size: 15px; opacity: 0.92; border-bottom: 1px solid rgba(255,255,255,0.08); }
.al-checklist li::before { content: '✓'; position: absolute; left: 0; width: 24px; height: 24px; background: var(--indigo); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; color: var(--blue-light); font-weight: 700; top: 12px; }
.al-trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; position: relative; z-index: 1; }
.al-trust-item { text-align: center; padding: 32px 24px; background: rgba(255,255,255,0.04); border-radius: 16px; border: 1px solid rgba(255,255,255,0.08); transition: all 0.35s; }
.al-trust-item:hover { background: rgba(255,255,255,0.08); border-color: rgba(249,139,22,0.3); transform: translateY(-4px); }
.al-trust-icon { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--indigo), var(--blue)); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 28px; animation: al-pulse-ring 2.5s infinite; }

/* Portfolio hover overlay */
.al-portfolio-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.al-port-card { border-radius: 12px; overflow: hidden; position: relative; display: block; }
.al-port-card .al-port-img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.al-port-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.al-port-card:hover img { transform: scale(1.08); }
.al-port-overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(4,9,58,0.9) 100%);
  display: flex; align-items: flex-end; padding: 20px; opacity: 0; transition: opacity 0.4s;
}
.al-port-card:hover .al-port-overlay { opacity: 1; }
.al-port-overlay span { color: var(--orange); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.al-port-caption { padding: 16px 4px; }
.al-port-caption h4 { font-size: 17px; font-weight: 700; margin-bottom: 4px; transition: color 0.2s; }
.al-port-card:hover .al-port-caption h4 { color: var(--orange); }
.al-port-caption > span { font-family: var(--font-caption); font-size: 13px; color: var(--muted); }
.al-port-more { background: linear-gradient(135deg, var(--indigo), var(--navy)); display: flex; align-items: center; justify-content: center; min-height: 200px; border-radius: 12px; transition: all 0.35s; }
.al-port-more:hover { transform: scale(1.02); box-shadow: 0 12px 40px rgba(33,37,117,0.4); }
.al-port-more h4 { color: var(--white); font-size: 1.25rem; }
.al-port-more span { color: var(--blue-light); font-size: 14px; }

/* Testimonials with bg */
.al-testimonials { position: relative; padding: 100px 0; color: var(--white); overflow: hidden; }
.al-test-bg { position: absolute; inset: 0; }
.al-test-bg img { width: 100%; height: 100%; object-fit: cover; }
.al-test-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(4,9,58,0.92) 0%, rgba(11,12,17,0.88) 100%); }
.al-test-content { position: relative; z-index: 2; text-align: center; }
.al-test-content h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; margin-bottom: 12px; }
.al-test-card { background: rgba(255,255,255,0.97); color: var(--black); padding: 36px; border-radius: 12px; border-left: 4px solid var(--orange); max-width: 720px; margin: 32px auto; text-align: left; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.al-test-card p { font-size: 16px; line-height: 1.75; color: var(--muted); }

/* Page */
.al-page-hero { padding: 140px 0 72px; margin-top: 80px; background: linear-gradient(152deg, var(--navy) 0%, var(--black) 100%); color: var(--white); position: relative; overflow: hidden; }
.al-page-hero::before { content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%; background: radial-gradient(circle at 80% 50%, rgba(0,55,221,0.2) 0%, transparent 60%); }
.al-page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 14px; position: relative; z-index: 1; letter-spacing: -0.02em; }
.al-page-hero p { opacity: 0.85; max-width: 560px; position: relative; z-index: 1; }
.al-breadcrumb { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; position: relative; z-index: 1; }
.al-content-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.al-card { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); transition: all 0.35s var(--ease); background: var(--white); }
.al-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); border-color: transparent; }
.al-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.al-card-body { padding: 24px; }
.al-card-body h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.al-card-body p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.al-notice { padding: 20px; border-left: 4px solid var(--orange); background: var(--gray); border-radius: 0 8px 8px 0; font-size: 14px; color: var(--muted); margin-top: 32px; }

/* Footer */
.al-footer-links { background: var(--gray); padding: 36px 0; border-top: 3px double var(--border); border-bottom: 3px double var(--border); }
.al-footer-link-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; font-size: 13px; font-weight: 500; }
.al-footer-link-grid a { transition: color 0.2s; }
.al-footer-link-grid a:hover { color: var(--orange); }
.al-footer-bar { background: var(--black); color: var(--white); padding: 36px 0; }
.al-footer-bar-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px 24px; }
.al-footer-contact a { color: var(--blue-light); margin-right: 24px; font-weight: 500; transition: color 0.2s; }
.al-footer-contact a:hover { color: var(--orange); }
.al-footer-copy { text-align: right; font-size: 13px; opacity: 0.65; display: flex; flex-direction: column; gap: 4px; align-items: flex-end; }
.al-footer-address { font-size: 12px; opacity: 0.85; max-width: 420px; text-align: right; line-height: 1.5; }
.al-form-thanks { display: none; color: var(--blue-light); margin-top: 12px; }

@media (max-width: 1024px) {
  .al-nav { display: none; }
  .al-menu-btn { display: block; }
  .al-intro-grid, .al-split, .al-svc-grid, .al-three-col, .al-trust-grid, .al-content-grid { grid-template-columns: 1fr; }
  .al-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .al-footer-bar-inner { flex-direction: column; text-align: center; }
  .al-footer-copy { text-align: center; align-items: center; }
  .al-footer-address { text-align: center; }
  .al-portfolio-grid-3 { grid-template-columns: 1fr; }
  .al-founder { flex-direction: column; }
  .al-intro-visual { min-height: 280px; }
  .al-intro-visual img { min-height: 280px; }
}
@media (max-width: 640px) {
  .al-stats-row { flex-direction: column; align-items: center; }
  .al-portfolio-grid { grid-template-columns: 1fr; }
}
