/* ============================================
   RoofCrafters Clone — Clean Static CSS
   Design System: Archivo + Open Sans
   Colors: Dark Charcoal + Bronze Gold
   ============================================ */

/* --- CSS Variables (Brand Tokens) --- */
:root {
  --color-primary: #24262B;
  --color-secondary: #BB7B32;
  --color-text: #5E636F;
  --color-white: #FFFFFF;
  --color-light-bg: #F5F0EB;
  --color-muted-bg: #E1DEDA;
  --color-muted-text: #ABA8A1;
  --color-dark-alt: #292B30;
  --color-dark-alt2: #484B52;
  --color-gray-border: #757272;
  --color-peach: #F8B179;

  --font-heading: "Archivo", sans-serif;
  --font-body: "Open Sans", sans-serif;

  --container-max: 1440px;
  --container-narrow: 1200px;
  --radius: 8px;
  --radius-pill: 500px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s, background-color 0.3s, border-color 0.3s, opacity 0.3s;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.2;
}

h1 { font-size: 80px; font-weight: 800; }
h2 { font-size: 62px; font-weight: 800; line-height: 1.03; }
h3 { font-size: 42px; font-weight: 800; line-height: 1.19; }
h4 { font-size: 32px; font-weight: 800; line-height: 1.18; }
h5 { font-size: 24px; font-weight: 800; }
h6 { font-size: 18px; font-weight: 800; line-height: 1.22; }

p {
  margin-bottom: 0;
}

/* --- Utility --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 40px;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.22;
  text-transform: none;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.625;
  max-width: 600px;
}

.highlight {
  color: var(--color-secondary);
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 2px;
  background: var(--color-secondary);
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.53;
  padding: 14px 20px;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius);
  background: var(--color-primary);
  color: var(--color-white);
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.btn:hover, .btn:focus {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-icon svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: fill 0.3s;
}

.btn-tag {
  padding: 6px 14px;
  font-size: 13px;
  border-radius: var(--radius);
  background: rgba(187, 123, 50, 0.15);
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
  font-weight: 500;
  text-transform: uppercase;
}

/* --- 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);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================
   HEADER — Top Bar
   ============================================ */
.top-bar {
  background: var(--color-primary);
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-white);
  font-size: 14px;
  z-index: 999;
  position: relative;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar__left svg {
  width: 14px;
  height: 14px;
  fill: var(--color-secondary);
}

.top-bar__right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar__right a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
}

.top-bar__right a svg {
  width: 14px;
  height: 14px;
  fill: var(--color-secondary);
}

.social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icons a {
  color: var(--color-secondary);
  display: flex;
}

.social-icons a svg {
  width: 14px;
  height: 14px;
  fill: var(--color-secondary);
}

.social-icons a:hover svg {
  fill: var(--color-white);
}

/* ============================================
   HEADER — Main Nav
   ============================================ */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 40px;
  position: sticky;
  top: 0;
  background: var(--color-white);
  z-index: 999;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.main-nav__logo img {
  max-width: 232px;
  height: auto;
}

.main-nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-icon-circle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-secondary);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-icon-circle svg {
  width: 18px;
  height: 18px;
  fill: var(--color-primary);
}

.nav-info-text {
  text-align: left;
}

.nav-info-text .label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text);
  display: block;
  line-height: 1.2;
}

.nav-info-text .value {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  display: block;
  line-height: 1.1;
}

.nav-hamburger {
  margin-left: 24px;
  display: flex;
  align-items: center;
}

.nav-hamburger svg {
  width: 22px;
  height: 22px;
  fill: var(--color-primary);
  cursor: pointer;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  z-index: 1000;
  padding: 80px 40px 40px;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-primary);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu ul a {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-primary);
}

.mobile-menu ul a:hover {
  color: var(--color-secondary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: var(--color-light-bg);
  padding: 100px 40px 120px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: var(--container-max);
  margin: 0 auto;
}

.hero__content {
  flex: 1;
  max-width: 580px;
  padding-top: 40px;
}

.hero__label {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-secondary);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.hero__title {
  margin-bottom: 24px;
}

.hero__title .highlight {
  color: var(--color-secondary);
}

.hero__desc {
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 32px;
  line-height: 1.625;
}

.hero__form-wrapper {
  flex: 0 0 420px;
  max-width: 420px;
}

.hero__form {
  background: var(--color-white);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.hero__form h3 {
  font-size: 32px;
  margin-bottom: 24px;
  text-align: center;
}

.hero__form .form-group {
  margin-bottom: 16px;
}

.hero__form input,
.hero__form select,
.hero__form textarea {
  width: 100%;
  padding: 13px 24px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-text);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--radius);
  background: transparent;
  outline: none;
  transition: border-color 0.3s;
}

.hero__form input:focus,
.hero__form select:focus,
.hero__form textarea:focus {
  border-color: var(--color-secondary);
}

.hero__form input::placeholder,
.hero__form textarea::placeholder {
  color: var(--color-muted-text);
}

.hero__form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%235E636F'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
  cursor: pointer;
}

.hero__form textarea {
  resize: vertical;
  min-height: 100px;
}

