/* ============================================
   ZILLORRA — Motion Edition
   White base · Crimson accent · Gold on dark · Animated rising lines
   ============================================ */

:root {
  --crimson: #7B1427;
  --crimson-bright: #A01832;
  --crimson-dark: #5E0F1E;
  --charcoal: #161616;
  --grey-text: #565E68;
  --grey-light: #F7F6F4;
  --grey-border: #E9E7E3;
  --white: #FFFFFF;
  --gold: #C9A84C;
  --gold-bright: #E0BE63;
  --ivory: #FFF9F4;
  --radius: 16px;
  --shadow-soft: 0 8px 30px rgba(22,22,22,0.07);
  --shadow-hover: 0 16px 44px rgba(123,20,39,0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Sora', 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: none;
  position: relative;
}
.btn-primary { background: var(--crimson); color: var(--ivory); }
.btn-primary:hover {
  background: var(--crimson-bright);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.btn-primary .arrow { transition: transform 0.3s var(--ease); }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-outline {
  background: transparent; color: var(--crimson);
  border: 1.5px solid rgba(123,20,39,0.25);
}
.btn-outline:hover { border-color: var(--crimson); background: rgba(123,20,39,0.04); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--crimson); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 14px 38px rgba(0,0,0,0.22); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--grey-border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-logo { display: inline-flex; align-items: center; }
.logo-mark { height: 42px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 38px; list-style: none; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--grey-text); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--crimson); }
.nav-links .nav-cta a.btn-primary { color: var(--ivory); }
.nav-links .nav-cta a.btn-primary:hover { color: #fff; }
.nav-cta { margin-left: 4px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); margin: 5px 0; transition: 0.3s; }

/* ---------- Hero with animated rising lines ---------- */
.hero { position: relative; padding: 120px 0 100px; text-align: center; overflow: hidden; }
.hero-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.hero-line {
  fill: none; stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: draw 3.2s var(--ease) forwards;
}
.hero-line.l1 { stroke: rgba(123,20,39,0.5); animation-delay: 0.2s; }
.hero-line.l2 { stroke: rgba(201,168,76,0.45); animation-delay: 0.5s; }
.hero-line.l3 { stroke: rgba(123,20,39,0.18); animation-delay: 0.8s; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero-dot { animation: pulse 2.4s ease-in-out infinite; transform-origin: center; }
@keyframes pulse { 0%,100% { opacity: 1; r: 6; } 50% { opacity: 0.5; r: 9; } }

.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--crimson); margin-bottom: 26px;
  padding: 8px 18px; border-radius: 100px;
  background: rgba(123,20,39,0.06);
  border: 1px solid rgba(123,20,39,0.12);
}
.hero-eyebrow .live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--crimson); animation: blink 1.8s ease-in-out infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
  font-size: clamp(40px, 6.5vw, 72px); font-weight: 800;
  max-width: 900px; margin: 0 auto 30px;
}
.hero h1 .accent { color: var(--crimson); position: relative; white-space: nowrap; }
.hero h1 .accent::after {
  content: ''; position: absolute; left: 0; bottom: 6px; width: 100%; height: 12px;
  background: rgba(201,168,76,0.35); z-index: -1; border-radius: 4px;
  transform: scaleX(0); transform-origin: left;
  animation: underline 0.8s var(--ease) 2.6s forwards;
}
@keyframes underline { to { transform: scaleX(1); } }

