:root {
  --accent:        #2563EB;
  --accent-rgb:    37,99,235;
  --accent-dark:   #1D4ED8;
  --accent-teal:   #0D9488;
  --bg-base:       #FFFFFF;
  --bg-alt:        #F0F4F8;
  --bg-dark:       #0A1628;
  --bg-dark-card:  #1E293B;
  --bg-dark-border:#334155;
  --text-primary:  #1A1A2E;
  --text-body:     #555555;
  --text-muted:    #777777;
  --text-light:    #E2E8F0;
  --text-light-body:#C8D6E5;
  --text-light-muted:#8FABC4;
  --border-light:  #E2E8F0;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:     0 4px 16px rgba(0,0,0,0.10);
  --radius-sm:     6px;
  --radius-md:     10px;
  --radius-lg:     16px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #FFFFFF;
  color: #555555;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.page-sub { padding-top: 64px; }

a { color: #2563EB; text-decoration: none; }
a:hover { opacity: 0.85; }

img { max-width: 100%; height: auto; }

html { scroll-behavior: smooth; }

h1, h2, h3, h4, h5, h6 {
  color: #1A1A2E;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

p { color: #555555; line-height: 1.6; }

.section-light { background: #FFFFFF; }
.section-alt { background: #F0F4F8; }
.section-dark { background: #0A1628; }

/* ===================== NAV ===================== */
.c-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.c-nav.scrolled, .c-nav.c-nav--solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.c-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}
.c-nav__logo {
  font-size: 20px;
  font-weight: 800;
  color: #1A1A2E;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.c-nav__logo img { height: 32px; width: auto; }
.c-nav__logo span { color: #2563EB; }
.c-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-nav__links a {
  color: #555555;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s;
}
.c-nav__links a:hover, .c-nav__links a.active { color: #2563EB; }
.c-nav__cta {
  background: #2563EB !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  margin-left: 8px;
}
.c-nav__cta:hover { background: #1D4ED8 !important; opacity: 1 !important; color: #fff !important; }
.c-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.c-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1A1A2E;
  margin: 5px 0;
  transition: 0.3s;
}

.c-nav--on-dark .c-nav__logo { color: #E2E8F0; }
.c-nav--on-dark .c-nav__links a { color: #C8D6E5; }
.c-nav--on-dark .c-nav__links a:hover { color: #ffffff; }
.c-nav--on-dark .c-nav__toggle span { background: #E2E8F0; }

/* Scrolled state overrides on-dark: restore dark text on white bg */
.c-nav.scrolled.c-nav--on-dark .c-nav__logo { color: #1A1A2E; }
.c-nav.scrolled.c-nav--on-dark .c-nav__links a { color: #555555; }
.c-nav.scrolled.c-nav--on-dark .c-nav__links a:hover,
.c-nav.scrolled.c-nav--on-dark .c-nav__links a.active { color: #2563EB; }
.c-nav.scrolled.c-nav--on-dark .c-nav__toggle span { background: #1A1A2E; }

@media (max-width: 768px) {
  .c-nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 16px;
    border-top: 1px solid #E2E8F0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .c-nav__links.open { display: flex; }
  .c-nav__toggle { display: block; }
  .c-nav__links a { padding: 10px 16px; width: 100%; }
}

/* ===================== BUTTONS ===================== */
.c-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  letter-spacing: 0.01em;
  border: none;
}
.c-btn--primary {
  background: #2563EB;
  color: #ffffff;
}
.c-btn--primary:hover { background: #1D4ED8; color: #ffffff; opacity: 1; }

.c-btn--outline {
  background: transparent;
  color: #2563EB;
  border: 1.5px solid #2563EB;
}
.c-btn--outline:hover { background: rgba(37,99,235,0.06); color: #2563EB; }

.c-btn--outline-light {
  background: transparent;
  color: #E2E8F0;
  border: 1.5px solid #E2E8F0;
}
.c-btn--outline-light:hover { background: rgba(255,255,255,0.10); color: #ffffff; }

.c-btn--white {
  background: #ffffff;
  color: #2563EB;
}
.c-btn--white:hover { background: #E2E8F0; color: #2563EB; opacity: 1; }

.c-btn--pill { border-radius: 50px; }
.c-btn--full { width: 100%; text-align: center; }
.c-btn--sm { padding: 8px 20px; font-size: 14px; }

/* ===================== SECTION HEADERS ===================== */
.c-section-header { text-align: center; margin-bottom: 56px; }
.c-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2563EB;
  margin-bottom: 12px;
}
.c-section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.c-section-desc {
  font-size: 17px;
  color: #555555;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.c-section-header--light .c-section-label { color: #8FABC4; }
.c-section-header--light .c-section-title { color: #E2E8F0; }
.c-section-header--light .c-section-desc { color: #C8D6E5; }

/* ===================== HERO ===================== */
.c-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0A1628;
  color: #E2E8F0;
  padding: 100px 0 80px;
}
.c-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.65) 100%);
  z-index: 1;
}
.c-hero .container { position: relative; z-index: 2; }
.c-hero__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0D9488;
  margin-bottom: 20px;
  background: rgba(13,148,136,0.12);
  padding: 5px 14px;
  border-radius: 50px;
}
.c-hero__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.c-hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #C8D6E5;
  margin-bottom: 36px;
  max-width: 560px;
}
.c-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.c-hero--center { text-align: center; }
.c-hero--center .c-hero__title,
.c-hero--center .c-hero__subtitle { margin-left: auto; margin-right: auto; }
.c-hero--center .c-hero__cta { justify-content: center; }
.c-hero--mini { min-height: 380px; padding: 120px 0 60px; }
.c-hero--mini .c-hero__title { font-size: 38px; }
.c-hero--split { min-height: 80vh; }
.c-hero--split .c-hero__image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.c-hero--light-bg {
  background: #F0F4F8;
  color: #1A1A2E;
}
.c-hero--light-bg .c-hero__title { color: #1A1A2E; }
.c-hero--light-bg .c-hero__subtitle { color: #555555; }

.c-hero .text-center .c-hero__title,
.c-hero .text-center .c-hero__subtitle {
  margin-left: auto;
  margin-right: auto;
}
.c-hero .text-center .c-hero__cta {
  justify-content: center;
}

@media (max-width: 768px) {
  .c-hero { min-height: 70vh; padding: 100px 0 60px; }
  .c-hero__title { font-size: 32px; }
  .c-hero__subtitle { font-size: 16px; }
  .c-hero--mini { min-height: 280px; }
  .c-hero--split .c-hero__image { margin-top: 40px; }
}

/* ===================== STATS ===================== */
.c-stats { padding: 48px 0; }
.c-stats--bar { background: #1E293B; }
.c-stats--cards { background: #F0F4F8; padding: 64px 0; }
.c-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.c-stats__item { padding: 16px 0; }
.c-stats__number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: #0D9488;
  line-height: 1.2;
}
.c-stats__label {
  display: block;
  font-size: 14px;
  color: #C8D6E5;
  margin-top: 8px;
  line-height: 1.4;
}
.c-stats--cards .c-stats__label { color: #555555; }
.c-stats__card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  border: 1px solid #E2E8F0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.c-stats--cards .c-stats__number { color: #2563EB; }
.c-stats__desc {
  font-size: 13px;
  color: #777777;
  margin-top: 8px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .c-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .c-stats__number { font-size: 28px; }
}

/* ===================== FEATURES ===================== */
.c-features { padding: 80px 0; background: #FFFFFF; }
.c-features--alt { background: #F0F4F8; }
.c-features__grid--6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.c-features__grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.c-features__card {
  background: #F0F4F8;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid #E2E8F0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.c-features__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.c-features__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37,99,235,0.10);
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 20px;
  color: #2563EB;
  flex-shrink: 0;
}
.c-features__icon--teal {
  background: rgba(13,148,136,0.10);
  color: #0D9488;
}
.c-features__name {
  font-size: 18px;
  font-weight: 600;
  color: #1A1A2E;
  margin-bottom: 12px;
}
.c-features__text {
  font-size: 15px;
  color: #555555;
  line-height: 1.7;
  margin: 0;
}
.c-features__row { padding: 60px 0; }
.c-features__row + .c-features__row { border-top: 1px solid #E2E8F0; }
.c-features__img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.c-features__row .c-features__icon { margin-bottom: 16px; }
.c-features__row h3 {
  font-size: 26px;
  font-weight: 600;
  color: #1A1A2E;
  margin-bottom: 16px;
  letter-spacing: 0;
}
.c-features__row p {
  font-size: 16px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .c-features__grid--6, .c-features__grid--3 { grid-template-columns: 1fr; }
  .c-section-title { font-size: 28px; }
  .c-features__row .col-md-6 + .col-md-6 { margin-top: 32px; }
}

/* ===================== PROCESS ===================== */
.c-process { padding: 80px 0; background: #F0F4F8; }
.c-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.c-process__step {
  position: relative;
  padding: 32px 24px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
}
.c-process__num {
  display: inline-block;
  font-size: 40px;
  font-weight: 900;
  color: #2563EB;
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}
.c-process__name {
  font-size: 18px;
  font-weight: 600;
  color: #1A1A2E;
  margin-bottom: 12px;
}
.c-process__text {
  font-size: 15px;
  color: #555555;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 992px) {
  .c-process__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .c-process__steps { grid-template-columns: 1fr; }
}

/* ===================== TESTIMONIALS ===================== */
.c-testimonials { padding: 80px 0; background: #0A1628; }
.c-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.c-testimonials__card {
  background: #1E293B;
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid #334155;
}
.c-testimonials__stat {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: #0D9488;
  margin-bottom: 12px;
}
.c-testimonials__source {
  font-size: 15px;
  font-weight: 700;
  color: #E2E8F0;
  margin-bottom: 12px;
}
.c-testimonials__text {
  font-size: 14px;
  color: #C8D6E5;
  line-height: 1.7;
  margin: 0;
}
.c-testimonials__quote {
  background: #1E293B;
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid #334155;
  display: flex;
  flex-direction: column;
}
.c-testimonials__quote-text {
  font-size: 16px;
  color: #C8D6E5;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}
.c-testimonials__quote-text::before { content: '\201C'; }
.c-testimonials__quote-text::after { content: '\201D'; }
.c-testimonials__author { font-size: 14px; font-weight: 600; color: #E2E8F0; }
.c-testimonials__author-role { font-size: 13px; color: #8FABC4; margin-top: 2px; }

@media (max-width: 768px) {
  .c-testimonials__grid { grid-template-columns: 1fr; }
}

/* ===================== CTA ===================== */
.c-cta { background: #0A1628; padding: 80px 0; text-align: center; }
.c-cta__title {
  font-size: 32px;
  font-weight: 700;
  color: #E2E8F0;
  margin-bottom: 16px;
}
.c-cta__desc {
  font-size: 17px;
  color: #C8D6E5;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.c-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.c-cta-card { background: #1E293B; border-radius: 16px; padding: 56px 40px; text-align: center; max-width: 680px; margin: 0 auto; border: 1px solid #334155; }
.c-cta-card .c-cta__title { font-size: 28px; }
.c-cta-card .c-cta__desc { margin-bottom: 32px; }
.c-cta--light { background: #F0F4F8; }
.c-cta--light .c-cta__title { color: #1A1A2E; }
.c-cta--light .c-cta__desc { color: #555555; }

/* ===================== FOOTER ===================== */
.c-footer {
  background: #0A1628;
  padding: 64px 0 0;
  border-top: 1px solid #1E293B;
  color: #8FABC4;
}
.c-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.c-footer__logo {
  font-size: 20px;
  font-weight: 800;
  color: #E2E8F0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.c-footer__logo img { height: 28px; width: auto; }
.c-footer__logo span { color: #2563EB; }
.c-footer__tagline {
  font-size: 14px;
  color: #8FABC4;
  line-height: 1.6;
  margin: 0;
}
.c-footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #E2E8F0;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.c-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-footer__col ul li { margin-bottom: 10px; }
.c-footer__col ul li a {
  color: #8FABC4;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}
.c-footer__col ul li a:hover { color: #E2E8F0; }
.c-footer__contact p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.5;
  color: #8FABC4;
}
.c-footer__contact a { color: #8FABC4; text-decoration: none; }
.c-footer__contact a:hover { color: #E2E8F0; }
.c-footer__contact i {
  color: #2563EB;
  width: 18px;
  font-size: 13px;
  margin-right: 8px;
}
.c-footer__bottom {
  border-top: 1px solid #1E293B;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #475569;
}
.c-footer__legal {
  display: flex;
  gap: 20px;
}
.c-footer__legal a {
  color: #475569;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.c-footer__legal a:hover { color: #8FABC4; }

@media (max-width: 768px) {
  .c-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .c-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ===================== PRICING ===================== */
.c-pricing { padding: 80px 0; background: #FFFFFF; }
.c-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}
.c-pricing__card {
  background: #F0F4F8;
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
}
.c-pricing__card--featured {
  background: #0A1628;
  border-color: #2563EB;
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(37,99,235,0.18);
}
.c-pricing__card--featured .c-pricing__plan { color: #E2E8F0; }
.c-pricing__card--featured .c-pricing__amount { color: #ffffff; }
.c-pricing__card--featured .c-pricing__desc { color: #C8D6E5; }
.c-pricing__card--featured .c-pricing__features li { color: #C8D6E5; border-bottom-color: rgba(255,255,255,0.06); }
.c-pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #2563EB;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.c-pricing__plan {
  font-size: 20px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 16px;
}
.c-pricing__price { margin-bottom: 16px; line-height: 1; }
.c-pricing__amount {
  font-size: 40px;
  font-weight: 800;
  color: #1A1A2E;
}
.c-pricing__period {
  font-size: 16px;
  color: #777777;
  margin-left: 2px;
}
.c-pricing__desc {
  font-size: 14px;
  color: #555555;
  margin-bottom: 24px;
  line-height: 1.6;
}
.c-pricing__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  flex-grow: 1;
}
.c-pricing__features li {
  padding: 8px 0 8px 24px;
  font-size: 14px;
  color: #555555;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: relative;
}
.c-pricing__features li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #0D9488;
  font-size: 12px;
  top: 10px;
}
.c-pricing__card--featured .c-pricing__features li::before { color: #0D9488; }
.c-pricing__toggle { text-align: center; margin-bottom: 40px; }
.c-pricing__toggle .toggle-label {
  font-size: 15px;
  font-weight: 500;
  color: #555555;
  margin: 0 12px;
}
.c-pricing__toggle .toggle-label.active { color: #2563EB; font-weight: 600; }
.c-pricing__annual-note {
  text-align: center;
  font-size: 13px;
  color: #777777;
  margin-top: 20px;
}
.c-pricing__save {
  display: inline-block;
  background: rgba(13,148,136,0.12);
  color: #0D9488;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 50px;
  margin-left: 8px;
}

@media (max-width: 992px) {
  .c-pricing__grid { grid-template-columns: 1fr; max-width: 420px; }
  .c-pricing__card--featured { transform: none; }
}

/* ===================== TEAM ===================== */
.c-team { padding: 80px 0; background: #FFFFFF; }
.c-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.c-team__card {
  background: #F0F4F8;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid #E2E8F0;
  transition: box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-team__card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.c-team__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #E2E8F0;
}
.c-team__name {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 6px;
}
.c-team__role {
  font-size: 14px;
  color: #2563EB;
  font-weight: 500;
  margin-bottom: 14px;
}
.c-team__bio {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .c-team__grid { grid-template-columns: 1fr; max-width: 360px; }
}

/* ===================== CONTACT ===================== */
.c-contact { padding: 80px 0; background: #FFFFFF; }
.c-contact__title {
  font-size: 28px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 8px;
}
.c-contact__subtitle {
  font-size: 16px;
  color: #555555;
  margin-bottom: 32px;
}
.c-contact__form input,
.c-contact__form select,
.c-contact__form textarea {
  width: 100%;
  background: #F0F4F8;
  border: 1px solid #E2E8F0;
  color: #1A1A2E;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  margin-bottom: 18px;
  transition: border-color 0.2s;
  font-family: 'Inter', sans-serif;
}
.c-contact__form input:focus,
.c-contact__form select:focus,
.c-contact__form textarea:focus {
  border-color: #2563EB;
  outline: none;
  background: #ffffff;
}
.c-contact__form input::placeholder,
.c-contact__form textarea::placeholder { color: #777777; }
.c-contact__form select { color: #777777; }
.c-contact__form select:valid { color: #1A1A2E; }
.c-contact__info-title {
  font-size: 20px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 24px;
}
.c-contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 15px;
  color: #555555;
}
.c-contact__info-item i {
  color: #2563EB;
  font-size: 16px;
  margin-top: 2px;
  min-width: 20px;
}
.c-contact__info-item a { color: #555555; text-decoration: none; }
.c-contact__info-item a:hover { color: #2563EB; }
.c-contact__info-item span { line-height: 1.5; }

/* ===================== BLOG GRID ===================== */
.c-blog-grid { padding: 80px 0; background: #FFFFFF; }
.c-blog-grid__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.c-blog-grid__card {
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  color: inherit;
}
.c-blog-grid__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.09);
  color: inherit;
}
.c-blog-grid__thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.c-blog-grid__body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.c-blog-grid__date {
  font-size: 12px;
  color: #777777;
  margin-bottom: 8px;
  font-weight: 500;
}
.c-blog-grid__title {
  font-size: 17px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 10px;
  line-height: 1.4;
}
.c-blog-grid__title a { color: inherit; text-decoration: none; }
.c-blog-grid__title a:hover { color: #2563EB; }
.c-blog-grid__excerpt {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
  flex-grow: 1;
  margin: 0;
}
.c-blog-grid__read-more {
  font-size: 13px;
  font-weight: 600;
  color: #2563EB;
  margin-top: auto;
  padding-top: 16px;
  text-decoration: none;
}
.c-blog-grid__read-more:hover { color: #1D4ED8; }

@media (max-width: 768px) { .c-blog-grid__list { grid-template-columns: 1fr; } }

/* ===================== FAQ ===================== */
.c-faq { padding: 80px 0; background: #F0F4F8; }
.c-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.c-faq__item {
  background: #ffffff;
  border-radius: 10px;
  padding: 24px 28px;
  border: 1px solid #E2E8F0;
}
.c-faq__question {
  font-size: 16px;
  font-weight: 600;
  color: #1A1A2E;
  margin-bottom: 10px;
}
.c-faq__answer {
  font-size: 14px;
  color: #555555;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) { .c-faq__grid { grid-template-columns: 1fr; } }

/* ===================== ABOUT STORY ===================== */
.c-about-story { padding: 80px 0; background: #FFFFFF; }
.c-about-story h2 {
  font-size: 32px;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.c-about-story p {
  font-size: 17px;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 18px;
}
.c-about-story__img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.c-about-story__col { padding-right: 40px; }

/* ===================== PRODUCT SPECS TABLE ===================== */
.c-specs { padding: 80px 0; background: #FFFFFF; }
.c-specs__table { width: 100%; border-collapse: collapse; }
.c-specs__table th {
  text-align: left;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 700;
  color: #1A1A2E;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #F0F4F8;
  border-bottom: 2px solid #E2E8F0;
}
.c-specs__table td {
  padding: 14px 20px;
  font-size: 14px;
  color: #555555;
  border-bottom: 1px solid #E2E8F0;
}
.c-specs__table tr:last-child td { border-bottom: none; }
.c-specs__check { color: #0D9488; }

/* ===================== COOKIE BANNER ===================== */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0A1628;
  padding: 18px 28px;
  z-index: 9999;
  border-top: 1px solid #1E293B;
  font-size: 14px;
  color: #C8D6E5;
}
#cookie-banner .cookie-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
#cookie-banner p { margin: 0; line-height: 1.6; color: #C8D6E5; }
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  align-items: center;
}
.cookie-buttons button {
  padding: 8px 20px;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
#cookie-accept { background: #2563EB; color: #fff; }
#cookie-accept:hover { background: #1D4ED8; }
#cookie-decline { background: transparent; color: #8FABC4; border: 1px solid #334155; }
#cookie-decline:hover { color: #E2E8F0; }

@media (max-width: 600px) {
  #cookie-banner .cookie-inner { flex-direction: column; }
}

/* ===================== UTILITY ===================== */
.text-accent { color: #2563EB; }
.text-teal { color: #0D9488; }
.text-muted-custom { color: #777777; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.mt-auto { margin-top: auto; }
.container { max-width: 1140px; }
