/* 
  Captem Live - Modern Agence Design System (Inspired by captemlive.com)
  Colors:
  - Deep Navy: #00102E / #0a1936
  - Live Red: #d65050 / #e63950
  - Captain Green: #84cc16
  - Light Background: #f8fafc / #ffffff
  - Text Navy: #00102E / #1e293b
  - Text Muted: #475569 / #64748b
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-alt: #f1f5f9;
  --bg-navy-dark: #00102E;
  --bg-navy-surface: #0a1936;
  --bg-glass-navy: rgba(0, 16, 46, 0.92);
  
  --border-light: #e2e8f0;
  --border-dark: rgba(255, 255, 255, 0.12);
  --border-glow: rgba(214, 80, 80, 0.3);

  --primary-red: #d65050;
  --primary-red-hover: #b73d3d;
  --primary-red-glow: rgba(214, 80, 80, 0.35);

  --primary-green: #84cc16;
  --primary-green-hover: #65a30d;
  --primary-green-glow: rgba(132, 204, 22, 0.35);

  --navy-accent: #1e293b;
  
  --text-main: #00102E;
  --text-muted: #475569;
  --text-light: #f8fafc;
  --text-light-muted: #94a3b8;

  --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 16, 46, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 16, 46, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 16, 46, 0.12);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button, input, select, textarea {
  font-family: inherit;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-red) 0%, #b73d3d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-navy {
  background: linear-gradient(135deg, var(--bg-navy-dark) 0%, #1e3a8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-text-red {
  background: linear-gradient(135deg, var(--primary-red) 0%, #b73d3d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.825rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(214, 80, 80, 0.1);
  color: var(--primary-red);
  border: 1px solid rgba(214, 80, 80, 0.25);
}

.badge-green {
  background: rgba(132, 204, 22, 0.1);
  color: #65a30d;
  border-color: rgba(132, 204, 22, 0.3);
}

.badge-live {
  background: rgba(214, 80, 80, 0.1);
  color: var(--primary-red);
  border: 1px solid rgba(214, 80, 80, 0.3);
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary-red);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-red);
  animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(214, 80, 80, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(214, 80, 80, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(214, 80, 80, 0); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.875rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-hover) 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--primary-red-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(214, 80, 80, 0.5);
  background: linear-gradient(135deg, #e06060 0%, var(--primary-red) 100%);
}

.btn-secondary {
  background: #ffffff;
  color: var(--bg-navy-dark);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-page);
  border-color: var(--bg-navy-dark);
  transform: translateY(-2px);
}

.btn-green {
  background: linear-gradient(135deg, var(--primary-green) 0%, #65a30d 100%);
  color: var(--bg-navy-dark);
  box-shadow: 0 4px 20px var(--primary-green-glow);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(132, 204, 22, 0.5);
}

/* Header & Nav */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.5rem 0;
  transition: all var(--transition-normal);
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 16, 46, 0.06);
}

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

.logo-link {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent;
  box-shadow: none;
  transition: transform var(--transition-fast);
}

.logo-link:hover {
  transform: translateY(-2px);
}

.logo-link img {
  height: 105px;
  max-height: 110px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-link {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--bg-navy-dark);
  transition: color var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary-red);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 160px 0 110px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  color: var(--bg-navy-dark);
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.hero-glow {
  position: absolute;
  top: -10%;
  right: 10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(214, 80, 80, 0.09) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-family: var(--font-title);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 1.25rem 0 1.25rem 0;
  color: var(--bg-navy-dark);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 560px;
  line-height: 1.6;
}

.hero-feature-tags {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.925rem;
  font-weight: 700;
  color: var(--bg-navy-dark);
  background: rgba(0, 16, 46, 0.04);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
}

.hero-card-white {
  background: #ffffff;
  padding: 3rem 2.5rem;
  text-align: center;
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 60px rgba(0, 16, 46, 0.12);
  border: 1px solid var(--border-light);
  position: relative;
}

.hero-frame img {
  max-height: 260px;
  margin: 0 auto 1.5rem auto;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.section-title {
  font-family: var(--font-title);
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0.75rem 0;
  color: var(--bg-navy-dark);
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Pricing Grid Section */
.pricing-section {
  padding: 100px 0;
  background-color: var(--bg-page);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-md);
}

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

.pricing-card.featured {
  border: 2px solid var(--primary-red);
  background: #ffffff;
}

.card-ribbon {
  position: absolute;
  top: -16px;
  right: 24px;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-hover) 100%);
  color: #ffffff;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 15px var(--primary-red-glow);
}