.hero__form .btn {
  width: 100%;
  text-align: center;
  font-size: 16px;
  padding: 16px 20px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--color-white);
  padding: 120px 40px;
}

.about__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  gap: 60px;
}

.about__text {
  flex: 0 0 40%;
  position: relative;
  padding-left: 60px;
}

.about__rotated-label {
  position: absolute;
  left: -20px;
  top: 100px;
  transform: rotate(-90deg);
  transform-origin: left top;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary);
  white-space: nowrap;
}

.about__text h2 {
  margin-bottom: 20px;
}

.about__text p {
  color: var(--color-text);
  line-height: 1.625;
}

.about__cards {
  flex: 1;
  display: flex;
  gap: 24px;
}

.about__card {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
}

.about__card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
}

.about__card h4 {
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 8px;
}

.about__card p {
  font-size: 16px;
  color: var(--color-text);
}

/* ============================================
   PROCESS SECTION (3 Steps)
   ============================================ */
.process {
  background: var(--color-light-bg);
  padding: 120px 40px;
}

.process__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  gap: 80px;
}

.process__text {
  flex: 0 0 40%;
  position: relative;
  padding-left: 60px;
}

.process__rotated-label {
  position: absolute;
  left: -20px;
  top: 100px;
  transform: rotate(-90deg);
  transform-origin: left top;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary);
  white-space: nowrap;
}

.process__text h2 {
  margin-bottom: 20px;
}

.process__text > p {
  color: var(--color-text);
  line-height: 1.625;
}

.process__cards {
  flex: 1;
  display: flex;
  gap: 24px;
}

.process__card {
  flex: 1;
  background: var(--color-white);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: left;
}

.process__card img {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.process__card h4 {
  font-size: 24px;
  margin-bottom: 12px;
}

.process__card p {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.625;
}

.process__cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  background: var(--color-white);
  padding: 120px 40px;
}

.services__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.services__header {
  display: flex;
  gap: 80px;
  margin-bottom: 60px;
}

.services__header-text {
  flex: 0 0 40%;
  position: relative;
  padding-left: 60px;
}

.services__rotated-label {
  position: absolute;
  left: -20px;
  top: 100px;
  transform: rotate(-90deg);
  transform-origin: left top;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary);
  white-space: nowrap;
}

.services__header-text h2 {
  margin-bottom: 20px;
}

.services__header-text p {
  color: var(--color-text);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.service-card {
  display: flex;
  gap: 32px;
  position: relative;
}

.service-card__info {
  flex: 0 0 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card__number {
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 800;
  color: rgba(36, 38, 43, 0.06);
  line-height: 1;
  position: absolute;
  top: -10px;
  left: 0;
}

.service-card__info h4 {
  font-size: 32px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-card__info p {
  font-size: 16px;
  color: var(--color-text);
  position: relative;
  z-index: 1;
}

.service-card__image {
  flex: 1;
  position: relative;
}

.service-card__image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  height: 320px;
}

.service-card__badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.service-card__badge img {
  width: 32px;
  height: 32px;
  border-radius: 0;
}

.service-card__badge span {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}

.services__cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   PROJECTS SHOWCASE
   ============================================ */
.projects {
  background: var(--color-primary);
  padding: 120px 40px;
  color: var(--color-white);
}

.projects__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.projects__header {
  margin-bottom: 60px;
  position: relative;
  padding-left: 60px;
}

.projects__rotated-label {
  position: absolute;
  left: -20px;
  top: 100px;
  transform: rotate(-90deg);
  transform-origin: left top;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-white);
  white-space: nowrap;
}

.projects__header h2 {
  color: var(--color-white);
  margin-bottom: 20px;
}

.projects__header p {
  color: var(--color-muted-text);
  max-width: 600px;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.project-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 400px;
  background-size: cover;
  background-position: center;
  background-color: var(--color-dark-alt);
}

.project-card--1 {
  background-image: url('images/roof-repair.jpg');
}

.project-card--2 {
  background-image: url('images/roof-replace.jpg');
}

.project-card--3 {
  background-image: url('images/roofing-specialist.jpg');
}

.project-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.project-card__overlay h4 {
  color: var(--color-white);
  font-size: 24px;
  margin-bottom: 12px;
}

.project-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.project-card__tags .btn-tag {
  background: rgba(187, 123, 50, 0.3);
  border-color: var(--color-secondary);
  color: var(--color-white);
  font-size: 12px;
  padding: 4px 12px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--color-light-bg);
  padding: 120px 40px;
}

.testimonials__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials__header h2 {
  margin-bottom: 16px;
}

.testimonials__header p {
  color: var(--color-text);
  max-width: 500px;
  margin: 0 auto;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 36px 28px;
}

.testimonial-card__quote-icon {
  width: 50px;
  height: 41px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.625;
  margin-bottom: 24px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__author img {
  width: 64px;
  height: 63px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card__author-info h6 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 2px;
}

.testimonial-card__author-info span {
  font-size: 14px;
  color: var(--color-text);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  background: var(--color-white);
  padding: 120px 40px;
}

.faq__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  gap: 80px;
}

