/* ===== CSS Variables ===== */
:root {
  --dark: #212B2B;
  --red: #CC2E2E;
  --yellow: #FAC433;
  --yellow-light: #FAE8BD;
  --cream: #FAF5F0;
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-900: #111827;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --transition: 0.2s ease;
}

/* ===== Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: #B22727;
  border-color: #B22727;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(204, 46, 46, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-1px);
}

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

.btn-xl { padding: 20px 52px; font-size: 18px; border-radius: var(--radius); }

.btn-block { width: 100%; }

.btn-text {
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  transition: color var(--transition);
}

.btn-text:hover { color: var(--red); }

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-svg {
  height: 48px;
  width: auto;
}

.nav-logo-svg {
  transition: filter 0.3s ease;
}

.nav-logo:hover .nav-logo-svg {
  filter: brightness(1.15) drop-shadow(0 0 6px rgba(250, 196, 51, 0.5));
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--dark); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== Hero ===== */
.hero {
  padding: 140px 0 80px;
  background: var(--cream);
  overflow: hidden;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content {
  text-align: center;
  max-width: 720px;
  margin-bottom: 56px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.highlight {
  color: var(--red);
}

.hero-subtitle {
  font-size: 19px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.hero-note {
  font-size: 14px;
  color: var(--gray-400);
}

/* Hero Screenshot */
.hero-visual {
  width: 100%;
  max-width: 1100px;
  perspective: 1200px;
}

.hero-screenshot {
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.15),
    0 0 0 1px rgba(0,0,0,0.06);
  transform: rotateX(2deg);
  transition: transform 0.4s ease;
}

.hero-screenshot:hover {
  transform: rotateX(0deg);
}

.hero-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Trusted By ===== */
.trusted-by {
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-200);
}

.trusted-label {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.trusted-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 56px;
  flex-wrap: wrap;
}

.trusted-logo-item {
  display: flex;
  align-items: center;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity var(--transition), filter var(--transition);
  filter: grayscale(80%);
}

.trusted-logo-item:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.trusted-logo-item img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

/* ===== Section Headers ===== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== Features ===== */
.features {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--dark);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ===== How It Works ===== */
.how-it-works {
  padding: 100px 0;
  background: var(--dark);
  color: var(--white);
}

.how-it-works .section-tag { color: var(--yellow); }
.how-it-works .section-header p { color: var(--gray-400); }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dark);
  font-size: 22px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.6;
}

.step-connector {
  width: 80px;
  height: 2px;
  background: var(--gray-600);
  margin-top: 28px;
  flex-shrink: 0;
}

/* ===== Showcase ===== */
.showcase {
  padding: 100px 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.showcase-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-content h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.showcase-content p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
}

.showcase-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.showcase-list li {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.showcase-list li::before {
  content: '';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23212B2B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
}

/* ===== Metrics ===== */
.metrics {
  padding: 100px 0;
  background: var(--cream);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.metric-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--gray-200);
}

.metric-value {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.metric-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ===== Solutions ===== */
.solutions {
  padding: 100px 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.solution-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.solution-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.solution-image {
  height: 200px;
  overflow: hidden;
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.solution-card:hover .solution-image img {
  transform: scale(1.08);
}

.solution-card h3 {
  font-size: 18px;
  font-weight: 700;
  padding: 20px 24px 8px;
}

.solution-card p {
  font-size: 14px;
  color: var(--gray-500);
  padding: 0 24px 24px;
  line-height: 1.5;
}

/* ===== Testimonial ===== */
.testimonial {
  padding: 100px 0;
  background: var(--cream);
}

.testimonial-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 420px;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card {
  text-align: left;
}

.testimonial-card blockquote p {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--dark);
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-author strong {
  display: block;
  font-size: 16px;
  text-align: left;
}

.testimonial-author span {
  font-size: 14px;
  color: var(--gray-500);
}

/* ===== Pricing ===== */
.pricing {
  padding: 100px 0;
  background: var(--gray-50);
}

.pricing-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--yellow);
  box-shadow: var(--shadow-lg);
}

.pricing-left {
  padding: 56px 48px;
  text-align: center;
  border-right: 1px solid var(--gray-200);
}

.pricing-right {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-right h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}

.pricing-right .plan-features {
  margin-bottom: 0;
}

.free-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 20px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-left .plan-price {
  margin-bottom: 16px;
}

.pricing-left .price-amount {
  font-size: 88px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.pricing-left .price-period {
  font-size: 22px;
  color: var(--gray-500);
}

.free-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0 36px;
  padding: 24px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.free-highlight-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.free-highlight-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--red);
}

