/* ===== Verity Realty LLC — Global Styles ===== */
:root {
  --bg-primary: #F6F8FB;
  --bg-secondary: #E9EEF5;
  --bg-dark: #0C1420;
  --bg-card: #FFFFFF;
  --accent-indigo: #2B4C8C;
  --accent-indigo-bright: #3D66B8;
  --accent-indigo-dim: rgba(43, 76, 140, 0.10);
  --accent-copper: #C06A3C;
  --accent-copper-dim: rgba(192, 106, 60, 0.10);
  --accent-slate: #5A7095;
  --accent-mist: #DCE6F2;
  --text-primary: #0C1420;
  --text-secondary: #4A5A72;
  --text-muted: #9AAAC0;
  --border: rgba(43, 76, 140, 0.14);
  --border-soft: rgba(12, 20, 32, 0.07);
  --font-heading: 'Spectral', serif;
  --font-body: 'Albert Sans', sans-serif;
  --radius: 8px;
  --radius-lg: 14px;
  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 4px 24px rgba(43, 76, 140, 0.08);
  --shadow-deep: 0 8px 44px rgba(12, 20, 32, 0.12);
  --shadow-glow: 0 0 36px rgba(61, 102, 184, 0.12);
  --err: #DC2626;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cg fill='none' stroke='%232B4C8C' stroke-width='0.6' opacity='0.03'%3E%3Cpath d='M0 0H40M0 0V40'/%3E%3C/g%3E%3C/svg%3E");
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { font-family: var(--font-heading); margin: 0; line-height: 1.14; color: var(--text-primary); }
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; }
ul { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--accent-indigo); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 900px; }
.label { font-family: var(--font-body); font-weight: 600; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-indigo); }
.label.copper { color: var(--accent-copper); }
.eyebrow-line { display:inline-block; }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 600; font-size: 15px; padding: 13px 24px; border-radius: var(--radius); border: 1.5px solid transparent; cursor: pointer; transition: var(--transition); min-height: 44px; }
.btn-indigo { background: var(--accent-indigo); color: #fff; }
.btn-indigo:hover { background: var(--accent-indigo-bright); box-shadow: var(--shadow-glow); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--accent-copper); border-color: var(--accent-copper); }
.btn-ghost:hover { background: var(--accent-copper-dim); transform: translateY(-2px); }
.btn-copper { background: var(--accent-copper); color: #fff; border-radius: var(--radius-lg); }
.btn-copper:hover { filter: brightness(1.07); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(192,106,60,0.28); }
.btn-lg { padding: 16px 30px; font-size: 16px; }

.link-copper { color: var(--accent-copper); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.link-copper:hover { gap: 11px; }

/* ===== Nav ===== */
.nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; transition: var(--transition); border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(246,248,251,0.94); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); border-bottom: 1px solid var(--border-soft); box-shadow: 0 2px 20px rgba(12,20,32,0.05); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-mark { width: 34px; height: 34px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text b { font-family: var(--font-heading); font-weight: 700; font-size: 19px; color: var(--accent-indigo); letter-spacing: 0.02em; }
.brand-sub { font-family: var(--font-body); font-weight: 400; font-size: 11px; color: var(--text-muted); margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-family: var(--font-body); font-weight: 500; font-size: 15px; color: var(--text-secondary); transition: var(--transition); position: relative; padding: 4px 0; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--accent-indigo); transition: var(--transition); }
.nav-links a:hover { color: var(--accent-indigo); }
.nav-links a.active { color: var(--accent-indigo); }
.nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-overlay { position: fixed; inset: 0; background: var(--bg-dark); z-index: 200; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; opacity: 0; pointer-events: none; transition: opacity var(--transition); }
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-overlay a { color: #fff; font-family: var(--font-heading); font-size: 30px; font-weight: 600; opacity: 0; transform: translateY(18px); }
.mobile-overlay.open a { animation: mfade 0.5s forwards; }
.mobile-overlay .close-x { position: absolute; top: 24px; right: 24px; background: none; border: none; cursor: pointer; }
@keyframes mfade { to { opacity: 1; transform: translateY(0); } }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Section shells ===== */
section { position: relative; }
.section-pad { padding: 96px 0; }
.section-head { max-width: 760px; margin-bottom: 52px; }
.section-head h2 { font-size: 50px; font-weight: 700; margin: 14px 0 0; }
.section-head p { color: var(--text-secondary); font-weight: 300; font-size: 18px; margin-top: 14px; }

/* ===== Hero (home) ===== */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 76px; }
.hero-glow { position: absolute; top: 20%; right: -5%; width: 640px; height: 640px; background: radial-gradient(circle, rgba(61,102,184,0.18), transparent 65%); pointer-events: none; }
.hero-blueprint { position: absolute; bottom: -40px; right: -40px; width: 620px; max-width: 60%; opacity: 0.06; pointer-events: none; }
.hero-content { max-width: 760px; position: relative; z-index: 2; }
.hero h1 { font-size: 80px; font-weight: 700; letter-spacing: -0.01em; }
.hero h1 .verified { color: var(--text-primary); font-style: normal; transition: color 0.8s ease; }
body.loaded .hero h1 .verified { color: var(--accent-copper); font-style: italic; }
.hero-sub { font-weight: 300; font-size: 19px; color: var(--text-secondary); max-width: 620px; margin: 26px 0 34px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-line { opacity: 0; transform: translateY(28px); animation: heroIn 0.8s forwards; }
.hero-line.d1 { animation-delay: 0.1s; }
.hero-line.d2 { animation-delay: 0.28s; }
.hero-line.d3 { animation-delay: 0.46s; }
.hero-line.d4 { animation-delay: 0.62s; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

/* checkmark draw */
.check-draw path { stroke-dasharray: 60; stroke-dashoffset: 60; }
.check-draw.drawn path { animation: draw 1.1s forwards ease; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ===== Stats bar ===== */
.stats-bar { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; }
.stat { padding: 46px 16px; border-left: 1px solid var(--border); }
.stat:first-child { border-left: none; }
.stat .num { font-family: var(--font-heading); font-weight: 700; font-size: 46px; color: var(--accent-indigo); line-height: 1; }
.stat .cap { font-size: 14px; color: var(--text-secondary); margin-top: 8px; letter-spacing: 0.02em; }

/* ===== Cards grid ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-card); transition: var(--transition); border-top: 2px solid transparent; }
.card.svc:hover { transform: translateY(-5px); box-shadow: var(--shadow-glow); border-top-color: var(--accent-indigo); }
.card .icon { width: 46px; height: 46px; color: var(--accent-indigo); margin-bottom: 20px; }
.card h3 { font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.card p { color: var(--text-secondary); font-size: 15px; }

/* ===== Why section ===== */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why h2 { font-size: 42px; font-weight: 700; font-style: italic; margin: 14px 0 18px; }
.why p { color: var(--text-secondary); }
.check-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; color: var(--text-primary); font-weight: 500; }
.check-list svg { flex: none; color: var(--accent-indigo); margin-top: 3px; }
/* dashboard mock */
.dash { background: var(--bg-card); border-radius: var(--radius-lg); box-shadow: var(--shadow-deep); padding: 30px; border: 1px solid var(--border); }
.dash-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dash-row h4 { font-size: 17px; }
.dash-metric { margin-bottom: 20px; }
.dash-metric .m-top { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-secondary); margin-bottom: 7px; }
.dash-metric .m-top b { font-family: var(--font-heading); color: var(--accent-indigo); }
.bar { height: 8px; background: var(--accent-indigo-dim); border-radius: 20px; overflow: hidden; }
.bar span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--accent-indigo), var(--accent-indigo-bright)); border-radius: 20px; transition: width 1.4s cubic-bezier(0.4,0,0.2,1); }
.dash-status { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-secondary); padding-top: 14px; border-top: 1px solid var(--border-soft); }
.dot-pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--accent-copper); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(192,106,60,0.4); } 50% { box-shadow: 0 0 0 7px rgba(192,106,60,0); } }

