/* ─── SEO & CONTENT MARKETING PAGE ──────────────────────────── */
html, body { overflow-x: hidden; max-width: 100vw; }
.se-section { padding: 96px 0; }

h1, h2, h3 { text-transform: uppercase !important; }
.footer__logo img { height: 48px; width: auto; }

/* ─── HERO ──────────────────────────────────────────────────── */
.se-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 70vh;
  padding-top: 80px;
}
.se-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.se-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.se-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,18,0.96) 50%, rgba(10,10,18,0.3) 100%);
  z-index: 1;
}
.se-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 72px;
  padding-bottom: 60px;
  max-width: 660px;
}
.se-hero__breadcrumb {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin: 0 0 18px;
}
.se-hero__quote {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.se-hero__quote svg { color: var(--red); flex-shrink: 0; }
.se-hero__headline {
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}
.se-hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.se-hero__bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.se-hero__bullets li svg {
  background: var(--red);
  border-radius: 50%;
  padding: 4px;
  flex-shrink: 0;
  color: #fff;
  width: 24px;
  height: 24px;
}
.se-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Stats bar */
.se-hero__stats {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto;
}
.se-hero__stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 0;
  flex-wrap: wrap;
}
.se-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 40px;
}
.se-stat strong {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.se-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  max-width: 130px;
  margin-top: 4px;
  line-height: 1.4;
}
.se-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ─── EXPERTISE ─────────────────────────────────────────────── */
.se-expertise { background: var(--white); }
.se-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.se-two-col__text .label-tag { margin-bottom: 16px; }
.se-two-col__text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--dark);
  margin: 0 0 20px;
  line-height: 1.2;
}
.se-two-col__text p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.se-checklist {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.se-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 600;
}
.se-checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.se-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.se-service-card {
  background: var(--gray-lt);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.07);
  transition: all var(--transition);
}
.se-service-card:hover {
  border-color: rgba(206,15,15,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.se-service-card svg {
  color: var(--red);
  margin-bottom: 12px;
}
.se-service-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px;
}
.se-service-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* ─── FEATURES / SHINGLE ────────────────────────────────────── */
.se-features { background: var(--dark); }
.se-features__header {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}
.se-features__header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #fff;
  margin: 12px 0 16px;
}
.se-features__header p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  margin: 0;
}
.se-bullets-row {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 680px;
  margin: 0 auto 48px;
}
.se-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.se-bullet-icon {
  width: 46px;
  height: 46px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.se-bullet-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
.se-bullet-item p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin: 0;
}

/* Shingle rectangle */
.se-shingle-box {
  position: relative;
  width: 56vw;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  border-radius: 10px;
  background-image: url('brand assests/AdobeStock_360383413.jpeg');
  background-size: cover;
  background-position: center;
}
.se-shingle-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,18,0.78);
}
.se-shingle-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 80px;
  gap: 0;
}
.se-pillar-div {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.18);
  margin: 0 52px;
}
.se-pillar__icon {
  width: 88px;
  height: 88px;
  background: #1c1c28;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 24px;
}
.se-pillar h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 14px; color: #fff; }
.se-pillar p { font-size: 0.92rem; color: rgba(255,255,255,0.72); line-height: 1.75; margin: 0; }

/* ─── WARNING SECTION ───────────────────────────────────────── */
.se-warning { background: var(--gray-lt); }
.se-warning__header {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}
.se-warning__header h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--dark);
  margin: 12px 0 0;
}
.se-warning__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.se-warning-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.se-warning-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.se-warning-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(206,15,15,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
  font-size: 1.1rem;
  font-weight: 900;
}
.se-warning-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 6px;
}
.se-warning-item p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}
.se-good-card {
  background: #1c1c28;
  border-radius: var(--radius);
  padding: 40px 36px;
}
.se-good-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 24px;
}
.se-good-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.se-good-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
}
.se-good-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: #27ae60;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ─── COMPARISON TABLE ──────────────────────────────────────── */
.se-why { background: var(--white); }
.se-compare { margin-top: 48px; }
.se-compare__head {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 0;
}
.se-compare__head-blank { background: transparent; }
.se-compare__head-col {
  padding: 24px 28px;
  text-align: center;
  background: #f4f4f6;
  border-left: 1px solid #e2e2e8;
}
.se-compare__head-col--vlex {
  background: #1c1c28;
  border-radius: 14px 14px 0 0;
  margin-top: -18px;
  padding-top: 32px;
  padding-bottom: 28px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  position: relative;
  z-index: 2;
}
.se-compare__logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.se-compare__col-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.se-compare__row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  border-top: 1px solid #e2e2e8;
}
.se-compare__row--last .se-compare__cell--vlex { border-radius: 0 0 14px 14px; }
.se-compare__cat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 16px 20px 0;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.se-compare__cat svg { color: var(--red); flex-shrink: 0; }
.se-compare__cell {
  padding: 20px 28px;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
  border-left: 1px solid #e2e2e8;
  background: #fff;
}
.se-compare__cell--vlex {
  background: #1c1c28;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-left: none;
  position: relative;
  z-index: 2;
  box-shadow: -4px 0 24px rgba(0,0,0,0.12), 4px 0 24px rgba(0,0,0,0.12);
}

/* ─── BANNER ────────────────────────────────────────────────── */
.se-banner {
  position: relative;
  padding: 80px 0;
}
.se-banner__bg {
  position: absolute;
  inset: 0;
}
.se-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.se-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,18,0.82);
}
.se-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.se-banner__inner h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #fff;
  font-weight: 800;
  margin: 0 0 12px;
  max-width: 600px;
}
.se-banner__inner p {
  color: rgba(255,255,255,0.7);
  font-size: 0.93rem;
  margin: 0;
  max-width: 560px;
}