.free-highlight-label {
  font-size: 13px;
  color: var(--gray-500);
  font-weight: 500;
}

.plan-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--gray-400);
}

.plan-desc {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 1.5;
}

.plan-features {
  margin-bottom: 32px;
}

.plan-features li {
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cream);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23CC2E2E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 100px 0;
  background: var(--yellow);
}

.cta-content {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-content > p {
  font-size: 18px;
  color: var(--dark);
  opacity: 0.8;
  margin-bottom: 36px;
  line-height: 1.6;
}

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

.form-row {
  display: flex;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
}

.form-row input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(33, 43, 43, 0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  background: var(--white);
  transition: border-color var(--transition);
}

.form-row input:focus {
  outline: none;
  border-color: var(--dark);
}

.form-row input::placeholder { color: var(--gray-400); }

.form-row .btn { flex-shrink: 0; }

.cta-note {
  font-size: 14px;
  color: var(--dark);
  opacity: 0.6;
}

/* ===== Footer ===== */
.footer {
  padding: 64px 0 32px;
  background: var(--dark);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.6;
  max-width: 280px;
}

.footer-brand img {
  height: 44px;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  color: var(--gray-400);
}

.footer-col li { margin-bottom: 12px; }

.footer-col a {
  font-size: 15px;
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  font-size: 14px;
  color: var(--gray-500);
}

/* ===== Legal Pages ===== */
.legal-page {
  padding: 120px 0 80px;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
  list-style: disc;
}

.legal-content ul li {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--red);
  text-decoration: underline;
}

.footer-bottom a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ===== About Page ===== */
.about-hero {
  padding: 140px 0 80px;
  background: var(--cream);
}

.about-hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.about-hero-content .hero-subtitle {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-story {
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-mission {
  padding: 100px 0;
  background: var(--gray-50);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.value-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--dark);
}

.value-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
}

.about-stats {
  padding: 80px 0;
  background: var(--dark);
  color: var(--white);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 15px;
  color: var(--gray-400);
}

.about-cta {
  padding: 100px 0;
  background: var(--cream);
}

.about-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.about-cta-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.about-cta-content p {
  font-size: 18px;
  color: var(--gray-500);
  margin-bottom: 32px;
}

/* ===== Blog Page ===== */
.blog-hero {
  padding: 140px 0 60px;
  background: var(--cream);
}

.blog-hero h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.blog-posts {
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.blog-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-card-featured {
  grid-template-columns: 1.2fr 1fr;
}

.blog-card-image {
  display: block;
  height: 100%;
  min-height: 280px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 36px 40px 36px 0;
}

.blog-card-featured .blog-card-body {
  padding: 48px 48px 48px 0;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.blog-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--cream);
  padding: 4px 12px;
  border-radius: 4px;
}

.blog-meta time {
  font-size: 14px;
  color: var(--gray-400);
}

.blog-card h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-card-featured h2 {
  font-size: 28px;
}

.blog-card h2 a {
  transition: color var(--transition);
}

.blog-card h2 a:hover {
  color: var(--red);
}

.blog-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-read-more {
  font-size: 15px;
  font-weight: 600;
  color: var(--red);
  transition: color var(--transition);
}

.blog-read-more:hover {
  color: #B22727;
}

.blog-cta {
  padding: 80px 0;
  background: var(--dark);
}

.blog-cta-content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  color: var(--white);
}

.blog-cta-content h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}

