 :root {
 --bg: #06090f;
 --bg-2: #0c1221;
 --surface: #101828;
 --surface-2: #182240;
 --line: rgba(80, 160, 220, .14);
 --line-hover: rgba(80, 160, 220, .3);
 --text: #e4ecf4;
 --muted: #8d9bb5;
 --accent: #38a1d4;
 --accent-bright: #5ec4f0;
 --accent-glow: rgba(56, 161, 212, .3);
 --accent-subtle: rgba(56, 161, 212, .08);
 --gold: #d4a94e;
 --gold-subtle: rgba(212, 169, 78, .1);
 --gold-border: rgba(212, 169, 78, .2);
 --white: #fff;
 --shadow: 0 12px 40px rgba(0,0,0,.35);
 --shadow-lg: 0 24px 80px rgba(0,0,0,.45);
 --radius: 22px;
 --radius-sm: 14px;
 --radius-xs: 10px;
 --max: 1200px;
 --ease: cubic-bezier(.22, .61, .36, 1);
 }
 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
 body {
 font-family: 'Sora', sans-serif;
 background: var(--bg);
 color: var(--text);
 overflow-x: hidden;
 line-height: 1.6;
 }
 body::before {
 content: "";
 position: fixed; inset: 0;
 background:
 radial-gradient(ellipse 70% 50% at 20% 5%, rgba(56,161,212,.08), transparent),
 radial-gradient(ellipse 50% 50% at 80% 80%, rgba(56,161,212,.04), transparent);
 pointer-events: none; z-index: 0;
 }
 body::after {
 content: "";
 position: fixed; inset: 0;
 background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
 background-size: 200px;
 pointer-events: none; z-index: 0; opacity: .6;
 }
 img { display: block; max-width: 100%; }
 a { color: inherit; text-decoration: none; }
 .wrap { max-width: var(--max); margin: 0 auto; position: relative; z-index: 1; }

 .rv { opacity: 0; transform: translateY(30px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
 .rv.vis { opacity: 1; transform: translateY(0); }
 .rv-d1 { transition-delay: .1s; }
 .rv-d2 { transition-delay: .2s; }
 .rv-d3 { transition-delay: .28s; }
 .rv-d4 { transition-delay: .36s; }

 .nav {
 position: fixed; top: 0; left: 0; right: 0; z-index: 100;
 background: rgba(6, 9, 15, .7);
 backdrop-filter: blur(24px) saturate(1.4);
 -webkit-backdrop-filter: blur(24px) saturate(1.4);
 border-bottom: 1px solid rgba(255,255,255,.05);
 }
 .nav .wrap {
 display: flex; justify-content: space-between;
 gap: 20px; padding: 14px 24px; align-items: center;
 }
 .brand {
 display: flex; align-items: center; gap: 12px;
 font-weight: 800; font-size: 1rem; color: var(--white);
 }
 .brand img { width: 44px; height: 44px; object-fit: contain; }
 .brand small { display: block; color: var(--muted); font-weight: 500; font-size: 10.5px; margin-top: 2px; letter-spacing: .03em; }
 .menu { display: flex; gap: 6px; align-items: center; }
 .menu a {
 padding: 7px 14px; border-radius: 8px;
 font-weight: 600; font-size: .82rem; color: var(--muted);
 transition: color .2s, background .2s; letter-spacing: .01em;
 }
 .menu a:hover { color: var(--white); background: rgba(255,255,255,.06); }
 .nav-actions { display: flex; gap: 10px; align-items: center; }
 .hamburger {
 display: none; flex-direction: column; gap: 5px;
 background: none; border: none; cursor: pointer; padding: 8px; z-index: 110;
 }
 .hamburger span {
 display: block; width: 22px; height: 2px; background: var(--text);
 border-radius: 2px; transition: transform .3s var(--ease), opacity .2s;
 }
 .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; position: fixed; inset: 0; z-index: 99;
 background: rgba(6,9,15,.97); backdrop-filter: blur(24px);
 flex-direction: column; justify-content: center; align-items: center; gap: 10px;
 }
 .mobile-menu.open { display: flex; }
 .mobile-menu a { font-size: 1.3rem; font-weight: 700; padding: 14px 28px; border-radius: 12px; }
 .mobile-menu a:hover { background: rgba(255,255,255,.05); }

 .btn {
 display: inline-flex; align-items: center; justify-content: center; gap: 8px;
 border-radius: var(--radius-xs); padding: 12px 22px;
 font-weight: 700; font-size: .85rem; border: none; cursor: pointer;
 transition: transform .2s var(--ease), box-shadow .25s; letter-spacing: .01em;
 }
 .btn:hover { transform: translateY(-2px); }
 .btn.primary {
 background: var(--accent); color: var(--bg);
 box-shadow: 0 8px 28px var(--accent-glow);
 }
 .btn.primary:hover { box-shadow: 0 14px 36px rgba(56,161,212,.4); }
 .btn.outline {
 background: transparent; border: 1.5px solid rgba(255,255,255,.15); color: var(--text);
 }
 .btn.outline:hover { border-color: rgba(255,255,255,.3); }

 .hero {
 position: relative; padding: 100px 24px 64px;
 overflow: hidden;
 }
 .hero-bg {
 position: absolute; inset: 0; z-index: 0;
 background: url('assets/real-deck-job.jpg') center 38%/cover no-repeat;
 }
 .hero-bg::after {
 content: ""; position: absolute; inset: 0;
 background:
 linear-gradient(180deg, rgba(6,9,15,.82) 0%, rgba(6,9,15,.7) 40%, rgba(6,9,15,.9) 100%),
 linear-gradient(135deg, rgba(56,161,212,.08), transparent 50%);
 }
 .hero-grid {
 position: relative; z-index: 2;
 display: grid; grid-template-columns: 1.1fr .9fr;
 gap: 40px; align-items: start;
 max-width: var(--max); margin: 0 auto;
 }
 .hero-content { }
 .pill {
 display: inline-flex; align-items: center; gap: 8px;
 padding: 8px 18px; border-radius: 999px;
 background: rgba(56,161,212,.12); border: 1px solid rgba(56,161,212,.22);
 color: var(--accent-bright); font-size: 11px; font-weight: 700;
 letter-spacing: .12em; text-transform: uppercase;
 }
 .pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-bright); }
 h1, h2, h3 { font-family: 'Libre Baskerville', serif; }
 h1 {
 font-size: clamp(2.8rem, 5vw, 4.8rem); font-weight: 700;
 line-height: 1.05; margin: 24px 0 0; letter-spacing: -.015em;
 }
 h1 em { font-style: italic; color: var(--accent-bright); }
 .hero .lead {
 color: rgba(255,255,255,.65); font-size: 1.05rem;
 line-height: 1.8; margin: 20px 0 0; max-width: 560px;
 }
 .hero .lead strong { color: rgba(255,255,255,.9); font-weight: 600; }
 .hero-actions {
 display: flex; gap: 12px;
 flex-wrap: wrap; margin-top: 32px;
 }
 .hero-stats {
 display: flex; gap: 36px;
 margin-top: 40px; padding-top: 24px;
 border-top: 1px solid rgba(255,255,255,.1);
 }
 .hero-stat { text-align: center; }
 .hero-stat .val {
 font-family: 'Libre Baskerville', serif;
 font-size: 2rem; font-weight: 700; color: var(--white); line-height: 1;
 }
 .hero-stat span { font-size: .8rem; color: var(--muted); margin-top: 4px; display: block; }
 

 .section { padding: 48px 24px 100px; position: relative; z-index: 1; }
 .section + .section { padding-top: 0; }
 .section-head { max-width: 680px; margin-bottom: 44px; }
 .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
 .kicker {
 color: var(--accent); font-size: 11px; font-weight: 700;
 letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px;
 font-family: 'Sora', sans-serif;
 }
 h2 { font-size: clamp(1.9rem, 3vw, 3rem); line-height: 1.08; font-weight: 700; }
 .lead { color: var(--muted); font-size: 1rem; line-height: 1.8; margin-top: 14px; }
 .lead strong { color: var(--text); font-weight: 600; }
 .divider {
 max-width: var(--max); margin: 0 auto;
 height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent);
 position: relative; z-index: 1;
 }

 .service-ribbon {
 display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
 background: var(--line); border-radius: var(--radius); overflow: hidden;
 box-shadow: var(--shadow);
 }
 .svc {
 background: var(--surface); padding: 32px 26px;
 transition: background .3s; position: relative;
 }
 .svc:hover { background: var(--surface-2); }
 .svc-num {
 font-family: 'Libre Baskerville', serif;
 font-size: 2.2rem; font-weight: 700;
 color: rgba(56,161,212,.15); line-height: 1; margin-bottom: 14px;
 }
 .svc h3 { font-size: 1.15rem; color: var(--white); margin-bottom: 10px; font-weight: 700; }
 .svc p { color: var(--muted); font-size: .88rem; line-height: 1.7; }
 .svc-link {
 display: inline-flex; align-items: center; gap: 6px;
 margin-top: 16px; font-size: .8rem; font-weight: 700;
 color: var(--accent); letter-spacing: .02em;
 transition: gap .25s var(--ease);
 }
 .svc:hover .svc-link { gap: 10px; }

 .types-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
 .type-card {
 background: var(--surface); border: 1px solid var(--line);
 border-radius: var(--radius); padding: 28px;
 transition: border-color .3s, transform .3s var(--ease); position: relative; overflow: hidden;
 display: block; color: inherit; text-decoration: none;
 }
 .type-card:hover { border-color: var(--line-hover); transform: translateY(-3px); }
 .type-card::before {
 content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
 background: linear-gradient(90deg, var(--accent), transparent);
 opacity: 0; transition: opacity .3s;
 }
 .type-card:hover::before { opacity: 1; }
 .type-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 8px; font-weight: 700; }
 .type-card p { color: var(--muted); font-size: .88rem; line-height: 1.7; }
 .type-card .arrow {
 display: inline-flex; align-items: center; gap: 6px;
 margin-top: 14px; font-size: .78rem; font-weight: 700;
 color: var(--accent); font-family: 'Sora', sans-serif;
 }

 .compare-section {
 background: var(--surface); border: 1px solid var(--line);
 border-radius: var(--radius); padding: 36px;
 box-shadow: var(--shadow); margin-top: 20px;
 }
 .compare-section h3 { font-size: 1.4rem; color: var(--white); margin-bottom: 8px; }
 .compare-section > p { color: var(--muted); font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }
 .compare-grid {
 display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; align-items: stretch;
 }
 .cmp-card {
 background: rgba(255,255,255,.025); border: 1px solid var(--line);
 border-radius: var(--radius-sm); padding: 22px;
 transition: border-color .3s, background .3s;
 }
 .cmp-card:hover { border-color: var(--line-hover); background: rgba(255,255,255,.04); }
 .cmp-card strong { display: block; margin-bottom: 6px; color: var(--white); font-size: .92rem; }
 .cmp-card span { color: var(--muted); font-size: .85rem; line-height: 1.6; }
 .vs {
 display: flex; align-items: center; justify-content: center;
 font-size: .7rem; font-weight: 800; letter-spacing: .14em;
 text-transform: uppercase; color: var(--muted); writing-mode: vertical-lr;
 }

 .about-band {
 position: relative; z-index: 1;
 background: linear-gradient(135deg, var(--surface), var(--bg-2));
 border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
 padding: 80px 24px; overflow: hidden;
 }
 .about-band::before {
 content: ""; position: absolute; top: -30%; right: -8%;
 width: 420px; height: 420px; border-radius: 50%;
 background: radial-gradient(circle, rgba(56,161,212,.06), transparent 65%);
 pointer-events: none;
 }
 .about-grid {
 display: grid; grid-template-columns: .48fr .52fr; gap: 48px; align-items: center;
 }
 .about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
 .about-images img { width: 100%; border-radius: var(--radius); object-fit: cover; }
 .about-images img:first-child { height: 320px; }
 .about-images img:last-child { height: 320px; margin-top: 24px; }
 .checklist { display: grid; gap: 12px; margin-top: 24px; }
 .chk {
 display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start;
 padding: 16px 18px; border-radius: var(--radius-sm);
 background: rgba(255,255,255,.03); border: 1px solid var(--line);
 transition: border-color .3s;
 }
 .chk:hover { border-color: var(--line-hover); }
 .chk .ic {
 width: 40px; height: 40px; border-radius: 10px;
 background: var(--gold-subtle); border: 1px solid var(--gold-border);
 color: var(--gold); display: grid; place-items: center;
 font-weight: 800; font-size: .95rem;
 }
 .chk strong { color: var(--white); font-size: .9rem; }
 .chk p { color: var(--muted); font-size: .85rem; line-height: 1.6; margin-top: 3px; }

 .gallery {
 display: grid; grid-template-columns: repeat(4, 1fr);
 grid-template-rows: 240px 240px; gap: 12px;
 }
 .gallery img {
 width: 100%; height: 100%; object-fit: cover;
 border-radius: var(--radius-sm);
 transition: transform .4s var(--ease), filter .4s;
 filter: brightness(.88);
 }
 .gallery img:hover { transform: scale(1.03); filter: brightness(1); }
 .gallery .feat { grid-column: span 2; grid-row: span 2; }

 .timeline {
 display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative;
 }
 .timeline::before {
 content: ""; position: absolute; top: 34px; left: 10%; right: 10%;
 height: 2px; background: linear-gradient(90deg, transparent, var(--line), var(--line), transparent);
 }
 .tl-step { text-align: center; padding: 0 16px; position: relative; }
 .tl-step .dot {
 width: 52px; height: 52px; border-radius: 50%;
 display: grid; place-items: center;
 background: var(--surface); border: 2px solid var(--accent);
 color: var(--accent-bright); font-family: 'Libre Baskerville', serif;
 font-size: 1.1rem; font-weight: 700;
 margin: 0 auto 20px; position: relative; z-index: 2;
 box-shadow: 0 0 0 8px var(--bg), 0 0 24px var(--accent-glow);
 }
 .tl-step h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 8px; font-weight: 700; }
 .tl-step p { color: var(--muted); font-size: .87rem; line-height: 1.7; }

 .more-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
 .more-card {
 padding: 28px; border-radius: var(--radius);
 background: var(--surface); border: 1px solid var(--line);
 transition: border-color .3s, transform .3s var(--ease);
 }
 .more-card:hover { border-color: var(--line-hover); transform: translateY(-3px); }
 .more-card h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 8px; font-weight: 700; }
 .more-card p { color: var(--muted); font-size: .88rem; line-height: 1.7; }

 .faq-list { display: grid; gap: 10px; max-width: 800px; }
 .faq-item {
 background: var(--surface); border: 1px solid var(--line);
 border-radius: var(--radius-sm); overflow: hidden; transition: border-color .3s;
 }
 .faq-item:hover { border-color: var(--line-hover); }
 .faq-q {
 padding: 20px 24px; cursor: pointer;
 display: flex; justify-content: space-between; align-items: center;
 font-weight: 700; font-size: .92rem; color: var(--white);
 }
 .faq-q .chevron {
 width: 20px; height: 20px; flex-shrink: 0;
 transition: transform .3s var(--ease); color: var(--accent);
 }
 .faq-item.open .faq-q .chevron { transform: rotate(180deg); }
 .faq-a {
 max-height: 0; overflow: hidden;
 transition: max-height .35s var(--ease), padding .35s; padding: 0 24px;
 }
 .faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }
 .faq-a p { color: var(--muted); font-size: .88rem; line-height: 1.7; }

 .cta-banner {
 padding: 36px 40px;
 display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center;
 border-radius: var(--radius);
 background: linear-gradient(135deg, rgba(56,161,212,.1), var(--surface));
 border: 1px solid rgba(56,161,212,.16);
 box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
 }
 .cta-banner::before {
 content: ""; position: absolute; top: -40%; right: -8%;
 width: 300px; height: 300px; border-radius: 50%;
 background: radial-gradient(circle, rgba(56,161,212,.08), transparent 70%);
 pointer-events: none;
 }
 .cta-banner h2 { font-size: 1.8rem; margin-bottom: 6px; }
 .contact-row {
 display: flex; gap: 20px; margin-top: 14px; flex-wrap: wrap;
 }
 .contact-row a {
 display: flex; align-items: center; gap: 6px;
 color: var(--accent-bright); font-weight: 600; font-size: .85rem;
 transition: color .2s;
 }
 .contact-row a:hover { color: var(--white); }
 .cta-form {
 padding: 76px 24px 88px;
 }
 .cta-grid {
 width: min(100%, 980px);
 margin: 0 auto;
 display: grid;
 grid-template-columns: minmax(0, .9fr) minmax(340px, 420px);
 gap: 28px;
 align-items: start;
 }
 .form-card {
 background: var(--surface); border: 1px solid var(--line);
 border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-lg);
 width: 100%;
 }
 .form-card h3 { font-size: 1.4rem; color: var(--white); margin-bottom: 6px; }
 .form-card > p { color: var(--muted); font-size: .88rem; margin-bottom: 20px; }
 .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
 .field { display: grid; gap: 5px; }
 .field.full { grid-column: 1 / -1; }
 .field label {
 font-size: 10.5px; text-transform: uppercase; letter-spacing: .1em;
 font-weight: 700; color: var(--muted);
 }
 .field input, .field select, .field textarea {
 width: 100%; border: 1px solid rgba(255,255,255,.08);
 background: rgba(0,0,0,.25); color: var(--text);
 border-radius: var(--radius-xs); padding: 12px 14px;
 font: inherit; font-size: .88rem;
 transition: border-color .25s, box-shadow .25s; outline: none;
 }
 .field input:focus, .field select:focus, .field textarea:focus {
 border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow);
 }
 .field textarea { resize: vertical; }
 .form-btn {
 width: 100%; border: 0; border-radius: var(--radius-xs);
 padding: 14px 16px; font: inherit; font-weight: 700; font-size: .9rem;
 background: var(--accent); color: var(--bg); cursor: pointer;
 margin-top: 8px; box-shadow: 0 6px 20px var(--accent-glow);
 transition: transform .2s var(--ease), box-shadow .25s;
 }
 .form-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(56,161,212,.4); }
 .form-trust {
 display: flex; gap: 16px; margin-top: 14px;
 font-size: .78rem; color: var(--muted); flex-wrap: wrap;
 }
 .form-trust span { display: flex; align-items: center; gap: 5px; }

 .footer {
 padding: 32px 24px 56px; border-top: 1px solid var(--line);
 color: rgba(141,155,181,.5); font-size: .82rem; position: relative; z-index: 1;
 }
 .footer .wrap {
 display: flex; justify-content: space-between;
 gap: 16px; flex-wrap: wrap; align-items: center;
 }
 .footer a { color: rgba(141,155,181,.5); transition: color .2s; }
 .footer a:hover { color: var(--text); }

 @media (max-width: 1080px) {
 .service-ribbon { grid-template-columns: 1fr 1fr; }
 .types-grid, .about-grid, .compare-grid, .more-grid, .timeline { grid-template-columns: 1fr; }
 .hero-grid { grid-template-columns: 1fr; }
 .cta-grid { grid-template-columns: 1fr; width: min(100%, 620px); }
 .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
 .gallery .feat { grid-column: span 2; height: 280px; }
 .gallery img { height: 200px; }
 .compare-grid .vs { writing-mode: horizontal-tb; padding: 4px 0; }
 .timeline::before { display: none; }
 }
 @media (max-width: 860px) {
 .menu, .nav-actions { display: none; }
 .hamburger { display: flex; }
 .hero-grid { grid-template-columns: 1fr; }
 .form-grid { grid-template-columns: 1fr; }
 .about-images { grid-template-columns: 1fr; }
 .about-images img:last-child { margin-top: 0; }
 .hero-stats { gap: 28px; flex-wrap: wrap; }
 }
 @media (max-width: 640px) {
 .nav .wrap { padding: 12px 16px; }
 .brand img { width: 38px; height: 38px; }
 .brand { font-size: .92rem; }
 .hero { padding: 84px 16px 48px; }
 h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
 h2 { font-size: clamp(1.7rem, 8vw, 2.3rem); }
 .lead { font-size: .92rem; }
 .section { padding: 36px 16px 72px; }
 .service-ribbon { grid-template-columns: 1fr; }
 .svc { padding: 24px 20px; }
 .gallery { grid-template-columns: 1fr; }
 .gallery .feat { grid-column: auto; height: 220px; }
 .gallery img { height: 180px; }
 .hero-actions .btn { width: 100%; }
 .about-band { padding: 56px 16px; }
 .cta-banner { grid-template-columns: 1fr; text-align: center; padding: 28px; }
 .cta-banner .btn { width: 100%; }
 .contact-row { justify-content: center; }
 .form-card { padding: 24px; }
 .cta-form { padding-left: 16px; padding-right: 16px; }
 .type-card, .more-card, .compare-section { padding: 22px; }
 .footer .wrap { justify-content: center; text-align: center; }
 }
