/* ============================================
   36 Pixels - Modern Static Site
   ============================================ */

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

:root {
  --navy: #0f1629;
  --navy-light: #1a2340;
  --red: #d6293e;
  --red-hover: #bf1f33;
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #f1f3f7;
  --gray-200: #e2e6ee;
  --gray-400: #9ca3af;
  --gray-600: #6b7280;
  --gray-800: #1f2937;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
  --section-pad: 100px 0;
  --transition: 0.3s ease;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--gray-800);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul, ol { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.15rem; }

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title { margin-bottom: 20px; }

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 620px;
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-main);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214, 41, 62, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-arrow::after {
  content: '\2192';
  transition: transform var(--transition);
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  height: 44px;
  width: auto;
}

.navbar.scrolled .navbar-logo {
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-phone {
  font-weight: 700;
  color: var(--white) !important;
  font-size: 0.9rem !important;
  background: var(--red);
  padding: 10px 20px !important;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-phone:hover {
  background: var(--red-hover) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(214, 41, 62, 0.3);
}

.nav-phone::after { display: none !important; }

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-100) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(214,41,62,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  text-align: center;
  position: relative;
}

.hero h1 {
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 span { color: var(--red); }

.hero p {
  font-size: 1.15rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: var(--section-pad);
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.service-icon.crm { background: #ede9fe; color: #7c3aed; }
.service-icon.seo { background: #dbeafe; color: #2563eb; }
.service-icon.ppc { background: #fef3c7; color: #d97706; }
.service-icon.web { background: #fce4ec; color: #e91e63; }
.service-icon.social { background: #e0f2f1; color: #009688; }
.service-icon.email { background: #fff3e0; color: #f57c00; }

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================
   FUNNEL / PROCESS SECTION
   ============================================ */
.process-section {
  padding: var(--section-pad);
  background: var(--gray-50);
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.process-step:last-child { margin-bottom: 0; }

.process-step:nth-child(even) .process-content { order: 2; }
.process-step:nth-child(even) .process-visual { order: 1; }

.process-number {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 16px;
}

.process-number span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.85rem;
  letter-spacing: 0;
}

.process-content h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.process-content p {
  color: var(--gray-600);
  margin-bottom: 28px;
  line-height: 1.8;
}

.process-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 300px;
}

.process-img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
  padding: var(--section-pad);
}

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

.value-card {
  text-align: center;
  padding: 40px 28px;
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 1.8rem;
}

.value-icon.creativity { background: #fce4ec; }
.value-icon.collaboration { background: #e3f2fd; }
.value-icon.accountability { background: #e8f5e9; }

.value-card h3 {
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */
.testimonial-section {
  padding: var(--section-pad);
  background: var(--navy);
  color: var(--white);
}

.testimonial-section .container {
  text-align: center;
  max-width: 800px;
}

.testimonial-quote {
  font-size: 1.25rem;
  line-height: 1.9;
  font-style: italic;
  opacity: 0.9;
  margin-bottom: 32px;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 4rem;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--red);
  font-style: normal;
  line-height: 1;
  opacity: 0.6;
}

.testimonial-author {
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-role {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-top: 4px;
}

/* ============================================
   BLOG PREVIEW
   ============================================ */
.blog-section {
  padding: var(--section-pad);
  background: var(--gray-50);
}

.blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

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

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

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

.blog-card-img {
  height: 200px;
  background: var(--gray-200);
  background-size: cover;
  background-position: center;
}

.blog-card-body {
  padding: 24px;
}

.blog-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-body .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--red);
}

.blog-card-body .read-more:hover {
  gap: 10px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: var(--section-pad);
}

.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 20px;
  padding: 80px 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(214,41,62,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-box h2 {
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
}

.cta-box p {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
  position: relative;
}

.cta-box .btn { position: relative; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 24px;
}

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

.footer-brand p {
  font-size: 0.92rem;
  opacity: 0.7;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 340px;
}

.footer-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer h4 {
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 10px;
  transition: all var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--red);
  transform: translateX(4px);
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 12px;
  transition: opacity var(--transition);
}

.footer-contact a:hover { opacity: 1; }

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  opacity: 0.7;
  transition: all var(--transition);
  font-size: 0.85rem;
}

.footer-social a:hover {
  opacity: 1;
  border-color: var(--red);
  background: var(--red);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  opacity: 0.5;
}

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

/* ============================================
   PRICING PAGE
   ============================================ */
.page-hero {
  padding: 160px 0 60px;
  background: var(--gray-50);
  text-align: center;
}

.page-hero p {
  color: var(--gray-600);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 16px auto 0;
}

.pricing-section {
  padding: 60px 0 var(--section-pad);
}

.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  transition: all var(--transition);
}

.pricing-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-lg);
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--navy);
  margin: 16px 0 8px;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-600);
}

.pricing-card .plan-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-card .plan-desc {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.pricing-features {
  text-align: left;
  margin-bottom: 36px;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.pricing-features li::before {
  content: '\2713';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-details {
  padding: 60px 0 0;
}

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

.detail-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
}

.detail-card h4 {
  margin-bottom: 16px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-card ul {
  list-style: none;
}

.detail-card li {
  font-size: 0.88rem;
  color: var(--gray-600);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.detail-card li::before {
  content: '\2022';
  color: var(--red);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-section {
  padding: 60px 0;
  padding-bottom: 100px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-main);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--red); }

.faq-question .icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition);
}

.faq-item.open .faq-question .icon {
  background: var(--red);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding-bottom: 24px;
}

.faq-answer-inner {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.faq-answer-inner ol {
  list-style: decimal;
  padding-left: 20px;
  margin-top: 12px;
}

.faq-answer-inner ol li {
  margin-bottom: 8px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: 60px 0 100px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 40px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: var(--font-main);
  transition: border-color var(--transition);
  background: var(--gray-50);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-consent {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-top: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-consent input[type="checkbox"] {
  margin-top: 3px;
  width: auto;
  flex-shrink: 0;
}

.contact-info {
  padding-top: 20px;
}

.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--gray-600);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-info-item h4 {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.contact-info-item a,
.contact-info-item p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-info-item a:hover { color: var(--red); }

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding-bottom: 80px;
}

/* ============================================
   BLOG POST ARTICLE
   ============================================ */
.blog-post-section {
  padding: 60px 0 100px;
}

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

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

.blog-post-date {
  font-size: 0.88rem;
  color: var(--gray-600);
}

.blog-post-category {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--red);
  background: rgba(214, 41, 62, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
}

.blog-post-article h2 {
  font-size: 1.6rem;
  margin: 48px 0 16px;
}

.blog-post-article h3 {
  font-size: 1.25rem;
  margin: 36px 0 12px;
}

.blog-post-article h4 {
  font-size: 1.05rem;
  margin: 28px 0 10px;
}

.blog-post-article p {
  font-size: 1rem;
  color: var(--gray-800);
  line-height: 1.9;
  margin-bottom: 20px;
}

.blog-post-article ul,
.blog-post-article ol {
  margin: 16px 0 24px;
  padding-left: 24px;
}

.blog-post-article ul { list-style: disc; }
.blog-post-article ol { list-style: decimal; }

.blog-post-article li {
  font-size: 0.95rem;
  color: var(--gray-800);
  line-height: 1.8;
  margin-bottom: 8px;
}

.blog-post-article li strong {
  color: var(--navy);
}

.blog-post-article blockquote {
  border-left: 3px solid var(--red);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--gray-50);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--gray-600);
}

.blog-post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 32px;
}

.blog-post-back:hover {
  gap: 12px;
}

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

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

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step { grid-template-columns: 1fr; gap: 40px; }
  .process-step:nth-child(even) .process-content { order: 1; }
  .process-step:nth-child(even) .process-visual { order: 2; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid, .blog-page-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 70px 0; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    box-shadow: var(--shadow-lg);
    transition: right var(--transition);
    z-index: 999;
  }

  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }

  .nav-toggle { display: flex; z-index: 1001; }

  .hero { padding: 130px 0 60px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .hero-stat .number { font-size: 2rem; }

  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .blog-grid, .blog-page-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .cta-box { padding: 50px 28px; }
  .blog-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .page-hero { padding: 130px 0 40px; }
  .form-row { grid-template-columns: 1fr; }

  .pricing-card { padding: 36px 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.8rem; }
  .pricing-card .price { font-size: 2.4rem; }
}

/* Overlay for mobile menu */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
}

.nav-overlay.open { display: block; }