/* ===== Industries teaser ===== */
.pill-row { display: flex; gap: 12px; overflow-x: auto; padding: 8px 0 16px; -webkit-overflow-scrolling: touch; }
.pill { flex: none; padding: 12px 24px; border: 1px solid var(--border); border-radius: 40px; background: var(--bg-card); font-weight: 500; color: var(--text-secondary); transition: var(--transition); white-space: nowrap; cursor: default; }
.pill:hover { background: var(--accent-indigo); color: #fff; border-color: var(--accent-indigo); }

/* ===== 3 step ===== */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; position: relative; }
.step-connector { position: absolute; top: 40px; left: 16%; right: 16%; height: 2px; border-top: 2px dashed var(--accent-indigo); opacity: 0.5; transform: scaleX(0); transform-origin: left; transition: transform 1.4s ease; }
.step-connector.drawn { transform: scaleX(1); }
.step { text-align: center; position: relative; z-index: 2; }
.badge-node { width: 80px; height: 80px; margin: 0 auto 22px; background: var(--accent-indigo); border-radius: 20px; display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 26px; box-shadow: var(--shadow-glow); position: relative; }
.badge-node .mini-check { position: absolute; bottom: -6px; right: -6px; background: var(--accent-copper); border-radius: 50%; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { color: var(--text-secondary); font-size: 15px; }

/* ===== testimonials ===== */
.quote-card { background: var(--bg-card); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); border-left: 4px solid var(--accent-copper); padding: 30px; }
.quote-card .q { font-family: var(--font-heading); font-style: italic; font-size: 18px; color: var(--text-primary); margin-bottom: 20px; }
.quote-card .who { font-weight: 600; }
.quote-card .co { font-size: 13px; color: var(--text-muted); }
.stars { color: var(--accent-indigo); display: flex; gap: 3px; margin-bottom: 16px; }

