/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
  --color-primary: #1a1a1a;
  --color-primary-light: #2a2a2a;
  --color-accent: #d4872e;
  --color-accent-hover: #b8711f;
  --color-accent-light: #e8a54a;
  --color-silver: #b0b0b0;
  --color-dark: #111111;
  --color-text: #333333;
  --color-text-light: #6b7280;
  --color-bg: #ffffff;
  --color-bg-light: #f5f5f5;
  --color-bg-dark: #111111;
  --color-border: #e0e0e0;
  --color-stars: #d4872e;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container-max: 1200px;
  --header-height: 80px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-dark);
  line-height: 1.2;
  font-weight: 700;
}

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

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

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

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

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-sm { padding: 8px 20px; font-size: 14px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-block { width: 100%; }

/* ===========================
   Announcement Bar
   =========================== */
.announcement-bar {
  background: var(--color-accent);
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.announcement-bar p {
  margin: 0;
}

/* ===========================
   Header
   =========================== */
.site-header {
  background: #000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

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

.site-logo img {
  height: 65px;
  width: auto;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.site-logo-text strong {
  display: block;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.site-logo-text strong:last-child {
  color: var(--color-accent);
  font-size: 18px;
  letter-spacing: 2px;
}

.main-nav .nav-list {
  display: flex;
  gap: 8px;
}

.nav-item > a {
  display: block;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.nav-item > a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-accent);
}

.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1a1a;
  min-width: 220px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition);
}

.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-accent);
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
}

.header-phone:hover {
  color: var(--color-accent);
}

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

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

.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===========================
   Hero
   =========================== */
.hero {
  position: relative;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  color: #fff;
  padding: 100px 0 120px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,192L48,186.7C96,181,192,171,288,181.3C384,192,480,224,576,218.7C672,213,768,171,864,165.3C960,160,1056,192,1152,197.3C1248,203,1344,181,1392,170.7L1440,160L1440,320L0,320Z"/></svg>') no-repeat bottom center;
  background-size: cover;
}

.hero-content {
  position: relative;
  max-width: 650px;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  margin-bottom: 24px;
}

.hero-rating .stars {
  color: var(--color-stars);
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}

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

.hero-subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

.hero .btn-outline:hover {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}

/* ===========================
   Section Headers
   =========================== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 18px;
  color: var(--color-text-light);
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===========================
   Services Section
   =========================== */
.services-section {
  padding: 80px 0;
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--color-bg-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-primary);
}

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

.service-card p {
  color: var(--color-text-light);
  margin-bottom: 16px;
  font-size: 15px;
}

.service-link {
  font-weight: 600;
  color: var(--color-accent);
  font-size: 14px;
}

.service-link:hover {
  color: var(--color-accent-hover);
}

/* ===========================
   Why Choose Us
   =========================== */
.why-choose-us {
  padding: 80px 0;
  background: var(--color-bg-light);
}

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

.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.feature-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--color-accent);
  opacity: 0.3;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--color-text-light);
  font-size: 15px;
}

/* ===========================
   Recent Work / Projects Grid
   =========================== */
.recent-work {
  padding: 80px 0;
}

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

.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border);
  transition: all var(--transition);
  display: block;
}

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

.project-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #1a1a1a;
}

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

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

.project-info {
  padding: 20px 24px;
}

.project-info h3 {
  font-size: 18px;
  margin-bottom: 4px;
}

.project-type {
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-location {
  font-size: 13px;
  color: var(--color-text-light);
  margin-left: 12px;
}

/* Portfolio filter */
.portfolio-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: #000;
  color: var(--color-accent);
  border-color: #000;
}

/* ===========================
   Testimonials
   =========================== */
.testimonials {
  padding: 80px 0;
  background: var(--color-bg-light);
}

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

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: var(--color-stars);
  font-size: 18px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--color-text-light);
}

/* ===========================
   Process Section
   =========================== */