/* ─── FAQ ───────────────────────────────────────────────────── */
.se-faq { background: var(--white); }
.se-faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.se-faq__item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  overflow: hidden;
}
.se-faq__q {
  width: 100%;
  background: #f5f5f7;
  border: none;
  padding: 20px 24px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: background var(--transition), color var(--transition);
}
.se-faq__q:hover { background: var(--red-lt); color: var(--red); }
.se-faq__item.open .se-faq__q { background: var(--red); color: #fff; }
.se-faq__icon {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px;
  flex-shrink: 0;
  object-fit: contain;
  display: inline-block !important;
  transition: transform var(--transition);
}
.se-faq__item.open .se-faq__icon {
  filter: brightness(0) invert(1);
  transform: scale(1.15);
}
.se-faq__a {
  display: none;
  padding: 20px 24px;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.se-faq__item.open .se-faq__a { display: block; }
.se-faq__a p { font-size: 0.92rem; color: var(--gray); line-height: 1.8; margin: 0; }

/* ─── CTA FORM ──────────────────────────────────────────────── */
.se-cta {
  position: relative;
  background: var(--dark);
  overflow: hidden;
}
.se-cta__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(206,15,15,0.12) 0%, transparent 70%);
}
.se-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
  padding-top: 96px;
  padding-bottom: 96px;
}
.se-cta__content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #fff;
  margin: 12px 0 16px;
  line-height: 1.2;
}
.se-cta__content p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  margin-bottom: 24px;
}
.se-cta__bullets { display: flex; flex-direction: column; gap: 12px; }
.se-cta-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}
.se-cta-bullet__dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}
.se-cta__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .se-two-col { grid-template-columns: 1fr; gap: 48px; }
  .se-cta__inner { grid-template-columns: 1fr; gap: 48px; }
  .se-compare__head, .se-compare__row { grid-template-columns: 140px 1fr 1fr 1fr; }
  .se-shingle-box { width: 88vw; }
  .se-shingle-inner { grid-template-columns: 1fr; padding: 40px 36px; }
  .se-pillar-div { width: 100%; height: 1px; margin: 24px 0; align-self: auto; }
  .se-warning__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .se-hero__inner { max-width: 100%; }
  .se-hero__headline { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .se-stat-div { display: none; }
  .se-hero__stats-inner { gap: 24px; }
  .se-services { grid-template-columns: 1fr; }
  .se-compare__head, .se-compare__row { grid-template-columns: 90px 1fr 1fr 1fr; font-size: 0.78rem; }
  .se-compare__cell, .se-compare__cat { padding: 14px 10px; }
  .se-banner__inner { flex-direction: column; text-align: center; }
  .se-shingle-box { width: 95vw; }
}

/* ─── MOBILE IMPROVEMENTS ──────────────────────────────────── */
@media (max-width: 768px) {
  .se-section { padding: 60px 0; }
  .se-hero { padding-top: 60px; min-height: auto; }
  .se-hero__inner { padding-top: 40px; padding-bottom: 36px; max-width: 100%; }
  .se-hero__headline { font-size: clamp(1.75rem, 7.5vw, 2.6rem) !important; }
  .se-hero__quote { font-size: 0.78rem; }
  .se-hero__stats-inner { flex-direction: column; align-items: flex-start; padding: 20px 0; gap: 12px; }
  .se-stat { display: flex; align-items: center; gap: 12px; text-align: left; }
  .se-stat strong { font-size: 1.5rem; }
  .se-stat span { max-width: 100%; margin: 0; font-size: 0.75rem; }
  .se-stat-div { display: none; }
  .se-cta__form { padding: 28px 24px; }
  .se-shingle-inner { padding: 36px 24px; }
  .se-faq__list { margin-top: 32px; }
  .se-faq__q { font-size: 0.9rem; padding: 18px 20px; }
}

@media (max-width: 480px) {
  .se-section { padding: 48px 0; }
  .se-hero { padding-top: 60px; }
  .se-hero__inner { padding-top: 28px; padding-bottom: 28px; }
  .se-hero__headline { font-size: clamp(1.55rem, 7vw, 2rem) !important; }
  .se-hero__bullets li { font-size: 0.88rem; }
  .se-hero__actions .btn { width: 100%; justify-content: center; }
  .se-shingle-box { width: 92vw; border-radius: 10px; left: 50%; transform: translateX(-50%); background-size: 120% auto; background-position: center top; }
  .se-shingle-inner { padding: 32px 20px; }
  .se-cta__form { padding: 24px 16px; }
  .se-services { grid-template-columns: 1fr; }

  /* Compare table: compact 4-column fit for mobile */
  .se-compare__head { display: grid !important; grid-template-columns: 58px 1fr 1fr 1fr !important; }
  .se-compare__head-blank { display: block !important; }
  .se-compare__head-col { padding: 8px 4px; }
  .se-compare__head-col--vlex { margin-top: -8px !important; padding-top: 10px; padding-bottom: 10px; border-radius: 8px 8px 0 0; }
  .se-compare__logo { height: 16px; }
  .se-compare__col-label { font-size: 0.48rem; letter-spacing: 0; }
  .se-compare__row { display: grid !important; grid-template-columns: 58px 1fr 1fr 1fr !important; }
  .se-compare__cat { padding: 8px 4px 8px 0 !important; font-size: 0.56rem; gap: 3px; letter-spacing: 0.02em; }
  .se-compare__cat svg { width: 11px !important; height: 11px !important; }
  .se-compare__cell { padding: 8px 5px !important; font-size: 0.62rem; line-height: 1.4; border-left: 1px solid #e2e2e8 !important; }
  .se-compare__row--last .se-compare__cell--vlex { border-radius: 0 0 8px 8px; }
}