/* ===== CTA banner ===== */
.cta-banner { background: var(--bg-dark); color: #fff; text-align: center; overflow: hidden; }
.cta-banner .watermark { position: absolute; inset: 0; opacity: 0.05; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.8'%3E%3Cpath d='M0 0H60M0 0V60'/%3E%3C/g%3E%3C/svg%3E"); }
.cta-banner h2 { font-size: 54px; font-weight: 700; font-style: italic; color: #fff; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.65); font-weight: 300; font-size: 18px; margin: 20px auto 34px; max-width: 560px; position: relative; }

/* ===== Footer ===== */
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.75); position: relative; overflow: hidden; padding-top: 72px; }
.footer::before { content:''; position: absolute; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg,var(--accent-indigo),var(--accent-indigo-bright)); animation: fline 1.6s forwards ease; }
@keyframes fline { to { width: 100%; } }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer .brand-text b { color: #fff; }
.footer h5 { font-family: var(--font-body); font-weight: 600; color: #fff; font-size: 14px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px; }
.footer a { color: rgba(255,255,255,0.65); transition: var(--transition); display: inline-block; margin-bottom: 10px; }
.footer a:hover { color: var(--accent-copper); }
.footer .tagline { font-family: var(--font-heading); font-style: italic; color: rgba(255,255,255,0.85); margin: 16px 0; }
.footer .addr { font-size: 14px; color: rgba(255,255,255,0.55); }
.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-social a { color: rgba(255,255,255,0.7); }
.footer-divider { height: 1px; background: rgba(255,255,255,0.1); }
.footer-bottom { padding: 22px 0 30px; font-size: 13px; color: rgba(255,255,255,0.45); text-align: center; }

/* ===== Page hero (inner pages) ===== */
.page-hero { background: var(--bg-secondary); padding: 150px 0 70px; border-bottom: 1px solid var(--border); }
.page-hero.h60 { min-height: 60vh; display: flex; align-items: center; }
.page-hero h1 { font-size: 58px; font-weight: 700; margin: 14px 0 12px; }
.page-hero h1 em { color: var(--accent-copper); }
.page-hero p { color: var(--text-secondary); font-size: 18px; max-width: 640px; font-weight: 300; }
.breadcrumb { font-size: 13px; color: var(--text-muted); margin-top: 18px; }
.breadcrumb a:hover { color: var(--accent-indigo); }

/* ===== alternating service sections ===== */
.svc-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 64px 0; border-bottom: 1px solid var(--border-soft); }
.svc-block.rev .svc-text { order: 2; }
.svc-block h3 { font-size: 34px; font-weight: 700; margin-bottom: 18px; }
.svc-block p { color: var(--text-secondary); }
.svc-art { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; padding: 30px; }
.svc-art svg { width: 100%; height: 100%; max-height: 240px; color: var(--accent-indigo); }

/* ===== pricing ===== */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.price-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-card); position: relative; display: flex; flex-direction: column; }
.price-card.pop { border: 2px solid var(--accent-indigo); box-shadow: var(--shadow-deep); }
.pop-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent-indigo); color: #fff; font-size: 12px; font-weight: 600; padding: 5px 16px; border-radius: 30px; }
.price-card h3 { font-size: 24px; margin-bottom: 6px; }
.price-card .price { font-family: var(--font-heading); font-weight: 700; font-size: 42px; color: var(--accent-indigo); margin: 12px 0; }
.price-card .price span { font-size: 15px; color: var(--text-muted); font-family: var(--font-body); }
.price-card ul { margin: 18px 0 26px; }
.price-card li { display: flex; gap: 10px; margin-bottom: 12px; color: var(--text-secondary); font-size: 15px; }
.price-card li svg { color: var(--accent-indigo); flex: none; }
.price-card .btn { margin-top: auto; }

