/*
Theme Name: Shames Insurance
Theme URI: https://shamesins.local/
Author: Shames Insurance
Description: A responsive, one-page insurance website created for Shames Insurance.
Version: 1.0.0
Text Domain: shames-insurance
*/

:root {
  --primary: #0878b9;
  --primary-dark: #055581;
  --secondary: #11b6ae;
  --secondary-dark: #078c88;
  --ink: #102a3b;
  --muted: #5f7483;
  --surface: #f4f9fc;
  --line: #dbe8ef;
  --white: #fff;
  --shadow: 0 20px 55px rgba(5, 63, 96, .11);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 100px 0; }
.section-soft { background: var(--surface); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { width: 27px; height: 3px; content: ""; border-radius: 3px; background: var(--secondary); }
.section-heading { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.section-heading h2, .split-content h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.section-heading p, .split-content > p { margin: 0; color: var(--muted); font-size: 18px; }
.btn {
  display: inline-flex;
  min-height: 52px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--white); background: linear-gradient(135deg, var(--primary), #069ac0); box-shadow: 0 12px 25px rgba(8,120,185,.24); }
.btn-primary:hover { box-shadow: 0 17px 32px rgba(8,120,185,.32); }
.btn-light { color: var(--primary-dark); background: var(--white); }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.btn-outline:hover { color: var(--primary); background: var(--white); }
.icon { width: 22px; height: 22px; flex: 0 0 auto; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* Header */
.topbar { color: #d7edf7; background: #073d5d; font-size: 13px; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar-group { display: flex; align-items: center; gap: 22px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: var(--white); }
.topbar .icon { width: 15px; height: 15px; color: #55d9d1; }
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  background: rgba(255,255,255,.96);
  box-shadow: 0 5px 25px rgba(16,42,59,.07);
  backdrop-filter: blur(14px);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.site-logo img { width: 145px; max-height: 68px; object-fit: contain; }
.main-nav { margin-left: auto; }
.nav-list { display: flex; margin: 0; padding: 0; align-items: center; gap: 30px; list-style: none; }
.nav-list a { position: relative; padding: 28px 0; color: #284454; font-size: 14px; font-weight: 700; }
.nav-list a::after { position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; content: ""; border-radius: 2px; background: var(--secondary); transform: scaleX(0); transition: transform .25s; }
.nav-list a:hover, .nav-list a.active { color: var(--primary); }
.nav-list a:hover::after, .nav-list a.active::after { transform: scaleX(1); }
.nav-toggle { display: none; width: 46px; height: 44px; padding: 10px; border: 0; border-radius: 8px; color: var(--ink); background: var(--surface); cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; border-radius: 2px; background: currentColor; transition: transform .25s, opacity .25s; }

/* Hero */
.hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #064c75;
}
.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3,45,72,.98) 0%, rgba(3,60,92,.91) 36%, rgba(3,70,100,.4) 63%, rgba(3,55,81,.16) 100%),
    url("assets/images/hero-insurance.png") center/cover no-repeat;
}
.hero::after {
  position: absolute;
  right: -120px;
  bottom: -240px;
  width: 520px;
  height: 520px;
  content: "";
  border: 85px solid rgba(22,190,183,.13);
  border-radius: 50%;
}
.hero-content { position: relative; z-index: 1; max-width: 670px; padding: 100px 0 125px; }
.hero-kicker { display: inline-flex; padding: 8px 13px; align-items: center; gap: 9px; border: 1px solid rgba(255,255,255,.22); border-radius: 100px; color: #d5fbf8; background: rgba(255,255,255,.1); font-size: 13px; font-weight: 800; letter-spacing: .05em; }
.hero-kicker span { width: 8px; height: 8px; border-radius: 50%; background: #50ded4; box-shadow: 0 0 0 5px rgba(80,222,212,.15); }
.hero h1 { max-width: 650px; margin: 24px 0 22px; font-size: clamp(45px, 6vw, 76px); line-height: 1.02; letter-spacing: -.045em; }
.hero h1 em { color: #5de0d8; font-style: normal; }
.hero p { max-width: 590px; margin: 0 0 34px; color: #d9eaf2; font-size: 19px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-trust { display: flex; margin-top: 38px; align-items: center; gap: 14px; color: #d9edf5; font-size: 13px; font-weight: 700; }
.trust-avatars { display: flex; }
.trust-avatars span { width: 34px; height: 34px; margin-left: -7px; display: grid; place-items: center; border: 2px solid #11658b; border-radius: 50%; color: var(--white); background: #18a8ac; font-size: 11px; }
.trust-avatars span:first-child { margin-left: 0; background: #1687bd; }
.trust-avatars span:last-child { background: #0e597f; }
.hero-bottom { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; }
.quick-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-radius: 18px 18px 0 0; overflow: hidden; color: var(--ink); background: var(--white); box-shadow: var(--shadow); }
.quick-item { min-height: 104px; padding: 22px 25px; display: flex; align-items: center; gap: 14px; border-right: 1px solid var(--line); }
.quick-item:last-child { border-right: 0; }
.quick-icon { width: 48px; height: 48px; margin: 0; display: grid; flex: 0 0 auto; place-items: center; align-self: center; border-radius: 14px; color: var(--primary); background: #eaf6fb; }
.quick-icon .icon { width: 22px; height: 22px; }
.quick-copy { min-width: 0; display: flex; flex-direction: column; justify-content: center; line-height: 1.25; }
.quick-copy strong, .quick-copy small { display: block; margin: 0; }
.quick-copy strong { color: var(--ink); font-size: 17px; }
.quick-copy small { margin-top: 5px; color: var(--muted); font-size: 12px; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { position: relative; min-height: 290px; padding: 34px 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .3s, border-color .3s, box-shadow .3s; }
.service-card:hover { transform: translateY(-7px); border-color: transparent; box-shadow: var(--shadow); }
.service-card::after { position: absolute; right: -35px; bottom: -45px; width: 120px; height: 120px; content: ""; border-radius: 50%; background: rgba(17,182,174,.06); }
.service-icon { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 18px; color: var(--primary); background: linear-gradient(145deg,#e7f5fb,#f4fbfd); }
.service-icon .icon { width: 30px; height: 30px; }
.service-card:nth-child(2n) .service-icon { color: var(--secondary-dark); background: #e9f9f7; }
.service-card h3 { margin: 23px 0 10px; font-size: 22px; line-height: 1.25; }
.service-card p { margin: 0 0 20px; color: var(--muted); font-size: 15px; }
.text-link { display: inline-flex; align-items: center; gap: 7px; color: var(--primary); font-size: 14px; font-weight: 800; }
.text-link .icon { width: 17px; transition: transform .2s; }
.text-link:hover .icon { transform: translateX(4px); }

/* About */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 78px; }
.about-visual { position: relative; min-height: 510px; }
.about-photo { position: absolute; inset: 0 70px 0 0; width: calc(100% - 70px); height: 100%; border-radius: 32px 90px 32px 32px; object-fit: cover; object-position: center; box-shadow: var(--shadow); }
.experience-card { position: absolute; right: 0; bottom: 43px; width: 200px; padding: 24px; border-radius: 18px; background: var(--white); box-shadow: var(--shadow); }
.experience-card strong { display: block; color: var(--primary); font-size: 38px; line-height: 1; }
.experience-card span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; font-weight: 700; }
.check-list { margin: 28px 0 34px; padding: 0; list-style: none; }
.check-list li { margin: 12px 0; display: flex; align-items: center; gap: 11px; font-weight: 700; }
.check-list .icon { width: 21px; color: var(--secondary-dark); }
.mini-stats { display: grid; grid-template-columns: repeat(3,1fr); margin-top: 38px; padding-top: 30px; border-top: 1px solid var(--line); gap: 20px; }
.mini-stat strong, .mini-stat span { display: block; }
.mini-stat strong { color: var(--primary); font-size: 28px; line-height: 1.2; }
.mini-stat span { color: var(--muted); font-size: 12px; font-weight: 700; }

/* Why us and process */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit { padding: 28px 23px; border-radius: 18px; background: var(--white); box-shadow: 0 12px 35px rgba(5,73,105,.07); }
.benefit-number { color: rgba(8,120,185,.15); font-size: 42px; font-weight: 900; line-height: 1; }
.benefit h3 { margin: 15px 0 8px; font-size: 19px; }
.benefit p { margin: 0; color: var(--muted); font-size: 14px; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; }
.process-grid::before { position: absolute; top: 39px; right: 17%; left: 17%; height: 1px; content: ""; border-top: 2px dashed #b7d8e5; }
.process-step { position: relative; text-align: center; }
.step-icon { position: relative; z-index: 1; width: 78px; height: 78px; margin: 0 auto 22px; display: grid; place-items: center; border: 7px solid var(--white); border-radius: 50%; color: var(--white); background: linear-gradient(135deg,var(--primary),var(--secondary)); box-shadow: 0 10px 25px rgba(8,120,185,.23); }
.step-icon .icon { width: 28px; }
.process-step h3 { margin: 0 0 8px; font-size: 21px; }
.process-step p { max-width: 290px; margin: 0 auto; color: var(--muted); font-size: 15px; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.stars { color: #f2ac32; letter-spacing: 3px; }
.testimonial blockquote { margin: 18px 0 25px; color: #3d5665; font-size: 16px; font-style: italic; }
.person { display: flex; align-items: center; gap: 12px; }
.person-avatar { width: 43px; height: 43px; display: grid; place-items: center; border-radius: 50%; color: var(--white); background: linear-gradient(135deg,var(--primary),var(--secondary)); font-weight: 800; }
.person strong, .person span { display: block; }
.person span { color: var(--muted); font-size: 12px; }

/* FAQ and contact */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item { margin-bottom: 12px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); overflow: hidden; }
.faq-question { width: 100%; padding: 21px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 0; color: var(--ink); background: transparent; cursor: pointer; text-align: left; font-weight: 800; }
.faq-question .icon { width: 18px; color: var(--primary); transition: transform .25s; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { margin: 0; padding: 0 24px 22px; color: var(--muted); }
.contact-section { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(130deg,#064d76,#087eaa 60%,#0aa8a5); }
.contact-section::after { position: absolute; top: -200px; right: -110px; width: 500px; height: 500px; content: ""; border: 90px solid rgba(255,255,255,.06); border-radius: 50%; }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; gap: 75px; align-items: center; }
.contact-copy h2 { margin: 0 0 16px; font-size: clamp(34px,4vw,52px); line-height: 1.12; letter-spacing: -.035em; }
.contact-copy > p { color: #d6edf5; font-size: 18px; }
.contact-detail { margin-top: 28px; display: flex; align-items: center; gap: 14px; }
.contact-detail > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.12); }
.contact-detail small, .contact-detail strong { display: block; }
.contact-detail small { color: #bee1ed; }
.contact-card { padding: 36px; border-radius: 24px; color: var(--ink); background: var(--white); box-shadow: 0 25px 60px rgba(0,45,67,.22); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-full { grid-column: 1 / -1; }
.contact-card label { display: block; margin-bottom: 6px; color: #3b5261; font-size: 13px; font-weight: 800; }
.contact-card input, .contact-card select, .contact-card textarea { width: 100%; padding: 13px 14px; border: 1px solid #d5e3e9; border-radius: 9px; outline: none; color: var(--ink); background: #fbfdfe; transition: border .2s, box-shadow .2s; }
.contact-card input:focus, .contact-card select:focus, .contact-card textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(8,120,185,.1); }
.contact-card textarea { min-height: 105px; resize: vertical; }
.contact-card .btn { width: 100%; margin-top: 5px; }
.form-note { margin: 10px 0 0; color: var(--muted); font-size: 11px; text-align: center; }
.submission-status { font-size: 12px; font-weight: 700; }
#contact button.is-submitting { position: relative; pointer-events: none; cursor: wait; opacity: .82; }
#contact button.is-submitting::after { content: ''; width: 15px; height: 15px; margin-left: 10px; border: 2px solid rgba(255,255,255,.45); border-top-color: #fff; border-radius: 50%; animation: shames-spin .7s linear infinite; }
@keyframes shames-spin { to { transform: rotate(360deg); } }
.form-alert { padding: 12px 14px; border-radius: 9px; color: #8a3327; background: #fff0ed; font-size: 14px; font-weight: 700; }
.form-success { padding: 14px 16px; border-radius: 9px; color: #076b65; background: #e7faf7; font-size: 15px; font-weight: 800; }
.form-success strong,.form-success small { display: block; }
.form-success small { margin-top: 4px; font-size: 12px; font-weight: 600; }
.quote-submit-frame { position: fixed; width: 1px; height: 1px; border: 0; opacity: 0; pointer-events: none; }
.form-trap { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.optional { color: var(--muted); font-weight: 500; }
.file-input { position: absolute; width: 1px !important; height: 1px; opacity: 0; pointer-events: none; }
.file-upload { min-height: 105px; padding: 20px; display: flex !important; align-items: center; justify-content: center; gap: 15px; border: 2px dashed #b8d6e3; border-radius: 12px; cursor: pointer; background: #f5fafc; transition: border-color .2s, background .2s; }
.file-upload:hover { border-color: var(--primary); background: #edf8fc; }
.file-upload .icon { width: 34px; height: 34px; color: var(--primary); }
.file-upload span,.file-upload strong,.file-upload small { display: block; }
.file-upload strong { color: var(--ink); font-size: 15px; }
.file-upload small { margin-top: 3px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.selected-files { margin-top: 8px; color: var(--muted); font-size: 12px; }
.selected-files strong { display: block; color: var(--secondary-dark); }
.selected-files ul { max-height: 105px; margin: 6px 0 0; padding-left: 19px; overflow: auto; }
.selected-files li { margin: 2px 0; overflow-wrap: anywhere; }
.upload-file-list { display: grid; gap: 9px; margin-top: 10px; }
.upload-file-row { padding: 10px 12px; border: 1px solid var(--line); border-radius: 9px; background: #fff; }
.upload-file-heading,.upload-file-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.upload-file-heading { margin-bottom: 7px; }
.upload-file-name { min-width: 0; overflow: hidden; color: var(--ink); font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.upload-file-heading small { flex: 0 0 auto; color: var(--muted); }
.upload-file-row progress { display: block; width: 100%; height: 9px; margin: 0 0 7px; overflow: hidden; border: 0; border-radius: 999px; background: #dbe8ef; accent-color: var(--secondary); }
.upload-file-row progress::-webkit-progress-bar { border-radius: 999px; background: #dbe8ef; }
.upload-file-row progress::-webkit-progress-value { border-radius: 999px; background: linear-gradient(90deg,var(--primary),var(--secondary)); }
.upload-file-row progress::-moz-progress-bar { border-radius: 999px; background: linear-gradient(90deg,var(--primary),var(--secondary)); }
.upload-file-row.is-failed progress { accent-color: #a13d30; }
.upload-file-row.is-failed .upload-file-footer > span:first-child { color: #a13d30; font-weight: 700; }
.upload-file-row.is-uploaded .upload-file-footer > span:first-child { color: var(--secondary-dark); font-weight: 700; }
.upload-file-actions { display: flex; gap: 9px; }
.upload-file-actions button { padding: 0; border: 0; color: var(--primary); background: transparent; cursor: pointer; font: inherit; font-weight: 800; }
.upload-file-actions button:hover { text-decoration: underline; }
.camera-button { width: max-content; margin: 10px 0 0 auto; padding: 8px 13px; display: none !important; align-items: center; gap: 7px; border: 1px solid #c9dfe8; border-radius: 8px; color: var(--primary); cursor: pointer; background: #f5fafc; font-size: 12px !important; }
.camera-button:hover { border-color: var(--primary); background: #edf8fc; }
.camera-button .icon { width: 17px; height: 17px; }

/* Footer */
.site-footer { color: #bdd4df; background: #062f48; }
.footer-main { padding: 70px 0 52px; display: grid; grid-template-columns: 1.4fr .75fr .85fr 1fr; gap: 55px; }
.footer-logo { width: 155px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-about p { max-width: 330px; margin: 0; font-size: 14px; }
.footer-title { margin: 8px 0 18px; color: var(--white); font-size: 16px; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: 9px 0; }
.footer-links a { font-size: 14px; }
.footer-links a:hover { color: #5ce0d8; }
.socials { display: flex; margin-top: 22px; gap: 9px; }
.socials a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 9px; color: var(--white); }
.socials a:hover { border-color: var(--secondary); background: var(--secondary-dark); }
.socials .icon { width: 17px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contact .icon { width: 17px; margin-top: 3px; color: #55d9d1; }
.copyright { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }
.copyright-inner { display: flex; justify-content: space-between; gap: 20px; }
.back-top { position: fixed; z-index: 50; right: 22px; bottom: 22px; width: 44px; height: 44px; display: grid; place-items: center; border: 0; border-radius: 11px; color: var(--white); background: var(--primary); box-shadow: 0 10px 25px rgba(5,61,90,.25); cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(12px); transition: .25s; }
.back-top.visible { opacity: 1; pointer-events: auto; transform: none; }

@media (max-width: 1020px) {
  .nav-list { gap: 20px; }
  .nav-wrap > .btn { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .split { gap: 45px; }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-main > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  .camera-button { display: flex !important; }
  .topbar { display: none; }
  .nav-wrap { min-height: 72px; }
  .site-logo img { width: 125px; }
  .nav-toggle { display: block; }
  .main-nav { position: fixed; inset: 72px 0 0; visibility: hidden; margin: 0; background: rgba(6,47,72,.98); opacity: 0; transition: opacity .25s, visibility .25s; }
  .main-nav.open { visibility: visible; opacity: 1; }
  .nav-list { padding: 35px 28px; display: block; }
  .nav-list li { border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-list a { display: block; padding: 17px 0; color: var(--white); font-size: 17px; }
  .nav-list a::after { display: none; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: 760px; }
  .hero::before { background: linear-gradient(90deg,rgba(3,45,72,.97),rgba(3,60,92,.77)), url("assets/images/hero-insurance.png") 63% center/cover no-repeat; }
  .hero-content { padding: 85px 0 190px; }
  .quick-strip { grid-template-columns: repeat(2,1fr); }
  .quick-item:nth-child(2) { border-right: 0; }
  .quick-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split { grid-template-columns: 1fr; }
  .about-visual { max-width: 600px; width: 100%; margin: 0 auto; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 76px 0; }
  .section-heading { margin-bottom: 35px; }
  .hero { min-height: 820px; }
  .hero-content { padding-top: 70px; }
  .hero h1 { font-size: 45px; }
  .hero p { font-size: 17px; }
  .hero-actions .btn { width: 100%; }
  .quick-item { min-height: 83px; padding: 16px 13px; gap: 10px; }
  .quick-icon { width: 40px; height: 40px; border-radius: 11px; }
  .quick-item strong { font-size: 14px; }
  .quick-copy small { display: none; }
  .services-grid, .benefits-grid, .process-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .process-grid { gap: 35px; }
  .process-grid::before { display: none; }
  .about-visual { min-height: 400px; }
  .about-photo { right: 40px; width: calc(100% - 40px); }
  .experience-card { width: 160px; padding: 18px; }
  .experience-card strong { font-size: 31px; }
  .mini-stats { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .contact-card { padding: 25px 20px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-main > div:last-child { grid-column: auto; }
  .copyright-inner { display: block; text-align: center; }
}
