/* ===== VARIABLES ===== */
:root {
  --primary: #263246;
  --primary-light: #344a64;
  --accent: #4CAF50;
  --accent-hover: #388E3C;
  --white: #FFFFFF;
  --light-gray: #F2F2F2;
  --dark-text: #333333;
  --medium-text: #666666;
  --font-stack: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --max-width: 1140px;
  --header-height: 100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-stack);
  color: var(--dark-text);
  line-height: 1.6;
  background: var(--white);
}

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

ul {
  list-style: none;
}

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

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

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

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

.logo img {
  height: 80px;
  width: auto;
}

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

.nav-links a {
  color: var(--primary);
  padding: 8px 16px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.nav-links a.active {
  border-bottom: 2px solid var(--accent);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: " \25BE";
  font-size: 0.75em;
  margin-left: 2px;
  opacity: 0.7;
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-top: 2px solid var(--accent);
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 100;
}

.nav-dropdown:hover > .nav-submenu,
.nav-dropdown:focus-within > .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-submenu li {
  list-style: none;
}

.nav-submenu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  border-bottom: none;
}

.nav-submenu a:hover,
.nav-submenu a.active {
  background: var(--light-gray);
  color: var(--accent);
}

.nav-submenu a.active {
  border-bottom: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: opacity 1s ease-in-out;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(38, 50, 70, 0.65);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 24px;
  max-width: 800px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--white);
}

.hero h3 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 4px;
  line-height: 1.4;
  color: var(--white);
}

.hero-divider {
  width: 80px;
  height: 3px;
  background: var(--accent);
  margin: 20px auto 28px;
}

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

.hero-page {
  min-height: 300px;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.btn-dark:hover {
  background: var(--primary-light);
}

/* ===== SUB-NAV ===== */
.sub-nav {
  background: var(--light-gray);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0;
}

.sub-nav .container {
  display: flex;
  justify-content: center;
  gap: 0;
}

.sub-nav a {
  display: inline-block;
  padding: 16px 32px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--medium-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s, border-color 0.2s;
  border-bottom: 3px solid transparent;
}

.sub-nav a:hover {
  color: var(--primary);
}

.sub-nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

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

.section-gray {
  background: var(--light-gray);
}

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

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--primary);
}

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

.section-subtitle {
  text-align: center;
  color: var(--medium-text);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

/* ===== WHO WE ARE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-text h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--medium-text);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.stat-item {
  text-align: center;
  padding: 16px;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--medium-text);
  font-weight: 500;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.about-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
}

/* ===== SERVICES CARDS ===== */
.services-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.services-intro h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.services-intro p {
  color: var(--medium-text);
  font-size: 1.05rem;
}

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

.service-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card .icon {
  width: 64px;
  height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--white);
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--medium-text);
  font-size: 0.95rem;
}

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.process-step h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.process-step p {
  color: var(--medium-text);
  font-size: 0.95rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--primary);
  color: var(--white);
  padding: 80px 0;
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 36px;
  position: relative;
}

.testimonial-quote {
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 20px;
}

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

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.5);
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-position {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ===== CTA BANNER ===== */
.cta-section {
  background: var(--primary);
  text-align: center;
  padding: 60px 0;
}

.cta-section h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 24px;
}

/* ===== CONTACT FORM ===== */
.contact-section {
  padding: 80px 0;
}

.contact-section h2 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 40px;
}

.contact-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

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

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

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e5e5e5;
  background: #FAFAFA;
  font-size: 1rem;
  font-family: var(--font-stack);
  color: var(--primary);
  transition: border-color 0.2s;
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
  color: var(--primary);
  opacity: 0.5;
}

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

.contact-form-wrapper textarea {
  height: 140px;
  resize: vertical;
}

.form-privacy {
  font-size: 0.85rem;
  color: var(--medium-text);
  margin-top: 16px;
  text-align: center;
}

.form-privacy a {
  color: var(--accent);
  text-decoration: underline;
}

/* ===== SERVICE BLOCKS (services page) ===== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.service-block:last-child {
  margin-bottom: 0;
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse > * {
  direction: ltr;
}

.service-text h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.service-text h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-text p {
  color: var(--medium-text);
  margin-bottom: 14px;
  font-size: 1rem;
}

.service-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.service-text ul {
  margin-bottom: 14px;
}

.service-text ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: var(--medium-text);
}

.service-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.lead-time {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 8px;
}

/* Highlight boxes */
.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.highlight-box {
  padding: 32px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--accent);
}

.highlight-box h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.highlight-box p {
  color: var(--medium-text);
  font-size: 0.95rem;
}

/* Pricing & Get Started */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.info-box {
  padding: 36px;
  background: var(--primary);
  border-radius: 8px;
  color: var(--white);
}

.info-box h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.info-box p {
  opacity: 0.85;
  font-size: 1rem;
  line-height: 1.6;
}

.info-box a {
  color: var(--accent);
  font-weight: 600;
}

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

.faq-item {
  border-bottom: 1px solid #ddd;
}

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

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

.faq-arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

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

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

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

.faq-answer p {
  color: var(--medium-text);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== TEAM ===== */
.team-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.team-intro p {
  color: var(--medium-text);
  font-size: 1.05rem;
}

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

.team-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.team-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
}

.team-info {
  padding: 24px 20px 28px;
}

.team-info h3 {
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-info .title {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.team-info p {
  color: var(--medium-text);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e5e5e5;
  background: #FAFAFA;
  font-size: 1rem;
  font-family: var(--font-stack);
  color: var(--primary);
  margin-bottom: 20px;
  transition: border-color 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--primary);
  opacity: 0.5;
}

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

.contact-form textarea {
  height: 140px;
  resize: vertical;
}

.contact-form .btn {
  width: auto;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--light-gray);
  border-radius: 8px;
}

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

.contact-info-card .text strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.contact-info-card .text span,
.contact-info-card .text a {
  color: var(--medium-text);
  font-size: 0.95rem;
}

.contact-info-card .text a:hover {
  color: var(--accent);
}

.contact-note {
  font-size: 0.85rem;
  color: var(--medium-text);
  font-style: italic;
  margin-top: 2px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 40px;
}

.footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 16px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent);
}

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

.footer-links a {
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-contact a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  font-size: 0.85rem;
  color: var(--white);
}

.social-links a:hover {
  background: var(--accent);
}

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

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: background 0.2s, opacity 0.3s;
  opacity: 0;
}

.scroll-top.visible {
  display: flex;
  opacity: 1;
}

.scroll-top:hover {
  background: var(--accent-hover);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  :root {
    --header-height: 85px;
  }

  .logo img {
    height: 60px;
  }

  .about-grid,
  .service-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-block.reverse {
    direction: ltr;
  }

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

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }

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

@media (max-width: 768px) {
  :root {
    --header-height: 65px;
  }

  .logo img {
    height: 45px;
  }

  .sub-nav a {
    padding: 12px 16px;
    font-size: 0.8rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px;
    gap: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }

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

  .nav-links a {
    padding: 12px 16px;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .nav-links a.active {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--accent);
  }

  .nav-dropdown > a::after {
    content: "";
  }

  .nav-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    padding: 0;
    background: transparent;
    min-width: 0;
  }

  .nav-submenu a {
    padding: 10px 16px 10px 32px;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 450px;
  }

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

  .hero h3 {
    font-size: 1.2rem;
  }

  .hero-page {
    min-height: 220px;
  }

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .services-grid,
  .process-grid,
  .highlight-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

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

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

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

  .stats-grid {
    gap: 16px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .about-gallery {
    gap: 8px;
  }

  .about-gallery img {
    height: 150px;
  }

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