/* ============================================
   MINT BUILDING LLC — styles.css
   Clean, professional, mobile-first
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --mint: #59a863;
  --mint-dark: #478a50;
  --mint-light: #e8f5ea;
  --mint-lighter: #f2faf3;
  --charcoal: #1e2a32;
  --slate: #2d3e4a;
  --gray-700: #3d4f5f;
  --gray-600: #556270;
  --gray-500: #718096;
  --gray-400: #a0aec0;
  --gray-300: #cbd5e0;
  --gray-200: #e2e8f0;
  --gray-100: #edf2f7;
  --gray-50: #f7fafc;
  --white: #ffffff;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Space Grotesk', 'Inter', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.1);
  --shadow-xl: 0 20px 48px rgba(0,0,0,.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--mint);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--mint-dark);
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
}

.btn-full {
  width: 100%;
}

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

.btn-primary:hover {
  background: var(--mint-dark);
  border-color: var(--mint-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(89,168,99,.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}

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

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

.btn-white:hover {
  background: var(--gray-50);
  color: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}

/* ---- Section Helpers ---- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
}

.required {
  color: #e53e3e;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(255,255,255,.98);
  border-bottom-color: var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 32px;
}

.main-nav a {
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mint);
  transition: width var(--transition);
}

.main-nav a:hover {
  color: var(--charcoal);
}

.main-nav a:hover::after {
  width: 100%;
}

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

.phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 15px;
}

.phone-link svg {
  color: var(--mint);
}

.phone-link:hover {
  color: var(--mint);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  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;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* 
   HERO BACKGROUND:
   Replace this gradient with a background-image when you have a real photo.
   Example: background: url('images/hero.jpg') center/cover;
*/
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #1a2f25 0%, #1e3a2a 25%, #1b2e23 50%, #162520 100%);
  z-index: 0;
}

/* Subtle texture/pattern overlay */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(ellipse at 20% 50%, rgba(89,168,99,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(89,168,99,.08) 0%, transparent 50%);
}

/* Geometric accent */
.hero-bg::after {
  content: '';
  position: absolute;
  right: -200px;
  top: -200px;
  width: 800px;
  height: 800px;
  border: 1px solid rgba(89,168,99,.08);
  border-radius: 50%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(89,168,99,.15);
  border: 1px solid rgba(89,168,99,.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  letter-spacing: .5px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(40px, 7vw, 72px);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  font-weight: 500;
}

.trust-item svg {
  color: var(--mint);
  flex-shrink: 0;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--white);
}

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

.service-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

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

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--mint-light);
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  color: var(--mint);
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: var(--mint);
  color: var(--white);
}

.service-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.service-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================
   WHY MINT BUILDING
   ============================================ */
.why-us {
  padding: 100px 0;
  background: var(--gray-50);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

.why-card {
  padding: 36px 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.why-number {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--mint-light);
  line-height: 1;
  margin-bottom: 16px;
  transition: color var(--transition);
}

.why-card:hover .why-number {
  color: var(--mint);
}

.why-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
}

.stat-label {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 2px;
}

.about-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 400px;
  background: var(--gray-50);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-lg);
  color: var(--gray-400);
  font-size: 14px;
  font-weight: 500;
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: 100px 0;
  background: var(--gray-50);
}

.process-steps {
  max-width: 680px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  position: relative;
}

.process-step:not(:last-child) {
  border-bottom: 1px solid var(--gray-200);
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mint);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
}

.step-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.step-content p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio {
  padding: 100px 0;
  background: var(--white);
}

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

.portfolio-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

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

.portfolio-image {
  overflow: hidden;
  aspect-ratio: 16/11;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.4,0,.2,1);
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-info {
  padding: 24px;
}

.portfolio-info h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.portfolio-info p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 12px;
}

.portfolio-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--mint-light);
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--gray-50);
}

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

.testimonial-card {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-stars {
  color: #f6ad55;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card blockquote p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: var(--charcoal);
  font-size: 14px;
}

.author-location {
  font-size: 13px;
  color: var(--gray-500);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--slate) 100%);
}

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

.cta-inner h2 {
  font-size: clamp(28px, 4vw, 38px);
  color: var(--white);
  margin-bottom: 12px;
}

.cta-inner p {
  font-size: 17px;
  color: var(--gray-400);
  margin-bottom: 32px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--white);
}

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

