/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: #222; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── Tokens ── */
:root {
  --orange:  #FF6B2C;
  --orange2: #ff570f;
  --dark:    #333133;
  --gray:    #f2f2f2;
  --radius:  20px;
}

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-heading { font-size: 50px; font-weight: 600; color: #000; text-align: center; font-family: 'Poppins', sans-serif; }
.section-heading span { color: var(--orange); }
.section-sub { text-align: center; color: #555; font-size: 16px; line-height: 1.6; max-width: 720px; margin: 16px auto 0; }
.sep { height: 32px; }
.sep-sm { height: 16px; }

/* ── Buttons ── */
.btn { display: inline-block; font-family: 'Poppins', sans-serif; font-weight: 600; border-radius: 4px; cursor: pointer; transition: opacity 0.2s; }
.btn:hover { opacity: 0.88; }
.btn-primary { background: var(--orange); color: #fff; padding: 12px 30px; font-size: 16px; }
.btn-outline { background: transparent; border: 2px solid var(--orange); color: var(--orange); padding: 10px 28px; font-size: 16px; }

/* ── Top Bar ── */
.topbar { background: #111; color: #ccc; font-size: 13px; padding: 7px 0; }
.topbar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.topbar a { color: #ccc; }
.topbar a:hover { color: var(--orange); }

/* ── Header ── */
header { position: sticky; top: 0; z-index: 1000; background: #000; box-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; }
.logo img { height: 60px; width: auto; }
nav ul { list-style: none; display: flex; align-items: center; gap: 2px; }
nav > ul > li { position: relative; }
nav > ul > li > a { display: block; padding: 8px 13px; font-size: 14px; font-weight: 600; color: #e8e8e8; border-radius: 4px; transition: color 0.2s, background 0.2s; }
nav > ul > li > a:hover { color: var(--orange); background: rgba(255,255,255,0.08); }
.nav-quote { background: var(--orange); color: #fff !important; border-radius: 4px; padding: 9px 18px !important; }
.nav-quote:hover { background: var(--orange2) !important; color: #fff !important; }
.dropdown { display: none; position: absolute; top: calc(100% + 2px); left: 0; background: #1a1a1a; border: 1px solid #333; border-radius: 6px; box-shadow: 0 8px 20px rgba(0,0,0,0.4); min-width: 210px; z-index: 500; }
.dropdown li a { display: block; padding: 9px 18px; font-size: 13px; color: #ccc; transition: background 0.15s, color 0.15s; }
.dropdown li a:hover { background: rgba(255,255,255,0.07); color: var(--orange); }
nav > ul > li:hover .dropdown { display: block; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #e8e8e8; border-radius: 2px; }

/* ── Page Hero Banner ── */
.page-hero { position: relative; height: 380px; background: #0a0a0a center/cover no-repeat; display: flex; align-items: flex-end; padding-bottom: 60px; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: 52px; font-weight: 700; color: #fff; line-height: 1.1; }
.page-hero h1 span { color: var(--orange); }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 16px; margin-top: 10px; max-width: 560px; }
.breadcrumb { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--orange); }

/* ── Service Grid (used on hub pages) ── */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-tile { background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #e8e8e8; box-shadow: 0 4px 12px rgba(0,0,0,0.07); transition: transform 0.25s, box-shadow 0.25s; }
.service-tile:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,0.12), 0 0 12px rgba(255,107,44,0.15); }
.service-tile img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.service-tile-body { padding: 20px; }
.service-tile h3 { font-size: 18px; font-weight: 700; color: #000; margin-bottom: 8px; }
.service-tile h3 span { color: var(--orange); }
.service-tile p { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 14px; }
.service-tile a.learn { font-size: 13px; font-weight: 600; color: var(--orange); }
.service-tile a.learn:hover { text-decoration: underline; }

/* ── Content Section ── */
.content-section { padding: 72px 0; }
.content-section.gray { background: var(--gray); }
.content-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.content-2col.reverse { direction: rtl; }
.content-2col.reverse > * { direction: ltr; }
.content-img { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.content-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.content-text h2 { font-size: 36px; font-weight: 700; color: #000; margin-bottom: 16px; line-height: 1.2; }
.content-text h2 span { color: var(--orange); }
.content-text p { font-size: 15px; color: #555; line-height: 1.75; margin-bottom: 16px; }
.content-text ul { list-style: none; margin-bottom: 24px; }
.content-text ul li { font-size: 15px; color: #444; padding: 6px 0; padding-left: 22px; position: relative; }
.content-text ul li::before { content: '→'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

/* ── CTA Strip ── */
.cta-strip { background: var(--dark); padding: 56px 0; text-align: center; }
.cta-strip h2 { font-size: 36px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.cta-strip h2 span { color: var(--orange); }
.cta-strip p { color: #aaa; font-size: 16px; margin-bottom: 28px; }

/* ── Footer ── */
footer { background: #111; color: #888; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand img { height: 48px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: #666; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border-radius: 6px; background: #1e1e1e; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #aaa; transition: background 0.2s, color 0.2s; }
.footer-social a:hover { background: var(--orange); color: #fff; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 14px; color: #666; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1e1e1e; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: #666; }
.footer-bottom a:hover { color: #fff; }

/* ── Process Steps ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 40px; }
.process-step { text-align: center; position: relative; }
.process-num { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%; background: var(--orange); color: #fff; font-size: 26px; font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(255,107,44,0.3); }
.process-step h3 { font-size: 18px; font-weight: 700; color: #000; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: #666; line-height: 1.6; }

/* ── FAQ Accordion ── */
.faq-list { max-width: 820px; margin: 40px auto 0; }
.faq-item { background: #fff; border: 1px solid #e8e8e8; border-radius: 12px; margin-bottom: 12px; overflow: hidden; transition: box-shadow 0.2s; }
.faq-item:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 18px 22px; font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 600; color: #000; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-question:hover { color: var(--orange); }
.faq-icon { color: var(--orange); font-size: 20px; font-weight: 700; transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer p { padding: 0 22px 20px; color: #555; font-size: 14px; line-height: 1.75; }

/* ── Brand Strip ── */
.brand-strip { padding: 48px 0; background: var(--gray); }
.brand-strip h3 { text-align: center; font-size: 14px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 28px; }
.brand-strip-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 40px; }
.brand-strip-row img { height: 44px; width: auto; object-fit: contain; filter: grayscale(100%); opacity: 0.7; transition: filter 0.2s, opacity 0.2s; }
.brand-strip-row img:hover { filter: grayscale(0%); opacity: 1; }

/* ── Trust Bar (stats) ── */
.trust-bar { background: var(--dark); padding: 56px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.trust-stat { color: #fff; }
.trust-num { font-size: 44px; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 8px; }
.trust-label { font-size: 14px; color: #ccc; text-transform: uppercase; letter-spacing: 1px; }

/* ── Feature Cards ── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.feature-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 14px; padding: 28px; transition: transform 0.25s, box-shadow 0.25s; }
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.1), 0 0 12px rgba(255,107,44,0.15); }
.feature-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(255,107,44,0.1); color: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; font-weight: 700; color: #000; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: #555; line-height: 1.65; }

/* ── Pricing Tiers ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.pricing-card { background: #fff; border: 2px solid #e8e8e8; border-radius: 16px; padding: 32px; text-align: center; transition: transform 0.25s, border-color 0.25s; }
.pricing-card:hover { transform: translateY(-4px); border-color: var(--orange); }
.pricing-card.featured { border-color: var(--orange); box-shadow: 0 12px 28px rgba(255,107,44,0.15); position: relative; }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 5px 14px; border-radius: 20px; }
.pricing-tier { font-size: 14px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 12px; }
.pricing-amount { font-size: 36px; font-weight: 800; color: #000; line-height: 1; margin-bottom: 8px; }
.pricing-amount small { font-size: 14px; font-weight: 500; color: #888; }
.pricing-desc { font-size: 13px; color: #666; margin-bottom: 20px; }
.pricing-list { list-style: none; text-align: left; margin-bottom: 24px; }
.pricing-list li { font-size: 13px; color: #555; padding: 6px 0; padding-left: 22px; position: relative; }
.pricing-list li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

/* ── Testimonial Inline ── */
.testimonial-quote { max-width: 760px; margin: 0 auto; padding: 40px; text-align: center; background: #fff; border-radius: 16px; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.testimonial-quote::before { content: '"'; display: block; font-size: 64px; color: var(--orange); line-height: 0.6; margin-bottom: 12px; font-family: Georgia, serif; }
.testimonial-quote p { font-size: 18px; line-height: 1.6; color: #333; font-style: italic; margin-bottom: 20px; }
.testimonial-quote .stars { color: #ffbb00; font-size: 18px; margin-bottom: 12px; }
.testimonial-quote .author { font-weight: 700; color: #000; }
.testimonial-quote .role { font-size: 13px; color: #888; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .content-2col { grid-template-columns: 1fr; gap: 32px; }
  .content-2col.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  nav { display: none; }
  nav.open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: #000; box-shadow: 0 8px 20px rgba(0,0,0,0.5); padding: 12px 0; }
  nav.open ul { flex-direction: column; gap: 0; }
  nav.open > ul > li > a { border-radius: 0; }
  .dropdown { position: static; box-shadow: none; border: none; border-left: 3px solid var(--orange); margin-left: 16px; }
  .menu-toggle { display: flex; }
  .section-heading { font-size: 32px; }
  .page-hero h1 { font-size: 34px; }
  .service-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