.faq__text {
  flex: 0 0 40%;
}

.faq__text h2 {
  margin-bottom: 20px;
}

.faq__text > p {
  color: var(--color-text);
  margin-bottom: 24px;
  max-width: 400px;
}

.faq__accordion {
  flex: 1;
}

.faq-item {
  border-bottom: 1px solid var(--color-muted-bg);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-muted-bg);
}

.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  text-align: left;
  line-height: 1.4;
}

.faq-item__question:hover {
  color: var(--color-secondary);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 16px;
  transition: transform 0.3s;
}

.faq-item__icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-primary);
}

.faq-item.active .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-item__answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-item__answer p {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.625;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-muted-bg);
  padding: 120px 40px 0;
}

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 87px;
}

.footer__brand img {
  max-width: 233px;
  margin-bottom: 20px;
}

.footer__brand p {
  color: var(--color-text);
  line-height: 1.625;
}

.footer__col h6 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  color: var(--color-text);
  font-size: 16px;
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--color-secondary);
}

.footer__hours p {
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.8;
}

.footer__newsletter p {
  color: var(--color-text);
  font-size: 16px;
  margin-bottom: 16px;
}

.footer__newsletter-form {
  display: flex;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 6px;
}

.footer__newsletter-form input {
  flex: 1;
  border: none;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  background: transparent;
  outline: none;
  color: var(--color-text);
}

.footer__newsletter-form button {
  padding: 10px 20px;
  border: none;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s;
}

.footer__newsletter-form button:hover {
  background: var(--color-secondary);
}

.footer__bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 16px 0;
  margin-top: 80px;
  background: var(--color-light-bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: var(--color-light-bg);
}

.footer__copyright {
  font-size: 14px;
  color: var(--color-text);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: background 0.3s;
}

.footer__social a svg {
  width: 16px;
  height: 16px;
  fill: var(--color-primary);
}

.footer__social a:hover {
  background: var(--color-secondary);
}

.footer__social a:hover svg {
  fill: var(--color-white);
}

/* ============================================
   RESPONSIVE — Tablet (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  h1 { font-size: 60px; }
  h2 { font-size: 46px; }
  h3 { font-size: 38px; }
  h4 { font-size: 28px; }
  h5 { font-size: 26px; }

  .container, .container-narrow {
    padding: 0 25px;
  }

  .top-bar {
    padding: 8px 25px;
  }

  .main-nav {
    padding: 20px 25px;
  }

  .main-nav__logo img {
    max-width: 200px;
  }

  .hero {
    padding: 80px 25px 100px;
    gap: 40px;
  }

  .hero__form-wrapper {
    flex: 0 0 360px;
    max-width: 360px;
  }

  .about, .process, .services, .testimonials, .faq {
    padding: 100px 25px;
  }

  .about__inner, .process__inner, .faq__inner {
    gap: 40px;
  }

  .services__header {
    gap: 40px;
  }

  .projects {
    padding: 100px 25px;
  }

  .footer {
    padding: 100px 25px 0;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-card {
    gap: 24px;
  }

  .nav-info-item {
    display: none;
  }
}

/* ============================================
   RESPONSIVE — Mobile (max 767px)
   ============================================ */
@media (max-width: 767px) {
  h1 { font-size: 40px; }
  h2 { font-size: 34px; }
  h3 { font-size: 26px; }
  h4 { font-size: 22px; }
  h5 { font-size: 20px; }
  h6 { font-size: 16px; }

  body { font-size: 14px; }

  .top-bar {
    display: none;
  }

  .main-nav {
    padding: 16px 20px;
  }

  .main-nav__logo img {
    max-width: 160px;
  }

  .main-nav__right {
    gap: 0;
  }

  .nav-info-item {
    display: none;
  }

  .hero {
    padding: 60px 20px 80px;
    flex-direction: column;
    gap: 40px;
  }

  .hero__content {
    max-width: 100%;
    padding-top: 0;
  }

  .hero__form-wrapper {
    flex: 1;
    max-width: 100%;
  }

  .about, .process, .services, .testimonials, .faq {
    padding: 80px 20px;
  }

  .about__inner, .process__inner, .faq__inner {
    flex-direction: column;
    gap: 40px;
  }

  .about__text, .process__text, .services__header-text, .faq__text {
    flex: 1;
    padding-left: 0;
  }

  .about__rotated-label,
  .process__rotated-label,
  .services__rotated-label,
  .projects__rotated-label {
    position: static;
    transform: none;
    margin-bottom: 12px;
  }

  .about__cards, .process__cards {
    flex-direction: column;
    gap: 24px;
  }

  .services__header {
    flex-direction: column;
    gap: 24px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    flex-direction: column;
  }

  .service-card__info {
    flex: 1;
  }

  .service-card__image img {
    height: 240px;
  }

  .projects {
    padding: 80px 20px;
  }

  .projects__header {
    padding-left: 0;
  }

  .projects__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-card {
    height: 300px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq__inner {
    gap: 32px;
  }

  .footer {
    padding: 80px 20px 0;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 16px 20px;
  }

  .footer__social {
    justify-content: center;
  }

  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }
}
