/* ===================================================
   HIGH PLAINS WEB DESIGN — STYLESHEET
   Color Palette:
     Primary Blue:   #1e3a5f
     Accent Orange:  #e07b39 not in use
     Accent Blue:    #0578c0
     Sky Blue:       #4a90c4
     Light BG:       #f4f7fb
     Dark BG:        #0f2035
     Text:           #2d3748
=================================================== */

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

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

body {
  font-family: 'Inter', sans-serif;
  color: #2d3748;
  background: #fff;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Merriweather', Georgia, serif;
  line-height: 1.25;
  color: #1e3a5f;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- LAYOUT ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad { padding: 80px 0; }
.bg-light { background: #f4f7fb; }
.bg-dark { background: #0f2035; }

/* ---- SECTION HEADERS ---- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-header.light h2,
.section-header.light p { color: #e8f0f8; }

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0578c0;
  margin-bottom: 0.5rem;
}

.section-sub {
  color: #5a6a7a;
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: #0578c0;
  color: #fff;
  border-color: #0578c0;
}
.btn-primary:hover { background: #c96828; border-color: #c96828; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(224,123,57,0.35); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

.btn-outline-dark {
  background: transparent;
  color: #1e3a5f;
  border-color: #1e3a5f;
}
.btn-outline-dark:hover { background: #1e3a5f; color: #fff; }

.btn-full { width: 100%; }

/* ===================================================
   NAVIGATION
=================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 0.6rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: #fff;
  transition: color 0.3s;
}

.site-header.scrolled .logo { color: #1e3a5f; }

.logo-icon {
  color: #0578c0;
  font-size: 1.3rem;
}

.logo-text strong { color: #0578c0; }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}

.main-nav a:hover { color: #fff; }

.site-header.scrolled .main-nav a { color: #2d3748; }
.site-header.scrolled .main-nav a:hover { color: #0578c0; }

.nav-cta {
  background: #0578c0 !important;
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: #c96828 !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.site-header.scrolled .hamburger span { background: #1e3a5f; }

/* ===================================================
   HERO
=================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('leon-mcgregor-Zk3ZUpzSp8c-unsplash.jpg') center center / cover no-repeat;
  color: #fff;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 28, 50, 0.82) 0%,
    rgba(30, 58, 95, 0.65) 60%,
    rgba(74, 144, 196, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 4rem 1.5rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #b1b1b1;
  margin-bottom: 1rem;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.accent { color: #0578c0; }

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-service-area {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  backdrop-filter: blur(4px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  z-index: 2;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
  margin: 0.4rem auto 0;
  animation: bounce 1.8s infinite;
}

@keyframes bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(6px); }
}

/* ===================================================
   TRUST BAR
=================================================== */
.trust-bar {
  background: #1e3a5f;
  padding: 2rem 0;
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 2.5rem;
  color: #fff;
}

.trust-number {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Merriweather', serif;
  color: #f0a060;
  line-height: 1;
}

.trust-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

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

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  border-radius: 12px;
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(30,58,95,0.2);
}

.about-badge-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.about-badge-icon { font-size: 2rem; }

.about-badge-card strong {
  display: block;
  font-size: 0.9rem;
  color: #1e3a5f;
}

.about-badge-card p {
  font-size: 0.8rem;
  color: #5a6a7a;
  margin: 0;
}

.about-text h2 { margin-bottom: 1.25rem; }

.about-list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #2d3748;
}

.check {
  color: #0578c0;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===================================================
   SERVICES
=================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 20px rgba(30,58,95,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid #e8eef5;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(30,58,95,0.14);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #e8f0f8, #d0e4f5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #1e3a5f;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.service-card p {
  font-size: 0.9rem;
  color: #5a6a7a;
  line-height: 1.65;
}

/* ===================================================
   SERVICE AREA
=================================================== */
.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-area-text h2 { margin-bottom: 1rem; }

.area-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.area-col h4 {
  font-size: 0.85rem;
  color: #1e3a5f;
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #0578c0;
}

.area-col ul li {
  font-size: 0.88rem;
  color: #5a6a7a;
  padding: 0.2rem 0;
}

.area-note {
  font-size: 0.88rem;
  color: #5a6a7a;
  font-style: italic;
}

.area-note a { color: #0578c0; text-decoration: underline; }

.service-area-map {
  display: flex;
  justify-content: center;
}

.map-visual {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(30,58,95,0.15);
}

.region-map { width: 100%; height: auto; display: block; }

/* ===================================================
   PORTFOLIO
=================================================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.portfolio-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30,58,95,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: #fff;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(30,58,95,0.18);
}

.portfolio-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.portfolio-mockup {
  width: 100%;
  max-width: 260px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

.mockup-bar {
  background: #e8eef5;
  padding: 6px 10px;
  display: flex;
  gap: 5px;
  align-items: center;
}

.mockup-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
}

.mockup-content { padding: 0; }

.mockup-nav {
  height: 22px;
  background: #1e3a5f;
}

.mockup-hero {
  height: 55px;
}

.mockup-body { padding: 8px; }

.mockup-line {
  height: 6px;
  background: #e0e8f0;
  border-radius: 3px;
  margin-bottom: 5px;
}

.w80 { width: 80%; }
.w70 { width: 70%; }
.w75 { width: 75%; }
.w60 { width: 60%; }
.w50 { width: 50%; }
.w55 { width: 55%; }

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: 8px;
}

.mockup-card-sm {
  height: 28px;
  background: #e0e8f0;
  border-radius: 4px;
}

.portfolio-info {
  padding: 1.5rem;
}

.portfolio-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0578c0;
  background: #fdf0e8;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 0.6rem;
}

.portfolio-info h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.portfolio-info p { font-size: 0.88rem; color: #5a6a7a; margin: 0; }

.portfolio-cta { text-align: center; }

/* ===================================================
   PROCESS
=================================================== */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 0 1.5rem;
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Merriweather', serif;
  color: #0578c0;
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.process-step h3 { margin-bottom: 0.75rem; }
.process-step p { font-size: 0.9rem; color: #5a6a7a; }

.process-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #0578c0, #4a90c4);
  margin-top: 2rem;
  flex-shrink: 0;
  align-self: flex-start;
}

/* ===================================================
   TESTIMONIALS
=================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 2rem;
  transition: background 0.25s;
}

.testimonial-card:hover { background: rgba(255,255,255,0.11); }

.stars {
  color: #f0a060;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  border: none;
  padding: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

/* ===================================================
   PRICING
=================================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.pricing-card {
  background: #fff;
  border: 2px solid #e8eef5;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30,58,95,0.12);
}

.pricing-card.featured {
  border-color: #0578c0;
  background: #fff8f4;
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(224,123,57,0.2);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #0578c0;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-header { margin-bottom: 1.5rem; }
.pricing-header h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }

.price {
  display: flex;
  align-items: flex-end;
  gap: 0.15rem;
  color: #1e3a5f;
}

.currency {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.price > span:nth-child(2) {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: 'Merriweather', serif;
  line-height: 1;
}

.period {
  font-size: 0.8rem;
  color: #5a6a7a;
  margin-bottom: 0.4rem;
}

.pricing-features {
  margin-bottom: 1.75rem;
}

.pricing-features li {
  font-size: 0.88rem;
  color: #5a6a7a;
  padding: 0.4rem 0;
  border-bottom: 1px solid #f0f4f8;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: #5a6a7a;
}

.pricing-note a { color: #0578c0; text-decoration: underline; }

/* ===================================================
   CONTACT
=================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: #5a6a7a; margin-bottom: 2rem; }

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

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: #e8f0f8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #5a6a7a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.15rem;
}

.contact-detail a, .contact-detail span {
  font-size: 0.95rem;
  color: #1e3a5f;
  font-weight: 500;
}

.contact-detail a:hover { color: #0578c0; }

.contact-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(30,58,95,0.1);
}

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

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1e3a5f;
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d0dce8;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #2d3748;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #4a90c4;
  box-shadow: 0 0 0 3px rgba(74,144,196,0.15);
}

.form-group textarea { resize: vertical; }

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: #5a6a7a;
  margin-top: 0.75rem;
}

.form-success {
  text-align: center;
  padding: 3rem 2rem;
}

.success-icon {
  width: 60px;
  height: 60px;
  background: #4a9a6a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { color: #5a6a7a; }

/* ===================================================
   FOOTER
=================================================== */
.site-footer {
  background: #0f2035;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand .logo-light {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.footer-links h4, .footer-contact h4 {
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-links a:hover { color: #f0a060; }

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.4rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-contact a:hover { color: #f0a060; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin: 0;
}

/* ===================================================
   ANIMATIONS
=================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 2.5rem; }
  .service-area-grid { gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section-pad { padding: 56px 0; }

  /* Nav */
  .hamburger { display: flex; }

  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: #0f2035;
    padding: 5rem 2rem 2rem;
    transition: right 0.35s ease;
    z-index: 999;
  }

  .main-nav.open { right: 0; }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .main-nav a { font-size: 1rem; color: rgba(255,255,255,0.85) !important; }
  .nav-cta { display: inline-block; }

  /* Hero */
  .hero-content { padding: 2rem 1.5rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }

  /* Trust bar */
  .trust-bar-inner { gap: 0; }
  .trust-item { padding: 0.75rem 1.25rem; }
  .trust-divider { display: none; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-badge-card { right: 0.5rem; bottom: -1rem; }

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

  /* Service area */
  .service-area-grid { grid-template-columns: 1fr; }
  .area-columns { grid-template-columns: 1fr; gap: 1rem; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr; }

  /* Process */
  .process-steps { flex-direction: column; align-items: center; }
  .process-connector { width: 2px; height: 40px; background: linear-gradient(180deg, #0578c0, #4a90c4); margin: 0; }
  .process-step { padding: 0; max-width: 400px; width: 100%; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .contact-form-wrap { padding: 1.5rem; }
  .trust-bar-inner { flex-wrap: wrap; justify-content: center; }
  .trust-item { width: 50%; }
}