.contact-info h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 16px;
  color: var(--gray-600);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail svg {
  flex-shrink: 0;
  color: var(--mint);
  margin-top: 2px;
}

.contact-detail strong {
  display: block;
  font-size: 14px;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.contact-detail a,
.contact-detail span {
  font-size: 15px;
  color: var(--gray-600);
}

.contact-detail a:hover {
  color: var(--mint);
}

/* ---- Form ---- */
.contact-form-wrap {
  background: var(--gray-50);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
}

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

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

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

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23718096' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(89,168,99,.15);
}

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

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--charcoal);
  padding: 64px 0 0;
}

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

.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: .9;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-license {
  font-size: 13px !important;
  color: var(--mint) !important;
  font-weight: 600;
}

.site-footer h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
}

.site-footer ul {
  list-style: none;
}

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

.site-footer ul li,
.site-footer ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

.site-footer ul li a:hover {
  color: var(--mint);
}

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

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

.footer-credit a {
  color: rgba(255,255,255,.35);
  font-size: 12px;
  transition: color var(--transition);
}

.footer-credit a:hover {
  color: var(--mint);
}

/* ============================================
   ANIMATIONS (Scroll-triggered)
   ============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay for grid children */
.services-grid [data-animate]:nth-child(2),
.why-grid [data-animate]:nth-child(2),
.portfolio-grid [data-animate]:nth-child(2),
.testimonials-grid [data-animate]:nth-child(2) {
  transition-delay: 0.1s;
}

.services-grid [data-animate]:nth-child(3),
.why-grid [data-animate]:nth-child(3),
.portfolio-grid [data-animate]:nth-child(3),
.testimonials-grid [data-animate]:nth-child(3) {
  transition-delay: 0.2s;
}

.services-grid [data-animate]:nth-child(4),
.why-grid [data-animate]:nth-child(4),
.portfolio-grid [data-animate]:nth-child(4) {
  transition-delay: 0.3s;
}

.services-grid [data-animate]:nth-child(5) { transition-delay: 0.15s; }
.services-grid [data-animate]:nth-child(6) { transition-delay: 0.2s; }
.services-grid [data-animate]:nth-child(7) { transition-delay: 0.1s; }
.services-grid [data-animate]:nth-child(8) { transition-delay: 0.15s; }
.services-grid [data-animate]:nth-child(9) { transition-delay: 0.2s; }
.services-grid [data-animate]:nth-child(10) { transition-delay: 0.25s; }

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { display: flex; }

  /* Mobile Nav */
  .main-nav.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 999;
    align-items: center;
    justify-content: center;
  }

  .main-nav.open ul {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .main-nav.open a {
    font-size: 24px;
    font-weight: 600;
    color: var(--charcoal);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image { order: -1; }

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

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

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

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 640px) {
  .container { padding: 0 20px; }

  .hero { min-height: auto; }
  .hero-content { padding: 115px 20px 60px; }

  .hero-badge { font-size: 12px; padding: 5px 14px; margin-bottom: 20px; }

  .hero h1 { font-size: 32px; margin-bottom: 16px; }

  .hero-sub { font-size: 15px; margin-bottom: 28px; line-height: 1.5; }

  .hero-actions { flex-direction: row; flex-wrap: wrap; margin-bottom: 32px; gap: 12px; }
  .hero-actions .btn { width: auto; text-align: center; flex: 0 0 auto; }

  .hero-trust {
    flex-direction: column;
    gap: 10px;
  }

  .trust-item { font-size: 13px; }

  .services { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }

  .why-us { padding: 72px 0; }
  .why-grid { grid-template-columns: 1fr; }

  .about { padding: 72px 0; }

  .about-stats {
    flex-direction: column;
    gap: 16px;
  }

  .process { padding: 72px 0; }

  .portfolio { padding: 72px 0; }
  .portfolio-grid { grid-template-columns: 1fr; }

  .testimonials { padding: 72px 0; }

  .cta-banner { padding: 56px 0; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; text-align: center; }

  .contact { padding: 72px 0; }
  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

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

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

  .phone-link span { display: none; }
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .site-header,
  .mobile-toggle,
  .hero-actions,
  .cta-banner { display: none; }

  body { font-size: 12pt; color: #000; }
  .hero { min-height: auto; padding: 40px 0; }
  .hero-bg, .hero-overlay { display: none; }
  .hero h1, .hero-sub { color: #000; }
}
