/* =============================================================
   CLEVER DATA - MASTER STYLESHEET
   Single source of truth for site-wide design.
   ============================================================= */


/* =============================================================
   SECTION 1 - RESET & BASE
   ============================================================= */

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: #e30613; text-decoration: none; transition: color 0.2s; }
a:hover { color: #c00510; }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #111;
  line-height: 1.2;
}

p { margin: 0 0 1em; }


/* =============================================================
   SECTION 2 - LAYOUT UTILITIES
   ============================================================= */

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

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

.text-center { text-align: center; }
.text-red    { color: #e30613; }
.text-white  { color: #fff; }
.text-muted  { color: #666; }


/* =============================================================
   SECTION 3 - HEADER / NAVIGATION
   ============================================================= */

.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.site-nav a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 6px 0;
  position: relative;
  transition: color 0.2s;
}

.site-nav a:hover { color: #e30613; }
.site-nav a.active { color: #e30613; }
.site-nav a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e30613;
}

.nav-cta {
  background: #e30613;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 8px;
  font-weight: 600;
}
.nav-cta:hover { background: #c00510; color: #fff !important; }
.nav-cta::after { display: none !important; }


/* =============================================================
   SECTION 4 - MAIN CONTENT AREA
   ============================================================= */

main { min-height: 60vh; }


/* =============================================================
   SECTION 5 - HERO SECTIONS (GENERIC)
   ============================================================= */

.hero {
  padding: 80px 24px;
  text-align: center;
  background: #ffffff;
}

.hero-badge {
  display: inline-block;
  background: #fff0f1;
  color: #e30613;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin: 0 auto 24px;
  max-width: 780px;
}

.hero p {
  font-size: 19px;
  color: #555;
  line-height: 1.55;
  margin: 0 auto 32px;
  max-width: 600px;
}


/* =============================================================
   SECTION 6 - BUTTONS
   ============================================================= */

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary {
  background: #e30613;
  color: #fff;
}
.btn-primary:hover {
  background: #c00510;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(227, 6, 19, 0.25);
}

.btn-secondary {
  background: #fff;
  color: #111;
  border: 1.5px solid #ddd;
}
.btn-secondary:hover {
  border-color: #111;
  color: #111;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}


/* =============================================================
   SECTION 7 - GENERIC CARDS
   ============================================================= */

.card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 30px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}


/* =============================================================
   SECTION 8 - STATS (GENERIC)
   ============================================================= */

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 40px auto;
}

.stat {
  padding: 24px 16px;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #e30613;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
  line-height: 1.1;
}

.stat-label {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
  font-weight: 600;
}


/* =============================================================
   SECTION 9 - SECTION WRAPPERS
   ============================================================= */

.section { padding: 80px 0; }
.section-muted { background: #f8f8f8; }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 40px;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}


/* =============================================================
   SECTION 10 - FOOTER
   ============================================================= */

.site-footer {
  background: #111;
  color: #ccc;
  padding: 50px 24px 24px;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 16px;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
  color: #aaa;
  font-size: 14px;
  text-decoration: none;
}
.footer-col a:hover { color: #fff; }

.footer-company img { height: 36px; margin-bottom: 16px; }
.footer-company p { color: #aaa; font-size: 14px; line-height: 1.6; margin: 0; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #222;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}
.footer-social a:hover { background: #e30613; color: #fff; }

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #888;
}

.footer-bottom a {
  color: #888;
  text-decoration: none;
  margin-left: 16px;
}
.footer-bottom a:hover { color: #fff; }


/* =============================================================
   SECTION 11 - FORMS
   ============================================================= */

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e4e4e4;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e30613;
}


/* =============================================================
   SECTION 12 - FAQ COMPONENT
   ============================================================= */

.faq-item {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  padding: 22px 26px;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #111;
  transition: background 0.2s;
}

.faq-question:hover { background: #fafafa; }

.faq-question::after {
  content: "+";
  font-size: 24px;
  font-weight: 300;
  color: #e30613;
  transition: transform 0.2s;
}

.faq-item[open] .faq-question::after { transform: rotate(45deg); }

.faq-answer {
  padding: 0 26px 24px;
  color: #555;
  font-size: 15px;
  line-height: 1.65;
}


/* =============================================================
   SECTION 13 - GENERIC RESPONSIVE
   ============================================================= */

@media (max-width: 899px) {
  .site-nav { display: none; }
  .site-logo img { height: 34px; }

  .hero h1 { font-size: 36px; letter-spacing: -0.5px; }
  .hero p { font-size: 16px; }

  .stats-row { grid-template-columns: 1fr; }

  .section { padding: 60px 0; }
  .section-header h2 { font-size: 28px; }

  .footer-bottom { justify-content: center; text-align: center; }
}

/* =============================================================
   SECTION 14 - HOME PAGE SPECIFIC
   ============================================================= */

.hero {
  padding: 80px 60px 40px;
  text-align: center;
  background: #ffffff;
}

.hero > .container {
  max-width: 100%;
  padding: 0;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin: 0 auto 28px;
  max-width: 1600px;
  color: #111;
}

.hero-title .accent { color: #e30613; }

.hero-subtitle {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  max-width: 1400px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.features {
  padding: 40px 60px 60px;
  background: #ffffff;
}

.features > .container {
  max-width: 100%;
  padding: 0;
}

.features .section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 50px;
  color: #111;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1600px;
  margin: 0 auto;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #111;
  margin: 0 0 14px;
}

.feature-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.65;
  margin: 0;
}

.try-now {
  padding: 60px 60px 100px;
  background: #ffffff;
}

.try-card {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  background: #f2f2f2;
  border: none;
  border-radius: 16px;
}

.try-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e30613;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.try-title {
  font-size: 34px;
  font-weight: 800;
  color: #111;
  margin: 0 0 14px;
  letter-spacing: -0.8px;
}

.try-text {
  font-size: 16px;
  color: #555;
  line-height: 1.65;
  margin: 0 auto 28px;
  max-width: 560px;
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero, .features, .try-now { padding-left: 30px; padding-right: 30px; }
}

@media (max-width: 899px) {
  .hero { padding: 60px 20px 30px; }
  .hero-title { font-size: 32px; letter-spacing: -0.6px; }
  .hero-subtitle { font-size: 15.5px; }
  .hero-cta { flex-direction: column; max-width: 320px; margin: 0 auto; }

  .features { padding: 30px 20px 50px; }
  .features .section-title { font-size: 26px; margin-bottom: 36px; }
  .features-grid { grid-template-columns: 1fr; }

  .try-now { padding: 30px 20px 50px; }
  .try-card { padding: 40px 24px; }
  .try-title { font-size: 24px; }
}


/* =============================================================
   SECTION 15 - PRODUCT PAGE SPECIFIC
   ============================================================= */

.prod-hero {
  padding: 80px 24px 70px;
  text-align: center;
  background: #fff;
}

.prod-hero h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin: 0 auto 20px;
  max-width: 820px;
}

.prod-hero h1 .accent { color: #e30613; }

.prod-hero p {
  font-size: 18px;
  color: #555;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto 30px;
}

.prod-section { padding: 80px 24px; background: #fff; }
.prod-section.alt { background: #f8f8f8; }

.prod-section h2 {
  text-align: center;
  font-size: 36px;
  letter-spacing: -1px;
  margin: 0 0 14px;
}

.prod-section .lead {
  text-align: center;
  font-size: 17px;
  color: #666;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 50px;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.flow-step {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 32px 26px;
  text-align: left;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e30613;
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.flow-step h3 {
  font-size: 18px;
  margin: 0 0 10px;
  letter-spacing: -0.3px;
}

.flow-step p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.module-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.module-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.module-tag {
  display: inline-block;
  background: #fff0f1;
  color: #e30613;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.module-card h3 {
  font-size: 19px;
  margin: 0 0 12px;
  letter-spacing: -0.3px;
}

.module-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 18px;
  flex: 1;
}

.module-card .learn {
  color: #e30613;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  align-self: flex-start;
}

.module-card .learn:hover { color: #c00510; }

.why-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 30px;
  text-align: center;
}

.why-stat {
  font-size: 40px;
  font-weight: 800;
  color: #e30613;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.why-label {
  font-size: 13.5px;
  color: #555;
  line-height: 1.5;
  font-weight: 500;
}

.geo-note {
  text-align: center;
  max-width: 720px;
  margin: 24px auto 0;
  padding: 16px 20px;
  background: #fff0f1;
  border: 1px solid #ffd8dc;
  border-radius: 10px;
  font-size: 14.5px;
  color: #555;
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .flow-grid, .modules-grid, .why-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 899px) {
  .prod-hero { padding: 60px 20px 50px; }
  .prod-hero h1 { font-size: 32px; letter-spacing: -0.5px; }
  .prod-hero p { font-size: 15.5px; }

  .prod-section { padding: 60px 20px; }
  .prod-section h2 { font-size: 26px; }
  .prod-section .lead { font-size: 15px; margin-bottom: 36px; }

  .flow-grid, .modules-grid, .why-row { grid-template-columns: 1fr; }
}


/* =============================================================
   SECTION 16 - DaaS PAGE SPECIFIC
   ============================================================= */

.daas-hero {
  padding: 80px 24px 70px;
  text-align: center;
  background: #fff;
}

.daas-hero .badge {
  display: inline-block;
  background: #fff0f1;
  color: #e30613;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.daas-hero h1 {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -1.3px;
  line-height: 1.05;
  margin: 0 auto 20px;
  max-width: 760px;
}

.daas-hero p {
  font-size: 18px;
  color: #555;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto 32px;
}

.daas-section { padding: 80px 24px; background: #fff; }
.daas-section.alt { background: #f8f8f8; }

.daas-section-title {
  text-align: center;
  font-size: 34px;
  letter-spacing: -1px;
  margin: 0 0 14px;
}

.daas-section-sub {
  text-align: center;
  font-size: 17px;
  color: #666;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 50px;
}

.whatis-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.whatis-text h2 {
  font-size: 34px;
  letter-spacing: -1px;
  margin: 0 0 20px;
}

.whatis-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin: 0 0 16px;
}

.whatis-text strong { color: #111; }

.whatis-visual {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 24px 26px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.stat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.stat-row:last-child { border-bottom: none; }

.stat-row .stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.stat-row .stat-value {
  font-size: 15px;
  color: #e30613;
  font-weight: 700;
  text-align: right;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1160px;
  margin: 0 auto;
}

.pillar-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: left;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e30613;
  color: #fff;
  font-weight: 800;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.pillar-card h3 {
  font-size: 19px;
  margin: 0 0 10px;
  letter-spacing: -0.3px;
}

.pillar-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.who-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 30px 26px;
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}

.who-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.who-card h3 {
  font-size: 20px;
  color: #e30613;
  margin: 0 0 14px;
  letter-spacing: -0.3px;
}

.who-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

.roi-banner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 36px;
  background: linear-gradient(135deg, #e30613 0%, #c00510 100%);
  border-radius: 20px;
  color: #fff;
}

.roi-banner h2 {
  color: #fff;
  font-size: 38px;
  letter-spacing: -1px;
  margin: 0 0 18px;
  line-height: 1.15;
}

.roi-banner h2 .highlight {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 12px;
  border-radius: 8px;
}

.roi-banner p {
  color: #fff;
  opacity: 0.95;
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 28px;
}

.roi-banner .btn-primary { background: #fff; color: #e30613; }
.roi-banner .btn-primary:hover { background: #fff; color: #c00510; }

.notagency-banner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 44px 36px;
  background: #111;
  color: #fff;
  border-radius: 20px;
}

.notagency-banner h2 {
  color: #fff;
  font-size: 32px;
  letter-spacing: -0.8px;
  margin: 0 0 20px;
}

.notagency-banner p {
  color: #ccc;
  font-size: 16px;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 16px;
}

.notagency-banner strong { color: #fff; }

@media (max-width: 1024px) {
  .pillars-grid, .who-grid { grid-template-columns: repeat(2, 1fr); }
  .whatis-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 899px) {
  .daas-hero { padding: 60px 20px 50px; }
  .daas-hero h1 { font-size: 34px; letter-spacing: -0.5px; }
  .daas-hero p { font-size: 15.5px; }

  .daas-section { padding: 60px 20px; }
  .daas-section-title { font-size: 26px; }
  .daas-section-sub { font-size: 15px; margin-bottom: 36px; }

  .pillars-grid, .who-grid { grid-template-columns: 1fr; }

  .roi-banner, .notagency-banner { padding: 36px 24px; }
  .roi-banner h2 { font-size: 28px; }
  .notagency-banner h2 { font-size: 24px; }
}


/* =============================================================
   SECTION 17 - FEATURES PAGE SPECIFIC
   ============================================================= */

.feat-hero {
  padding: 80px 24px 70px;
  text-align: center;
  background: #fff;
}

.feat-hero h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin: 0 auto 20px;
  max-width: 820px;
}

.feat-hero h1 .accent { color: #e30613; }

.feat-hero p {
  font-size: 18px;
  color: #555;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto 32px;
}

.feat-section { padding: 80px 24px; background: #fff; }
.feat-section.alt { background: #f8f8f8; }

.feat-group-title {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e30613;
  margin-bottom: 10px;
}

.feat-section-title {
  text-align: center;
  font-size: 34px;
  letter-spacing: -1px;
  margin: 0 0 14px;
}

.feat-section-sub {
  text-align: center;
  font-size: 17px;
  color: #666;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 50px;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.feat-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 30px 26px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff0f1;
  color: #e30613;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feat-card h3 {
  font-size: 18px;
  margin: 0 0 10px;
  letter-spacing: -0.3px;
}

.feat-card p {
  font-size: 14.5px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.feat-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.feat-split-text h2 {
  font-size: 32px;
  letter-spacing: -1px;
  line-height: 1.15;
  margin: 0 0 20px;
}

.feat-split-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  margin: 0 0 16px;
}

.feat-split-text ul {
  padding-left: 20px;
  margin: 16px 0;
}

.feat-split-text li {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 6px;
}

.feat-split-visual {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.feat-split-visual h4 {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #e30613;
  margin: 0 0 16px;
}

.chip {
  display: inline-block;
  background: #fff0f1;
  color: #c00510;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 100px;
  margin: 0 6px 8px 0;
}

@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-split { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 899px) {
  .feat-hero { padding: 60px 20px 50px; }
  .feat-hero h1 { font-size: 32px; letter-spacing: -0.5px; }
  .feat-hero p { font-size: 15.5px; }

  .feat-section { padding: 60px 20px; }
  .feat-section-title { font-size: 26px; }
  .feat-section-sub { font-size: 15px; margin-bottom: 36px; }
  .feat-split-text h2 { font-size: 24px; }

  .feat-grid { grid-template-columns: 1fr; }
}


/* =============================================================
   SECTION 18 - CONTACT PAGE + THANK YOU PAGE
   ============================================================= */


/* Contact hero - light grey background matching original cd.cleverdata.ie */

.contact-hero {
  padding: 80px 24px 50px;
  text-align: center;
  background: #f5f5f5;
}

.contact-hero h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin: 0 0 16px;
}

.contact-hero p {
  font-size: 18px;
  color: #555;
  max-width: 560px;
  margin: 0 auto;
}


/* Contact section wrapper - continues the light grey background */

.contact-section {
  padding: 20px 24px 100px;
  background: #f5f5f5;
}


/* 2 column grid: info + form */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}


/* BOTH cards now WHITE with subtle shadow - symmetrical */

.contact-info-card,
.contact-form-card {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.contact-info-card h3,
.contact-form-card h3 {
  font-size: 24px;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
}

.contact-info-card > p {
  font-size: 15.5px;
  color: #555;
  line-height: 1.65;
  margin: 0 0 24px;
}

.contact-bullet {
  padding: 14px 0;
  border-top: 1px solid #e8e8e8;
}

.contact-bullet strong {
  display: block;
  color: #111;
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-bullet span {
  display: block;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.contact-form-card .form-intro {
  font-size: 14.5px;
  color: #666;
  margin: 0 0 22px;
}

/* GHL iframe sizing override - matches GHL form's data-height="480" */
.contact-form-card iframe {
  width: 100%;
  height: 560px;
  border: none;
  border-radius: 8px;
  display: block;
  margin: 0;
}



/* Thank you page */

.thankyou-section {
  padding: 100px 24px 120px;
  background: #f5f5f5;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.thankyou-card {
  text-align: center;
  padding: 60px 40px;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 20px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.thankyou-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #e30613;
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: 0 12px 30px rgba(227, 6, 19, 0.3);
}

.thankyou-card h1 {
  font-size: 36px;
  letter-spacing: -0.8px;
  margin: 0 0 16px;
  line-height: 1.2;
}

.thankyou-lead {
  font-size: 17px;
  color: #555;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 20px;
}

.thankyou-meta {
  font-size: 15px;
  color: #777;
  margin: 0 auto 32px;
  max-width: 480px;
}

.thankyou-meta a {
  color: #e30613;
  font-weight: 600;
}

.thankyou-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}


/* Contact + Thank You responsive */

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 899px) {
  .contact-hero { padding: 60px 20px 40px; }
  .contact-hero h1 { font-size: 32px; letter-spacing: -0.5px; }
  .contact-hero p { font-size: 15.5px; }

  .contact-section { padding: 20px 20px 60px; }
  .contact-info-card,
  .contact-form-card { padding: 28px 22px; }

  .thankyou-section { padding: 60px 20px 80px; }
  .thankyou-card { padding: 40px 24px; }
  .thankyou-card h1 { font-size: 26px; }
  .thankyou-icon { width: 64px; height: 64px; font-size: 32px; }
  .thankyou-actions { flex-direction: column; align-items: stretch; }
}