/* ===== timeline ===== */
.timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 0; border-left: 2px dashed var(--accent-indigo); transform: translateX(-50%) scaleY(0); transform-origin: top; transition: transform 1.6s ease; opacity: 0.6; }
.timeline-line.drawn { transform: translateX(-50%) scaleY(1); }
.tl-item { display: grid; grid-template-columns: 1fr 80px 1fr; align-items: center; margin-bottom: 40px; }
.tl-node { width: 60px; height: 60px; margin: 0 auto; background: var(--accent-indigo); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-family: var(--font-heading); font-weight: 700; font-size: 20px; z-index: 2; box-shadow: var(--shadow-glow); }
.tl-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 24px; }
.tl-card .wk { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-copper); }
.tl-card h3 { font-size: 21px; margin: 6px 0 8px; }
.tl-card p { color: var(--text-secondary); font-size: 15px; margin: 0; }
.tl-item .spacer { }
.tl-item.left .col-r { visibility: hidden; }
.tl-item.right .col-l { visibility: hidden; }

/* ===== tools grid ===== */
.tools-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.tool { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-card); padding: 20px 14px; text-align: center; font-weight: 500; font-size: 14px; color: var(--text-secondary); transition: var(--transition); }
.tool:hover { color: var(--accent-indigo); transform: translateY(-3px); box-shadow: var(--shadow-glow); }

/* ===== FAQ / accordion ===== */
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; border-left: 3px solid transparent; transition: var(--transition); }
.faq-item.open { border-left-color: var(--accent-indigo); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 24px; font-family: var(--font-heading); font-weight: 600; font-size: 18px; color: var(--text-primary); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .plus { flex: none; transition: transform var(--transition); color: var(--accent-indigo); }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--transition); }
.faq-a p { padding: 0 24px 20px; color: var(--text-secondary); margin: 0; }

/* ===== industries expand ===== */
.ind-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.ind-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 28px; cursor: pointer; transition: var(--transition); border-top: 2px solid transparent; }
.ind-card:hover { border-top-color: var(--accent-indigo); }
.ind-head { display: flex; align-items: center; gap: 16px; }
.ind-head svg { color: var(--accent-indigo); flex: none; }
.ind-card h3 { font-size: 22px; }
.ind-card .one { color: var(--text-secondary); font-size: 15px; margin: 10px 0 0; }
.ind-body { max-height: 0; overflow: hidden; opacity: 0; transition: max-height var(--transition), opacity var(--transition); }
.ind-card.expanded .ind-body { max-height: 400px; opacity: 1; margin-top: 18px; }
.ind-body p { color: var(--text-secondary); font-size: 15px; }
.ind-body li { display: flex; gap: 10px; color: var(--text-secondary); font-size: 14px; margin-bottom: 8px; }
.ind-body li svg { color: var(--accent-indigo); flex: none; }

/* ===== case study strip ===== */
.case-card { background: var(--bg-card); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); border-left: 4px solid var(--accent-copper); padding: 28px; }
.case-card .big { font-family: var(--font-heading); font-weight: 700; font-size: 38px; color: var(--accent-indigo); }