.blog-cta-content p {
  font-size: 17px;
  color: var(--gray-400);
  margin-bottom: 32px;
}

/* ===== Blog Article ===== */
.blog-article {
  padding-bottom: 80px;
}

.article-header {
  padding: 140px 0 40px;
  background: var(--cream);
}

.article-header-content {
  max-width: 780px;
  margin: 0 auto;
}

.back-to-blog {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 24px;
  transition: color var(--transition);
}

.back-to-blog:hover {
  color: var(--red);
}

.article-header h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.article-excerpt {
  font-size: 19px;
  color: var(--gray-500);
  line-height: 1.6;
}

.article-hero-image {
  margin-bottom: 48px;
}

.article-hero-image img {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  display: block;
}

.article-content {
  max-width: 780px;
  margin: 0 auto;
}

.article-content h2 {
  font-size: 26px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.article-content p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.article-content li {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 8px;
}

.article-cta {
  margin-top: 56px;
  padding: 48px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  text-align: center;
}

.article-cta h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.article-cta p {
  font-size: 16px;
  color: var(--gray-500);
  margin-bottom: 24px;
}

/* ===== Contact Page ===== */
.contact-hero {
  padding: 140px 0 60px;
  background: var(--cream);
}

.contact-hero h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.contact-section {
  padding: 80px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form-wrap h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  padding: 32px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.contact-info-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-sm);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--dark);
}

.contact-info-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-info-card p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.contact-info-card a {
  font-size: 15px;
  font-weight: 600;
  color: var(--red);
  transition: color var(--transition);
}

.contact-info-card a:hover {
  color: #B22727;
}

.contact-info-card span {
  font-size: 14px;
  color: var(--gray-400);
}

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.success-icon {
  margin-bottom: 20px;
}

.form-success h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-success p {
  font-size: 16px;
  color: var(--gray-500);
}

/* ===== Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 48px; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }

  .metrics-grid { grid-template-columns: repeat(2, 1fr); }

  .solutions-grid { grid-template-columns: repeat(2, 1fr); }

  .showcase-grid { grid-template-columns: 1fr; gap: 40px; }

  .testimonial-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .testimonial-image { height: 300px; }
  .testimonial-card { text-align: center; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-links.open, .nav-actions.open { display: flex; }

  .nav-toggle { display: flex; }

  .nav-links.open {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
  }

  .nav-actions.open {
    position: absolute;
    top: calc(72px + var(--nav-height, 200px));
    left: 0;
    right: 0;
    background: var(--white);
    padding: 0 24px 24px;
    gap: 12px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
  }

  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 17px; }
  .hero-content { margin-bottom: 36px; }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .section-header h2 { font-size: 32px; }

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

  .steps {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .step-connector {
    width: 2px;
    height: 40px;
    margin: 0;
  }

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

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

  .pricing-two-col { grid-template-columns: 1fr; }
  .pricing-left { border-right: none; border-bottom: 1px solid var(--gray-200); padding: 40px 24px; }
  .pricing-right { padding: 40px 24px; }
  .pricing-left .price-amount { font-size: 64px; }

  .form-row {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .trusted-logos { gap: 24px; }

  /* About responsive */
  .about-hero-content h1 { font-size: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .about-cta-content h2 { font-size: 28px; }

  /* Blog responsive */
  .blog-hero h1 { font-size: 32px; }
  .blog-card { grid-template-columns: 1fr; }
  .blog-card-featured { grid-template-columns: 1fr; }
  .blog-card-image { min-height: 200px; }
  .blog-card-body { padding: 24px; }
  .blog-card-featured .blog-card-body { padding: 24px; }
  .blog-card-featured h2 { font-size: 22px; }

  /* Article responsive */
  .article-header h1 { font-size: 28px; }
  .article-excerpt { font-size: 16px; }
  .article-content h2 { font-size: 22px; }
  .article-content p { font-size: 16px; }
  .article-cta { padding: 32px 24px; }

  /* Contact responsive */
  .contact-hero h1 { font-size: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