.pricing-header h3 {
  font-family: var(--font-title);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--bg-navy-dark);
  margin-bottom: 0.5rem;
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  min-height: 48px;
}

.price-box {
  margin: 1.5rem 0;
  padding: 1.25rem 0;
  border-top: 1px dashed var(--border-light);
  border-bottom: 1px dashed var(--border-light);
}

.price-amount {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 900;
  color: var(--bg-navy-dark);
  line-height: 1;
}

.pricing-card.featured .price-amount {
  color: var(--primary-red);
}

.price-unit {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(132, 204, 22, 0.15);
  color: #65a30d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.cross-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Portfolio Video Section */
.portfolio-section {
  padding: 100px 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.video-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}

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

.video-thumbnail-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  cursor: pointer;
}

.video-thumbnail-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.video-card:hover .video-thumbnail-box img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.video-card:hover .play-overlay {
  background: rgba(0, 0, 0, 0.15);
}

.play-btn-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-red);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  padding-left: 4px;
  box-shadow: 0 0 25px var(--primary-red-glow);
  transition: transform var(--transition-fast);
}

.video-card:hover .play-btn-circle {
  transform: scale(1.15);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.video-card-body h3 {
  font-family: var(--font-title);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bg-navy-dark);
}

.video-card-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

/* Calculator Box */
.calculator-box {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 3rem;
  margin-top: 4rem;
  box-shadow: var(--shadow-lg);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--bg-navy-dark);
}

.select-custom, .input-custom {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--bg-page);
  color: var(--bg-navy-dark);
  font-size: 0.95rem;
  font-weight: 600;
  outline: none;
  transition: all var(--transition-fast);
}

.select-custom:focus, .input-custom:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px var(--primary-red-glow);
  background: #ffffff;
}

.calc-summary {
  background: var(--bg-navy-dark);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 2.25rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.calc-total-title {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  color: var(--text-light-muted);
  font-weight: 700;
}

.calc-total-price {
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary-green);
  margin: 0.5rem 0;
}

/* Steps Timeline Section */
.steps-section {
  padding: 100px 0;
  background-color: var(--bg-page);
}

.steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step-number {
  font-family: var(--font-title);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(0, 16, 46, 0.1);
  position: absolute;
  top: 1rem;
  right: 1.25rem;
}

.step-card h4 {
  font-family: var(--font-title);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bg-navy-dark);
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Features Grid */
.features-section {
  padding: 100px 0;
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
}

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

.feature-card {
  background: var(--bg-page);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 2rem;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: var(--primary-red);
  box-shadow: var(--shadow-md);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: rgba(214, 80, 80, 0.1);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--bg-navy-dark);
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: var(--bg-page);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-navy-dark);
  text-align: left;
  cursor: pointer;
}

.faq-toggle-icon {
  font-size: 0.8rem;
  transition: transform var(--transition-fast);
  color: var(--text-muted);
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  color: var(--primary-red);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  display: none;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-navy-dark);
  color: #ffffff;
}

.contact-section .section-title {
  color: #ffffff;
}

.contact-section .section-desc {
  color: var(--text-light-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-card {
  background: var(--bg-navy-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(214, 80, 80, 0.2);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item-content h4 {
  font-family: var(--font-title);
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.contact-item-content p, .contact-item-content a {
  color: var(--text-light-muted);
  font-size: 0.95rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
}

.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: var(--primary-red);
  background: rgba(255, 255, 255, 0.08);
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #000b1e 0%, #00050f 100%);
  color: var(--text-light-muted);
  padding: 4.5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.925rem;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(214, 80, 80, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.footer-cta-strip {
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  margin-bottom: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.footer-cta-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.footer-cta-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.25fr 1.25fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand-logo {
  height: 125px;
  max-height: 130px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.footer-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-trust-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  font-weight: 600;
}

.footer-col h4 {
  font-family: var(--font-title);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 24px;
  height: 2px;
  background: var(--primary-red);
  border-radius: 2px;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
}

.footer-links-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: #ffffff;
  text-decoration: none;
  transition: all var(--transition-normal);
}

.footer-contact-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(214, 80, 80, 0.4);
  transform: translateY(-2px);
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(214, 80, 80, 0.15);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-contact-info label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
  font-weight: 700;
}

.footer-contact-info span {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.btn-back-to-top {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: all var(--transition-fast);
}

.btn-back-to-top:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-cta-strip {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid, .pricing-grid, .portfolio-grid, .calc-grid, .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 640px) {
  .steps-timeline, .features-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }
}