/* ===== about founder ===== */
.founder-block { background: var(--bg-card); border-radius: var(--radius-lg); box-shadow: var(--shadow-deep); padding: 50px; display: grid; grid-template-columns: 300px 1fr; gap: 50px; align-items: center; }
.avatar { width: 240px; height: 240px; border-radius: 50%; margin: 0 auto; background: linear-gradient(135deg, var(--accent-indigo), var(--accent-copper)); box-shadow: 0 0 0 8px var(--bg-card), 0 0 0 10px var(--border); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 62px; color: #fff; }
.avatar.sm { width: 130px; height: 130px; font-size: 34px; box-shadow: 0 0 0 6px var(--bg-card), 0 0 0 8px var(--border); }
.founder-block h2 { font-family: var(--font-heading); font-weight: 700; font-style: italic; font-size: 40px; margin: 8px 0 20px; }
.founder-block p { color: var(--text-secondary); }
.icon-link { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius); border: 1px solid var(--border); color: var(--accent-indigo); transition: var(--transition); margin-top: 10px; }
.icon-link:hover { background: var(--accent-indigo); color: #fff; }

.story { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.skyline { width: 100%; color: var(--accent-indigo); opacity: 0.35; }
.addr-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 24px; margin-top: 24px; }
.addr-card h4 { font-size: 18px; margin-bottom: 8px; }
.addr-card p { color: var(--text-secondary); font-size: 15px; margin: 0; }

.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card { background: var(--bg-card); border: 1px solid var(--border); border-top: 3px solid var(--accent-indigo); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 34px; }
.mv-card h3 { font-size: 26px; font-style: italic; margin-bottom: 12px; }
.mv-card p { color: var(--text-secondary); margin: 0; }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.value { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 28px; text-align: center; }
.value svg { color: var(--accent-indigo); margin: 0 auto 14px; }
.value h3 { font-size: 20px; font-style: italic; }
.value p { color: var(--text-secondary); font-size: 14px; margin: 8px 0 0; }
.team-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.team-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 32px; text-align: center; }
.team-card h3 { font-style: italic; font-size: 22px; margin: 16px 0 4px; }
.team-card .role { color: var(--accent-copper); font-weight: 600; font-size: 14px; }
.team-card p { color: var(--text-secondary); font-size: 14px; margin: 12px 0; }

/* ===== contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.info-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 24px; margin-bottom: 18px; display: flex; gap: 16px; align-items: flex-start; }
.info-card svg { color: var(--accent-indigo); flex: none; margin-top: 3px; }
.info-card h4 { font-size: 16px; margin-bottom: 4px; }
.info-card p { color: var(--text-secondary); font-size: 15px; margin: 0; }
.map-mock { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius-lg); height: 220px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; margin-top: 8px; }
.map-mock svg.tx { width: 60%; color: var(--accent-indigo); opacity: 0.25; }
.map-dot { position: absolute; top: 50%; left: 52%; width: 16px; height: 16px; background: var(--accent-indigo); border-radius: 50%; border: 3px solid #fff; animation: pulse2 2s infinite; }
@keyframes pulse2 { 0%,100% { box-shadow: 0 0 0 0 rgba(43,76,140,0.4); } 50% { box-shadow: 0 0 0 12px rgba(43,76,140,0); } }
.form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: 36px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 500; font-size: 14px; margin-bottom: 7px; color: var(--text-primary); }
.field input, .field select, .field textarea { width: 100%; background: var(--bg-card); border: 1px solid var(--border-soft); border-radius: var(--radius); padding: 12px 14px; font-family: var(--font-body); font-size: 15px; color: var(--text-primary); transition: var(--transition); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent-indigo); box-shadow: 0 0 0 3px var(--accent-indigo-dim); }
.field textarea { resize: vertical; min-height: 110px; }
.field .err-msg { color: var(--err); font-size: 13px; margin-top: 5px; display: none; }
.field.error .err-msg { display: block; }
.field.error input, .field.error select, .field.error textarea { border-color: var(--err); }
.form-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.success-card { text-align: center; padding: 50px 30px; display: none; }
.success-card.show { display: block; }
.success-card h3 { font-family: var(--font-heading); font-style: italic; font-size: 30px; margin: 20px 0 12px; }
.success-card p { color: var(--text-secondary); }

/* ===== responsive ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 62px; }
  .section-head h2 { font-size: 40px; }
  .tools-grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta .btn { display: none; }
  .hamburger { display: block; }
  .brand-sub { display: none; }
  .hero { min-height: auto; padding: 120px 0 70px; }
  .hero h1 { font-size: 44px; }
  .section-pad { padding: 64px 0; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(odd) { border-left: none; }
  .grid-3, .grid-2, .price-grid, .steps, .why, .story, .founder-block, .mv-grid, .values-grid, .team-grid, .ind-grid, .contact-grid, .svc-block, .svc-block.rev .svc-text { grid-template-columns: 1fr; }
  .svc-block.rev .svc-text { order: 0; }
  .step-connector { display: none; }
  .founder-block { padding: 30px; }
  .section-head h2 { font-size: 32px; }
  .page-hero h1 { font-size: 40px; }
  .cta-banner h2 { font-size: 34px; }
  .tools-grid { grid-template-columns: repeat(2,1fr); }
  .form-two { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 50px 1fr; gap: 16px; }
  .timeline-line { left: 25px; }
  .tl-node { width: 50px; height: 50px; font-size: 17px; }
  .tl-item.left .col-r, .tl-item.right .col-l { display: none; }
  .tl-item .tl-node { order: -1; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-left: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
