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

:root {
  --primary: #e63946;
  --primary-dark: #c1121f;
  --secondary: #1d3557;
  --dark: #0d1b2a;
  --light: #f1faee;
  --gray: #457b9d;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  --radius: 10px;
  --icon-stroke: 1.9;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
  background: var(--white);
}

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

ul {
  list-style: none;
}

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

.svg-icon {
  width: 1.1em;
  height: 1.1em;
  display: inline-block;
  vertical-align: -0.16em;
  fill: none;
  stroke: currentColor;
  stroke-width: var(--icon-stroke);
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.svg-icon.solid {
  fill: currentColor;
  stroke: none;
}

.icon-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-inline .svg-icon {
  width: 1rem;
  height: 1rem;
}

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

/* ===== HEADER / NAVBAR ===== */
.header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-image {
  display: block;
  width: 247px;
  max-width: min(247px, 42vw);
  height: auto;
}

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

.nav-links a {
  color: var(--light);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
  position: relative;
}

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

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

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

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: scale(1.05);
}

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

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

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--secondary);
  color: var(--light);
  padding: 8px 0;
  font-size: 0.85rem;
}

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

.top-bar-left {
  display: flex;
  gap: 25px;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-right {
  display: flex;
  gap: 15px;
}

.top-bar-right a {
  color: var(--light);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.3s;
}

.top-bar-right a:hover {
  color: var(--primary);
}

/* ===== HERO SECTION ===== */
.hero {
  background:
    radial-gradient(circle at top, rgba(230, 57, 70, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(13, 27, 42, 0.94), rgba(29, 53, 87, 0.86)),
    url('../504384109_18519900022063058_7963632403111203529_n-VMInMpSwx1vRwLOh.jpg') center 74% / cover no-repeat;
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero,
.page-hero,
.cta-section {
  position: relative;
  overflow: hidden;
}

.hero::before,
.page-hero::before,
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 78%);
  pointer-events: none;
}

.hero .container,
.page-hero .container,
.cta-section .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-accent {
  color: #ff4351;
}

.hero p {
  font-size: 1.25rem;
  max-width: 650px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

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

.top-bar {
  display: none;
}

.header {
  background: #0f1e2e;
  box-shadow: none;
}

.header .container {
  max-width: 1380px;
  padding: 14px 44px;
  gap: 28px;
}

.logo {
  flex: 0 0 auto;
}

.logo-image {
  width: 248px;
  max-width: 248px;
}

.header nav {
  flex: 1;
}

.nav-links {
  justify-content: center;
  gap: 42px;
}

.nav-links a {
  color: #ff4351;
  font-weight: 700;
  font-size: 0.96rem;
}

.nav-links a::after {
  background: #ff4351;
}

.nav-cta {
  margin-left: auto;
  min-width: 126px;
  text-align: center;
  border-radius: 0;
  padding: 15px 28px;
  background: #ef3a49 !important;
}

.homepage .hero {
  min-height: 70vh;
  padding: 108px 0 96px;
  text-align: left;
  background:
    linear-gradient(0deg, rgba(10, 15, 25, 0.7), rgba(10, 15, 25, 0.7)),
    linear-gradient(135deg, rgba(13, 27, 42, 0.6), rgba(29, 53, 87, 0.35)),
    url('../504384109_18519900022063058_7963632403111203529_n-VMInMpSwx1vRwLOh.jpg') center center / cover no-repeat;
}

.homepage .hero::before {
  display: none;
}

.homepage .hero .container {
  max-width: 1280px;
  padding: 0 44px 0 92px;
}

.homepage .hero .eyebrow {
  display: none;
}

.homepage .hero h1 {
  max-width: 980px;
  font-size: clamp(3.55rem, 5.8vw, 5rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.homepage .hero p {
  max-width: 700px;
  margin: 0 0 30px;
  font-size: 1.03rem;
  line-height: 1.45;
  opacity: 0.95;
}

.homepage .hero-buttons {
  justify-content: flex-start;
  gap: 16px;
}

.homepage .hero .btn {
  min-width: 198px;
  text-align: center;
  padding: 15px 32px;
  border-radius: 999px;
}

.homepage .hero .btn-primary {
  background: #ef3a49;
}

.homepage .hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.03);
}

.homepage .hero-pills {
  display: none;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

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

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

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

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

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--dark);
  transform: translateY(-2px);
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-gray {
  background: #f8f9fa;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title.left-align {
  text-align: left;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 15px;
}

.section-dark .section-title h2 {
  color: var(--white);
}

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

.section-title .underline {
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-title.left-align p {
  margin: 0;
}

.section-title.left-align .underline {
  margin-left: 0;
}

/* ===== FEATURES / STATS ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 20px;
  background: rgba(230, 57, 70, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon .svg-icon {
  width: 34px;
  height: 34px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.feature-card h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.feature-card p {
  color: #666;
  font-size: 0.95rem;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
  color: var(--primary);
  font-weight: 800;
}

.stat-item p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-top: 5px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.service-card-header {
  background: var(--secondary);
  padding: 30px;
  text-align: center;
  color: var(--white);
  position: relative;
}

.service-card-header .service-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-header .service-icon .svg-icon {
  width: 30px;
  height: 30px;
}

.service-card-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
}

.service-card-body {
  padding: 25px 30px 30px;
}

.service-card-body p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.service-card-body ul {
  margin-bottom: 20px;
}

.service-card-body ul li {
  padding: 6px 0;
  color: #555;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.service-card-body ul li::before {
  content: "\2713";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.service-card .btn {
  width: 100%;
  text-align: center;
  padding: 12px;
  font-size: 0.95rem;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 800;
}

.about-content h2 span {
  color: var(--primary);
}

.about-content p {
  color: #555;
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.about-image {
  background: linear-gradient(135deg, var(--secondary), var(--dark));
  border-radius: var(--radius);
  padding: 40px;
  color: var(--white);
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.about-image .big-icon {
  width: 110px;
  height: 110px;
  margin: 0 auto 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image .big-icon .svg-icon {
  width: 56px;
  height: 56px;
}

.about-image h3 {
  font-size: 1.5rem;
}

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.value-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card .value-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  border-radius: 18px;
  background: rgba(230, 57, 70, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card .value-icon .svg-icon {
  width: 32px;
  height: 32px;
}

.value-card h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.value-card p {
  color: #666;
  font-size: 0.95rem;
}

/* Timeline */
.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--primary);
}

.timeline-item {
  padding-left: 70px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 5px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid var(--dark);
}

.timeline-item h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.timeline-item p {
  opacity: 0.85;
  font-size: 0.95rem;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  border: 1px solid rgba(13, 27, 42, 0.06);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(13, 27, 42, 0.12);
  border-color: rgba(230, 57, 70, 0.18);
}

.team-avatar {
  background: linear-gradient(135deg, var(--secondary), var(--gray));
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar .svg-icon {
  width: 54px;
  height: 54px;
}

.team-info {
  padding: 20px;
}

.team-info h3 {
  font-size: 1.2rem;
  color: var(--dark);
}

.team-info .role {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.team-info p {
  color: #666;
  font-size: 0.85rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
}

.cta-phone {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  display: block;
}

.cta-phone a {
  color: var(--white);
  transition: opacity 0.3s;
}

.cta-phone a:hover {
  opacity: 0.8;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid rgba(13, 27, 42, 0.06);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(13, 27, 42, 0.12);
  border-color: rgba(230, 57, 70, 0.18);
}

.testimonial-card .stars {
  color: #ffc107;
  margin-bottom: 15px;
  display: inline-flex;
  gap: 4px;
}

.testimonial-card .stars .svg-icon {
  width: 18px;
  height: 18px;
}

.testimonial-card p {
  color: #555;
  font-style: italic;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

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

.testimonial-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-author h3,
.testimonial-author h4 {
  font-size: 1rem;
  color: var(--dark);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: #999;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

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

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

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

.form-note,
.form-status {
  font-size: 0.9rem;
  margin-top: 15px;
  color: #555;
}

.form-status {
  min-height: 1.5em;
}

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

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

.footer-col h2,
.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col p {
  color: #aaa;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col a {
  display: block;
  color: #aaa;
  font-size: 0.9rem;
  padding: 5px 0;
  transition: color 0.3s;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #aaa;
  font-size: 0.9rem;
}

.footer-contact-item .icon {
  color: var(--primary);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-item .icon .svg-icon {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  color: #777;
  font-size: 0.85rem;
}

.footer-proof {
  margin-top: 15px;
  color: var(--light);
  font-weight: 600;
}

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
  background: radial-gradient(circle at top, rgba(230, 57, 70, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(13, 27, 42, 0.95), rgba(29, 53, 87, 0.9)),
    url('https://images.unsplash.com/photo-1549317661-bd32c8ce0afa?auto=format&fit=crop&w=1600&q=70') center/cover no-repeat;
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 1.15rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

.breadcrumb {
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.7;
}

.breadcrumb a {
  color: var(--primary);
}

/* ===== NEW CONTENT MODULES ===== */
.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.9rem !important;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.hero-pills a {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-pills a:hover {
  background: rgba(255, 255, 255, 0.22);
}

.trust-strip {
  background: var(--light);
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
  padding: 22px 0;
}

.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  text-align: center;
}

.trust-item strong {
  display: block;
  color: var(--dark);
  font-size: 1.6rem;
}

.trust-item span {
  color: #666;
  font-size: 0.95rem;
}

.dual-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

.inline-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.content-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  border: 1px solid rgba(13, 27, 42, 0.06);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.content-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(13, 27, 42, 0.12);
  border-color: rgba(230, 57, 70, 0.18);
}

.content-card h2,
.content-card h3 {
  color: var(--dark);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.content-card p {
  color: #555;
  margin-bottom: 14px;
}

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

.faq-card {
  margin-bottom: 20px;
  border-top-color: var(--secondary);
}

.process-number {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.sell-hero {
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.94), rgba(29, 53, 87, 0.88)),
    url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1600&q=70') center/cover no-repeat;
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.sell-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.sell-hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 36px;
  opacity: 0.92;
}

.how-it-works-steps,
.what-we-buy-grid,
.benefits-list,
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.step-card,
.buy-card,
.benefit-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step-card,
.buy-card {
  text-align: center;
  padding: 32px 24px;
}

.step-number {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.buy-card {
  border-top: 4px solid var(--primary);
}

.buy-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 12px;
  border-radius: 18px;
  background: rgba(230, 57, 70, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.buy-icon .svg-icon {
  width: 32px;
  height: 32px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  padding: 24px;
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(230, 57, 70, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon .svg-icon {
  width: 24px;
  height: 24px;
}

.local-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.local-links a {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(29, 53, 87, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--secondary);
  font-weight: 600;
  transition: all 0.3s ease;
}

.local-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
  align-items: start;
}

.contact-sidebar {
  position: sticky;
  top: 110px;
}

.contact-tips {
  margin-top: 22px;
}

.contact-tips ul {
  margin-top: 12px;
  padding-left: 18px;
}

.contact-tips li {
  list-style: disc;
  color: #555;
  margin-bottom: 8px;
}

.article-card p {
  margin-bottom: 14px;
}

.text-link {
  color: var(--primary);
  font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout,
  .trust-strip .container {
    grid-template-columns: 1fr 1fr;
  }

  .contact-sidebar {
    position: static;
  }

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

  .hero h1,
  .sell-hero h1 {
    font-size: 2.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .header .container {
    padding: 14px 18px;
  }

  .logo-image {
    width: min(220px, 54vw);
    max-width: min(220px, 54vw);
  }

  .nav-links {
    justify-content: flex-start;
    gap: 18px;
  }

  .nav-cta {
    margin-left: 0;
    width: 100%;
    border-radius: 14px;
  }

  .homepage .hero {
    min-height: 60vh;
    padding: 78px 0 72px;
  }

  .homepage .hero .container {
    padding: 0 20px;
  }

  .homepage .hero h1 {
    font-size: 2.45rem;
    max-width: 100%;
  }

  .homepage .hero p {
    font-size: 0.98rem;
    max-width: 100%;
  }

  .homepage .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero {
    padding: 60px 0;
    min-height: 70vh;
  }

  .logo-image {
    max-width: min(250px, 58vw);
  }

  .section {
    padding: 50px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

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

  .top-bar .container {
    flex-direction: column;
    gap: 5px;
  }

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

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

  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-phone {
    font-size: 1.8rem;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

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

  .trust-strip .container,
  .contact-layout,
  .inline-actions {
    grid-template-columns: 1fr;
  }

  .hero-pills {
    justify-content: center;
  }

  .sell-hero {
    padding: 60px 0;
    min-height: 70vh;
  }
}