.hero p { font-size: 19px; color: var(--grey-text); max-width: 660px; margin: 0 auto 42px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-trust { margin-top: 56px; display: flex; align-items: center; justify-content: center; gap: 34px; flex-wrap: wrap; opacity: 0.8; }
.hero-trust span { font-size: 13.5px; color: var(--grey-text); display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { width: 17px; height: 17px; stroke: var(--crimson); }

/* ---------- Sections ---------- */
.section { padding: 100px 0; position: relative; }
.section-alt { background: var(--grey-light); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 66px; }
.section-tag {
  font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--crimson);
  margin-bottom: 14px; display: block;
}
.section-head h2 { font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 18px; }
.section-head p { color: var(--grey-text); font-size: 18px; }

/* ---------- Service cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.card {
  background: #fff; border: 1px solid var(--grey-border); border-radius: var(--radius);
  padding: 42px 34px; transition: all 0.35s var(--ease); position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); border-color: rgba(123,20,39,0.2); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 56px; height: 56px; border-radius: 14px; background: var(--crimson);
  display: flex; align-items: center; justify-content: center; margin-bottom: 26px;
  transition: transform 0.35s var(--ease);
}
.card:hover .card-icon { transform: scale(1.08) rotate(-4deg); }
.card-icon svg { width: 27px; height: 27px; stroke: #fff; }
.card h3 { font-size: 21px; margin-bottom: 13px; }
.card p { font-size: 15px; color: var(--grey-text); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; position: relative; }
.step { text-align: center; padding: 0 18px; position: relative; }
.step-num {
  width: 62px; height: 62px; border-radius: 50%; background: #fff;
  border: 2px solid var(--crimson); color: var(--crimson);
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 22px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
  transition: all 0.35s var(--ease);
}
.step:hover .step-num { background: var(--crimson); color: var(--ivory); transform: scale(1.08); }
.step h3 { font-size: 20px; margin-bottom: 11px; }
.step p { font-size: 15px; color: var(--grey-text); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border: 1px solid var(--grey-border); border-radius: 14px; margin-bottom: 14px; background: #fff; overflow: hidden; transition: border-color 0.25s; }
.faq-item.open { border-color: rgba(123,20,39,0.3); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left; padding: 24px 28px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 16.5px; color: var(--charcoal);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q::after { content: '+'; font-size: 24px; color: var(--crimson); flex-shrink: 0; transition: transform 0.3s var(--ease); }
.faq-item.open .faq-q::after { transform: rotate(135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a p { padding: 0 28px 24px; color: var(--grey-text); font-size: 15px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; background: var(--crimson); border-radius: 24px;
  padding: 80px 48px; text-align: center; overflow: hidden;
}
.cta-band::before, .cta-band::after {
  content: ''; position: absolute; border-radius: 50%; pointer-events: none;
}
.cta-band::before { width: 340px; height: 340px; background: rgba(201,168,76,0.12); top: -120px; right: -80px; animation: float 8s ease-in-out infinite; }
.cta-band::after { width: 260px; height: 260px; background: rgba(255,255,255,0.06); bottom: -110px; left: -60px; animation: float 10s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px,-20px); } }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--ivory); font-size: clamp(28px,4.5vw,42px); margin-bottom: 18px; }
.cta-band p { color: rgba(255,246,238,0.9); font-size: 18px; max-width: 580px; margin: 0 auto 38px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; align-items: stretch; }
.plan {
  background: #fff; border: 1px solid var(--grey-border); border-radius: var(--radius);
  padding: 46px 36px; display: flex; flex-direction: column; position: relative;
  transition: all 0.35s var(--ease);
}
.plan:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.plan.featured { border: 2px solid var(--crimson); box-shadow: var(--shadow-hover); transform: scale(1.04); z-index: 2; }
.plan.featured:hover { transform: scale(1.04) translateY(-8px); }
.plan-badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--crimson); color: var(--ivory); font-family: 'Sora',sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 7px 20px; border-radius: 100px; white-space: nowrap;
}
.plan h3 { font-size: 26px; margin-bottom: 8px; }
.plan-for { font-size: 14.5px; color: var(--grey-text); margin-bottom: 30px; min-height: 44px; }
.plan-divider { height: 1px; background: var(--grey-border); margin-bottom: 30px; }
.plan ul { list-style: none; flex-grow: 1; margin-bottom: 34px; }
.plan ul li { font-size: 14.5px; color: var(--grey-text); padding: 9px 0; display: flex; align-items: flex-start; gap: 12px; }
.plan ul li::before {
  content: ''; width: 19px; height: 19px; flex-shrink: 0; margin-top: 3px; background: var(--crimson);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}
.plan .btn { width: 100%; justify-content: center; }
.pricing-note { text-align: center; color: var(--grey-text); font-size: 16px; margin-top: 52px; }

/* ---------- Portfolio ---------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.work { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--grey-border); background: #fff; transition: all 0.35s var(--ease); }
.work:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.work-visual { aspect-ratio: 4/5; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; padding: 32px 28px; text-align: center; position: relative; overflow: hidden; }
.work-visual::before { content: ''; position: absolute; inset: 0; opacity: 0.5; background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.18) 1px, transparent 0); background-size: 22px 22px; }
.work-visual::after { content: ''; position: absolute; top: -40%; right: -30%; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 70%); }
.work-visual.v1 { background: linear-gradient(150deg, #8E1730 0%, #5E0F1E 100%); }
.work-visual.v2 { background: linear-gradient(150deg, #2A2A2A 0%, #161616 100%); }
.work-visual.v3 { background: linear-gradient(150deg, #161616 0%, #7B1427 130%); }
.work-tag { font-family: 'Sora',sans-serif; font-size: 10.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 7px 16px; border-radius: 100px; position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 7px; }
.work-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-bright); }
.work-visual.v1 .work-tag { background: rgba(255,255,255,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.work-visual.v2 .work-tag { background: rgba(201,168,76,0.18); color: var(--gold-bright); border: 1px solid rgba(201,168,76,0.3); }
.work-visual.v3 .work-tag { background: rgba(255,255,255,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.work-visual h3 { font-size: 22px; line-height: 1.32; position: relative; z-index: 1; color: #fff; }
.work-icon { width: 46px; height: 46px; border-radius: 13px; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); }
.work-icon svg { width: 23px; height: 23px; stroke: #fff; }
.work-info { padding: 24px 26px; }
.work-info h4 { font-size: 16px; margin-bottom: 6px; }
.work-info p { font-size: 14px; color: var(--grey-text); }
.portfolio-soon { text-align: center; margin-top: 58px; padding: 52px 32px; border: 1.5px dashed var(--grey-border); border-radius: var(--radius); background: var(--grey-light); }
.portfolio-soon h3 { font-size: 22px; margin-bottom: 12px; }
.portfolio-soon p { color: var(--grey-text); font-size: 15px; max-width: 540px; margin: 0 auto 24px; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.about-text h2 { font-size: clamp(30px,4.5vw,42px); margin-bottom: 26px; }
.about-text p { color: var(--grey-text); margin-bottom: 20px; font-size: 16.5px; }
.about-values { display: grid; gap: 18px; }
.value { background: #fff; border: 1px solid var(--grey-border); border-left: 4px solid var(--crimson); border-radius: 0 12px 12px 0; padding: 26px 30px; transition: transform 0.3s var(--ease); }
.value:hover { transform: translateX(6px); }
.value h3 { font-size: 17.5px; margin-bottom: 7px; }
.value p { font-size: 14.5px; color: var(--grey-text); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 68px; align-items: start; }
.contact-info h2 { font-size: clamp(30px,4.5vw,42px); margin-bottom: 22px; }
.contact-info > p { color: var(--grey-text); margin-bottom: 36px; font-size: 16.5px; }
.contact-line { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; font-size: 15px; color: var(--grey-text); }
.contact-line svg { width: 21px; height: 21px; stroke: var(--crimson); flex-shrink: 0; }
.form { background: #fff; border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 44px; box-shadow: var(--shadow-soft); }
.form-group { margin-bottom: 22px; }
.form label { display: block; font-family: 'Sora',sans-serif; font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.form input, .form textarea { width: 100%; padding: 14px 16px; border: 1.5px solid var(--grey-border); border-radius: 10px; font-family: 'Inter',sans-serif; font-size: 15px; color: var(--charcoal); transition: border-color 0.2s, box-shadow 0.2s; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--crimson); box-shadow: 0 0 0 3px rgba(123,20,39,0.08); }
.form textarea { min-height: 130px; resize: vertical; }

/* ---------- Footer ---------- */
.footer { background: var(--charcoal); color: rgba(255,255,255,0.7); padding: 70px 0 34px; margin-top: 0; position: relative; overflow: hidden; }
.footer-rise { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.5; pointer-events: none; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 50px; margin-bottom: 50px; position: relative; z-index: 1; }
.footer-logo { margin-bottom: 14px; }
.footer-logo svg { height: 44px; width: auto; display: block; }
.footer-tagline { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.footer p { font-size: 14px; }
.footer h4 { color: #fff; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer ul a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 14px; margin-top: 22px; }
.footer-socials a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s var(--ease); }
.footer-socials a:hover { border-color: var(--gold); background: rgba(201,168,76,0.1); transform: translateY(-3px); }
.footer-socials svg { width: 17px; height: 17px; fill: rgba(255,255,255,0.8); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 30px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13.5px; position: relative; z-index: 1; }
.footer-bottom .gold-line { color: var(--gold); font-style: italic; }

/* ---------- Inner page hero ---------- */
.page-hero { position: relative; padding: 90px 0 64px; text-align: center; overflow: hidden; }
.page-hero .hero-lines { position: absolute; inset: 0; z-index: 0; opacity: 0.7; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(34px,5.5vw,54px); margin-bottom: 18px; }
.page-hero p { color: var(--grey-text); font-size: 18px; max-width: 620px; margin: 0 auto; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .steps, .pricing-grid, .portfolio-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .plan.featured { transform: none; }
  .plan.featured:hover { transform: translateY(-8px); }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .nav-toggle { display: block; }
  .nav-links { position: absolute; top: 76px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: flex-start; padding: 24px; gap: 20px; border-bottom: 1px solid var(--grey-border); display: none; }
  .nav-links.show { display: flex; }
  .section { padding: 70px 0; }
  .hero { padding: 80px 0 70px; }
}

/* ============================================
   MOTION v2 — Horizontal / Landscape additions
   ============================================ */

/* Wider container for desktop landscape feel */
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

/* ---------- Horizontal split hero ---------- */
.hero-split {
  position: relative; overflow: hidden;
  padding: 70px 0 80px;
}
.hero-split .hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
  position: relative; z-index: 1;
}
.hero-split .hero-copy { text-align: left; }
.hero-split h1 { margin: 0 0 26px; font-size: clamp(38px, 4.6vw, 62px); }
.hero-split .hero-eyebrow { margin-bottom: 24px; }
.hero-split p { margin: 0 0 36px; font-size: 18.5px; max-width: 540px; }
.hero-split .hero-actions { justify-content: flex-start; }
.hero-split .hero-trust { justify-content: flex-start; margin-top: 44px; gap: 26px; }

/* Hero visual — phone/feed mock with motion */
.hero-visual { position: relative; height: 480px; }
.hero-card {
  position: absolute; background: #fff; border: 1px solid var(--grey-border);
  border-radius: 18px; box-shadow: var(--shadow-soft); overflow: hidden;
}
.hero-card-main {
  width: 290px; height: 430px; left: 50%; top: 50%; transform: translate(-50%,-50%);
  z-index: 2; animation: floatY 5s ease-in-out infinite;
}
.hero-card-head { background: var(--crimson); padding: 16px 18px; display: flex; align-items: center; gap: 10px; }
.hero-card-avatar { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.9); display:flex; align-items:center; justify-content:center; font-family:'Sora'; font-weight:800; color:var(--crimson); font-size:14px; }
.hero-card-head .hc-name { color:#fff; font-family:'Sora'; font-weight:600; font-size:13.5px; line-height:1.3; }
.hero-card-head .hc-sub { color:rgba(255,255,255,0.7); font-size:11px; }
.hero-card-img { height: 188px; background: linear-gradient(150deg,#7B1427,#5E0F1E); position:relative; display:flex;align-items:center;justify-content:center; }
.hero-card-img .tag { position:absolute; top:14px; left:14px; background:rgba(255,255,255,0.16); color:#fff; font-family:'Sora'; font-weight:700; font-size:10px; letter-spacing:1.5px; padding:5px 11px; border-radius:100px; }
.hero-card-img .price { color:#fff; font-family:'Sora'; font-weight:800; font-size:26px; }
.hero-card-body { padding: 16px 18px; }
.hero-card-body .line { height: 9px; border-radius: 5px; background: var(--grey-light); margin-bottom: 9px; }
.hero-card-body .line.w70 { width: 70%; } .hero-card-body .line.w90 { width: 90%; } .hero-card-body .line.w50 { width: 50%; }
.hero-card-stats { display:flex; gap:18px; margin-top:14px; padding-top:14px; border-top:1px solid var(--grey-border); }
.hero-card-stats .s { font-family:'Sora'; }
.hero-card-stats .s b { display:block; font-size:15px; color:var(--charcoal); }
.hero-card-stats .s span { font-size:10.5px; color:var(--grey-text); }

.hero-card-float1 {
  width: 150px; left: 2%; top: 14%; z-index: 3; padding: 14px 16px;
  animation: floatY 4s ease-in-out infinite 0.5s;
}
.hero-card-float2 {
  width: 165px; right: 0%; bottom: 12%; z-index: 3; padding: 14px 16px;
  animation: floatY 4.5s ease-in-out infinite 1s;
}
.mini-stat { display:flex; align-items:center; gap:10px; }
.mini-icon { width:34px; height:34px; border-radius:9px; background:rgba(123,20,39,0.08); display:flex; align-items:center; justify-content:center; }
.mini-icon svg { width:18px; height:18px; stroke:var(--crimson); }
.mini-stat b { font-family:'Sora'; font-size:17px; color:var(--charcoal); display:block; line-height:1.1; }
.mini-stat span { font-size:11px; color:var(--grey-text); }
@keyframes floatY { 0%,100% { transform: translate(-50%,-50%) translateY(0); } 50% { transform: translate(-50%,-50%) translateY(-14px); } }
.hero-card-float1, .hero-card-float2 { animation-name: floatYsimple; }
@keyframes floatYsimple { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---------- DIY vs Zillorra comparison ---------- */
.versus { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0; align-items: stretch; max-width: 1080px; margin: 0 auto; border-radius: 22px; overflow: hidden; border: 1px solid var(--grey-border); }
.vs-col { padding: 48px 44px; }
.vs-diy { background: var(--grey-light); }
.vs-zillorra { background: var(--crimson); position: relative; overflow: hidden; }
.vs-zillorra::before { content:''; position:absolute; width:300px; height:300px; border-radius:50%; background:rgba(201,168,76,0.12); top:-100px; right:-80px; }
.vs-zillorra > * { position: relative; z-index: 1; }
.vs-head { display:flex; align-items:center; gap:12px; margin-bottom:30px; }
.vs-head .vs-icon { width:48px; height:48px; border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.vs-diy .vs-icon { background:#E5E2DC; } .vs-diy .vs-icon svg { stroke:var(--grey-text); }
.vs-zillorra .vs-icon { background:rgba(255,255,255,0.16); } .vs-zillorra .vs-icon svg { stroke:#fff; }
.vs-icon svg { width:24px; height:24px; }
.vs-head h3 { font-size:21px; } .vs-diy .vs-head h3 { color:var(--charcoal); } .vs-zillorra .vs-head h3 { color:var(--ivory); }
.vs-head .vs-label { font-size:12px; font-family:'Sora'; font-weight:600; letter-spacing:1px; text-transform:uppercase; }
.vs-diy .vs-label { color:var(--grey-text); } .vs-zillorra .vs-label { color:var(--gold-bright); }
.vs-list { list-style:none; }
.vs-list li { display:flex; align-items:flex-start; gap:13px; padding:13px 0; font-size:15px; border-bottom:1px solid rgba(0,0,0,0.06); }
.vs-zillorra .vs-list li { border-bottom-color:rgba(255,255,255,0.14); color:rgba(255,246,238,0.94); }
.vs-diy .vs-list li { color:var(--grey-text); }
.vs-list li:last-child { border-bottom:none; }
.vs-mark { width:20px; height:20px; border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center; margin-top:1px; }
.vs-diy .vs-mark { background:#E0DCD4; } .vs-diy .vs-mark svg { stroke:#9a958c; width:12px; height:12px; }
.vs-zillorra .vs-mark { background:rgba(201,168,76,0.9); } .vs-zillorra .vs-mark svg { stroke:var(--crimson); width:12px; height:12px; }
.vs-divider { display:flex; align-items:center; justify-content:center; background:#fff; padding:0 4px; }
.vs-divider span { width:54px; height:54px; border-radius:50%; background:#fff; border:2px solid var(--grey-border); display:flex; align-items:center; justify-content:center; font-family:'Sora'; font-weight:800; font-size:15px; color:var(--charcoal); }

/* ---------- Horizontal flow process ---------- */
.flow { display:grid; grid-template-columns: repeat(3, 1fr) ; gap:0; max-width:1080px; margin:0 auto; position:relative; }
.flow-step { text-align:center; padding:0 28px; position:relative; }
.flow-step:not(:last-child)::after { content:''; position:absolute; top:31px; right:-14px; width:28px; height:2px; background:repeating-linear-gradient(90deg,var(--crimson) 0 6px,transparent 6px 11px); }
.flow-num { width:64px; height:64px; border-radius:18px; background:var(--crimson); color:var(--ivory); font-family:'Sora'; font-weight:800; font-size:24px; display:flex; align-items:center; justify-content:center; margin:0 auto 22px; transition:transform .35s var(--ease); }
.flow-step:hover .flow-num { transform:translateY(-6px) rotate(-4deg); }
.flow-step h3 { font-size:19px; margin-bottom:10px; }
.flow-step p { font-size:14.5px; color:var(--grey-text); }

/* ---------- Stat strip (horizontal) ---------- */
.stat-strip { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.stat { text-align:center; padding:30px 20px; background:#fff; border:1px solid var(--grey-border); border-radius:var(--radius); transition:transform .3s var(--ease); }
.stat:hover { transform:translateY(-6px); }
.stat b { font-family:'Sora'; font-weight:800; font-size:38px; color:var(--crimson); display:block; line-height:1; }
.stat span { font-size:14px; color:var(--grey-text); margin-top:8px; display:block; }

@media (max-width: 980px) {
  .hero-split .hero-grid { grid-template-columns:1fr; gap:48px; }
  .hero-visual { height:430px; }
  .flow { grid-template-columns:1fr; gap:36px; }
  .flow-step:not(:last-child)::after { display:none; }
  .stat-strip { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 760px) {
  .versus { grid-template-columns:1fr; }
  .vs-divider { padding:14px 0; }
  .vs-divider span { transform:rotate(90deg); }
}

/* ============================================
   PAGE-SPECIFIC GRAPHICS (horizontal)
   ============================================ */

/* Services — comparison plans handled by pricing grid. Add horizontal "what you get" band */
.deliver-band { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; max-width:1200px; margin:0 auto; }
.deliver { text-align:center; padding:32px 22px; background:#fff; border:1px solid var(--grey-border); border-radius:var(--radius); transition:transform .3s var(--ease); }
.deliver:hover { transform:translateY(-6px); box-shadow:var(--shadow-soft); }
.deliver-ic { width:52px; height:52px; border-radius:14px; background:rgba(123,20,39,0.08); display:flex; align-items:center; justify-content:center; margin:0 auto 18px; }
.deliver-ic svg { width:26px; height:26px; stroke:var(--crimson); }
.deliver h4 { font-size:16px; margin-bottom:8px; }
.deliver p { font-size:13.5px; color:var(--grey-text); }

/* Portfolio — horizontal content-type strip */
.ptype-row { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; max-width:1200px; margin:0 auto 60px; }
.ptype { padding:26px 22px; border-radius:var(--radius); border:1px solid var(--grey-border); background:#fff; text-align:center; transition:transform .3s var(--ease); }
.ptype:hover { transform:translateY(-5px); box-shadow:var(--shadow-soft); }
.ptype b { font-family:'Sora'; font-size:30px; color:var(--crimson); display:block; }
.ptype span { font-size:13.5px; color:var(--grey-text); display:block; margin-top:6px; }

/* About — horizontal timeline */
.timeline-h { display:grid; grid-template-columns:repeat(4,1fr); gap:0; max-width:1200px; margin:0 auto; position:relative; }
.tl-step { text-align:center; padding:0 22px; position:relative; }
.tl-step:not(:last-child)::after { content:''; position:absolute; top:23px; right:-12px; width:24px; height:2px; background:repeating-linear-gradient(90deg,var(--gold) 0 6px,transparent 6px 11px); }
.tl-dot { width:48px; height:48px; border-radius:50%; background:var(--crimson); color:var(--ivory); font-family:'Sora'; font-weight:800; display:flex; align-items:center; justify-content:center; margin:0 auto 18px; font-size:18px; }
.tl-step h4 { font-size:16px; margin-bottom:8px; }
.tl-step p { font-size:13.5px; color:var(--grey-text); }

/* About — horizontal stat row reuse stat-strip */

/* Contact — horizontal info band */
.contact-band { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; max-width:1100px; margin:0 auto 56px; }
.cband { padding:30px 26px; background:#fff; border:1px solid var(--grey-border); border-radius:var(--radius); text-align:center; }
.cband-ic { width:50px; height:50px; border-radius:13px; background:rgba(123,20,39,0.08); display:flex; align-items:center; justify-content:center; margin:0 auto 16px; }
.cband-ic svg { width:24px; height:24px; stroke:var(--crimson); }
.cband h4 { font-size:16px; margin-bottom:6px; }
.cband p { font-size:13.5px; color:var(--grey-text); }

@media (max-width:980px){
  .deliver-band, .ptype-row, .timeline-h, .contact-band { grid-template-columns:repeat(2,1fr); }
  .tl-step:not(:last-child)::after { display:none; }
}