.process-section {
  padding: 80px 0;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  padding: 0 16px;
}

.step-number {
  width: 56px;
  height: 56px;
  background: #000;
  color: var(--color-accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.process-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--color-text-light);
}

.process-connector {
  width: 60px;
  height: 2px;
  background: var(--color-border);
  margin-top: 28px;
  flex-shrink: 0;
}

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

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

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
}

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

.faq-question svg {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

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

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--color-text-light);
  font-size: 15px;
  line-height: 1.7;
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  color: #fff;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  color: #fff;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 24px;
}

.cta-features {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
  font-size: 15px;
  font-weight: 500;
}

/* ===========================
   Page Banner
   =========================== */
.page-banner {
  background: var(--color-bg-light);
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
}

.breadcrumb {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

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

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-banner h1 {
  font-size: 36px;
}

.page-content {
  padding: 60px 0;
}

/* ===========================
   Portfolio Detail
   =========================== */
.portfolio-detail {
  padding: 60px 0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}

.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  background: #1a1a1a;
  aspect-ratio: 16/10;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.gallery-thumb {
  width: 80px;
  height: 60px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.gallery-thumb.active,
.gallery-thumb:hover {
  border-color: var(--color-accent);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-description {
  margin-top: 40px;
  line-height: 1.8;
}

.portfolio-description h2 {
  font-size: 24px;
  margin: 32px 0 16px;
}

.portfolio-description ul {
  margin: 16px 0;
  padding-left: 0;
}

.portfolio-description li {
  padding: 4px 0;
  font-size: 15px;
}

.project-details-card {
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.project-details-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  color: var(--color-text-light);
}

.detail-value {
  font-weight: 600;
}

.sidebar-cta {
  background: #000;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

.sidebar-cta h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 8px;
}

.sidebar-cta p {
  opacity: 0.9;
  font-size: 14px;
  margin-bottom: 20px;
}

/* ===========================
   Contact Page
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
}

.contact-form-wrapper h2 {
  font-size: 28px;
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  color: var(--color-text-light);
  margin-bottom: 32px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-family);
  transition: border-color var(--transition);
}

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

.contact-info-sidebar .info-card {
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}

.info-card h3 {
  font-size: 18px;
  margin-bottom: 16px;
}

.contact-details li {
  margin-bottom: 12px;
  font-size: 14px;
}

.contact-details strong {
  display: block;
  font-size: 12px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

/* ===========================
   About Page
   =========================== */
.about-intro {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
}

.about-intro h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.about-intro p {
  font-size: 18px;
  color: var(--color-text-light);
  line-height: 1.7;
}

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

.value-item {
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.value-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.value-item p {
  color: var(--color-text-light);
  font-size: 15px;
}

/* ===========================
   Footer
   =========================== */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
  height: 55px;
  margin-bottom: 16px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.footer-rating .stars,
.hero-rating .stars {
  color: var(--color-stars);
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
}

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

.footer-col ul a {
  font-size: 14px;
  opacity: 0.8;
  transition: all var(--transition);
}

.footer-col ul a:hover {
  opacity: 1;
  color: var(--color-accent);
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-list svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.business-hours {
  margin-top: 16px;
  font-size: 13px;
  opacity: 0.7;
}

.business-hours p {
  margin-bottom: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 13px;
  opacity: 0.6;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  opacity: 0.6;
  transition: opacity var(--transition);
}

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

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a:hover {
  text-decoration: underline;
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    padding: 16px 0;
  }

  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .main-nav .nav-list {
    flex-direction: column;
    padding: 0 24px;
  }

  .nav-item > a {
    padding: 12px 0;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 16px;
  }

  .header-contact {
    display: none;
  }

  .hero {
    padding: 60px 0 80px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    text-align: center;
  }

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

  .process-steps {
    flex-direction: column;
    align-items: center;
  }

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

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

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cta-features {
    flex-direction: column;
    gap: 12px;
  }

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