/* About Me page styles */


.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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


.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-photo-side {
  position: relative;
  background: var(--navy3);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  opacity: 0.85;
}

.hero-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background: linear-gradient(160deg, var(--slate) 0%, #0e1d30 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, var(--navy) 100%);
  pointer-events: none;
}

.hero-photo-side::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  background: var(--gold);
  opacity: 0.6;
  z-index: 2;
}

.hero-content-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 72px 80px 60px;
  position: relative;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}

.hero-name {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}

.hero-name em {
  font-style: normal;
  color: var(--gold);
}

.hero-title {
  font-size: 0.9rem;
  color: var(--sub);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s 0.55s forwards;
}

.hero-tagline {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: rgba(245,240,232,0.7);
  font-style: italic;
  line-height: 1.7;
  min-height: 2.4em;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.7s 0.7s forwards;
}

.hero-tagline .cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--gold);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 1s infinite;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.85s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 13px 28px;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 13px 28px;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(201,168,76,0.5);
  color: var(--gold);
}

.hero-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 40px;
  opacity: 0;
  animation: fadeUp 0.7s 1s forwards;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--sub);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

.hero-scroll-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

.stats-strip {
  background: var(--navy2);
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 0;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
}

.stat-block {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.stat-block:last-child {
  border-right: none;
}

.stat-block:hover {
  background: rgba(201,168,76,0.04);
}

.stat-block::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s;
}

.stat-block:hover::after {
  width: 60%;
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sub);
  margin-top: 8px;
  display: block;
}

.section {
  padding: 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  padding: 80px 60px;
}

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 0.93rem;
  color: var(--sub);
  line-height: 1.8;
  max-width: 560px;
}

.story-section {
  background: var(--navy);
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.story-text p {
  font-size: 0.93rem;
  color: var(--sub);
  line-height: 1.85;
}

.story-text p + p {
  margin-top: 16px;
}

.story-highlight {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 3px solid var(--gold);
  background: rgba(201,168,76,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.story-highlight p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
}

.story-visual {
  position: relative;
}

.story-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  display: block;
  border: 1px solid var(--border);
}

.story-img-placeholder {
  width: 100%;
  height: 480px;
  background: var(--navy2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.story-credential {
  position: absolute;
  bottom: -40px;
  right: -20px;
  background: var(--navy2);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  min-width: 200px;
}

.cred-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.cred-value {
  font-size: 1.30rem;
  color: var(--white);
}

.cred-ren {
  margin-top: 4px;
  font-size: 0.80rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.cred-sub {
  margin-top: 4px;
  font-size: 0.80rem;
  color: var(--sub);
}


.story-visual {
  position: relative;
}

.story-principles {
  background: var(--navy2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px 56px;
}

.story-principles-eyebrow {
  margin-bottom: 28px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.story-principle {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.story-principle:first-of-type {
  padding-top: 0;
}

.story-principle:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.story-principle > svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

.story-principle h3 {
  margin-bottom: 6px;
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--cream);
}

.story-principle p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--sub);
}



.deals-section {
  background: var(--navy2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.deals-header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 60px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.deals-filter-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 60px 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.deal-filter-btn {
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--sub);
  cursor: pointer;
  font-family: "Inter", sans-serif;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.deal-filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.deal-filter-btn:hover:not(.active) {
  color: var(--cream);
  border-color: rgba(255,255,255,0.2);
}

.deals-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 60px 56px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
}

.deal-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: border-color 0.25s, transform 0.25s;
  cursor: default;
}

.deal-card:hover {
  border-color: rgba(201,168,76,0.22);
  transform: translateX(4px);
}

.deal-type-badge {
  flex-shrink: 0;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 2px;
  white-space: nowrap;
}

.badge-sold {
  background: var(--gold);
  color: var(--navy);
}

.badge-rented {
  background: var(--slate);
  color: var(--white);
}

.deal-info {
  flex: 1;
  min-width: 0;
}

.deal-name {
  font-size: 0.88rem;
  color: var(--cream);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.deal-loc {
  font-size: 0.75rem;
  color: var(--sub);
  margin-top: 2px;
}

.deal-price {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.deal-date {
  font-size: 0.7rem;
  color: var(--sub);
  white-space: nowrap;
  flex-shrink: 0;
}

.deal-card.hidden {
  display: none;
}

.deals-show-more-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px 40px;
  display: flex;
  justify-content: center;
}

.btn-show-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 1px solid var(--border);
  color: var(--sub);
  padding: 11px 28px;
  border-radius: 2px;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-show-more:hover {
  border-color: rgba(201,168,76,0.4);
  color: var(--gold);
}

.spec-section {
  background: var(--navy2);
}

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

.spec-card {
  /* background: var(--navy2); */
  background: var(--navy);
  /* border: 1px solid var(--border); */
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: border-color 0.3s, transform 0.3s;
}

.spec-card:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
}

.spec-icon {
  color: var(--gold);
  margin-bottom: 14px;
}

.spec-name {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
}

.spec-desc {
  font-size: 0.82rem;
  color: var(--sub);
  line-height: 1.7;
}

.testi-section {
  background: var(--navy2);
  overflow: hidden;
}

.testi-track-wrap {
  position: relative;
  max-width: 1200px;
  margin: 36px auto 0;
  padding: 0 60px;
}

.testi-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  scrollbar-width: none;
}

.testi-track::-webkit-scrollbar {
  display: none;
}

.testi-card {
  min-width: 360px;
  scroll-snap-align: start;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.3s;
}

.testi-card:hover {
  border-color: rgba(201,168,76,0.2);
}

.testi-quote-mark {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
}

.testi-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.8);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 18px;
}

.testi-author strong {
  font-style: normal;
  color: var(--cream);
  display: block;
  font-size: 0.85rem;
}

.testi-author span {
  font-size: 0.75rem;
  color: var(--sub);
}

.testi-nav {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
  padding: 0 60px 56px;
  max-width: 1200px;
  margin: 16px auto 0;
}

.testi-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--sub);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-size: 1rem;
}

.testi-nav-btn:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
  color: var(--gold);
}

.credentials-section {
  background: var(--navy);
}

.cred-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 36px;
}

.cred-group-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.lang-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lang-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.lang-item:last-child {
  border-bottom: none;
}

.lang-name {
  font-size: 0.88rem;
  color: var(--cream);
}

.lang-bar-wrap {
  flex: 1;
  margin: 0 16px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.lang-bar {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  width: 0;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}

.lang-level {
  font-size: 0.72rem;
  color: var(--sub);
  white-space: nowrap;
}

.lang-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.lang-note {
  margin-top: 4px;
  font-size: 0.72rem;
  color: var(--sub);
  text-align: right;
}

.lang-note summary {
  cursor: pointer;
  color: var(--gold);
  list-style-position: inside;
  text-align: right;
}

.lang-note p {
  margin: 4px 0 0;
  white-space: nowrap;
  text-align: right;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--sub);
  font-size: 0.78rem;
  padding: 6px 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: border-color 0.2s, color 0.2s;
}

.area-tag:hover {
  border-color: rgba(201,168,76,0.3);
  color: var(--cream);
}

.area-tag svg {
  color: var(--gold);
}

.contact-section {
  background: var(--navy2);
  border-top: 1px solid var(--border);
}

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

.contact-info {
  padding-top: 8px;
}

.contact-info p {
  font-size: 0.92rem;
  color: var(--sub);
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.2s;
}

.contact-method:hover {
  border-color: rgba(201,168,76,0.25);
}

.contact-method-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-method-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sub);
}

.contact-method-val {
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 500;
}

.contact-form {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 6px;
  padding: 36px 32px;
}

.contact-method-static {
  cursor: default;
}

.form-title {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 6px;
}

.form-sub {
  font-size: 0.8rem;
  color: var(--sub);
  margin-bottom: 24px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sub);
}

.form-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 12px 14px;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input::placeholder {
  color: rgba(255,255,255,0.22);
}

.form-input:focus {
  border-color: rgba(201,168,76,0.45);
}

textarea.form-input {
  resize: vertical;
  min-height: 90px;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(90,122,148,0.8)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-select option {
  background: #132236;
}

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 15px;
  border-radius: 2px;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 6px;
}

.form-submit:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

.form-notice {
  margin-top: 10px;
  font-size: 0.72rem;
  color: var(--sub);
  text-align: center;
}


@keyframes blink   { 0%,100%{ opacity:1; } 50%{ opacity:0; } }


.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s, transform 0.65s var(--ease);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-l {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.65s, transform 0.65s var(--ease);
}

.reveal-l.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-r {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.65s, transform 0.65s var(--ease);
}

.reveal-r.revealed {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 960px) {
.nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-photo-side {
    height: 50vh;
  }

  .hero-photo-placeholder {
    min-height: 50vh;
  }

  .hero-content-side {
    padding: 52px 28px 60px;
  }

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

  .stat-block {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat-block:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .stat-block:nth-child(3), .stat-block:nth-child(4) {
    border-bottom: none;
  }

  .section, .section-full {
    padding: 60px 24px;
  }

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

  .story-credential {
    position: static;
    margin-top: 20px;
  }

  .deals-header, .deals-filter-row, .deals-grid, .deals-show-more-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }

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

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

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

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

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

  .testi-track-wrap, .testi-nav {
    padding-left: 24px;
    padding-right: 24px;
  }

  .testi-card {
    min-width: 280px;
  }
}

@media (max-width: 480px) {
.spec-grid {
    grid-template-columns: 1fr;
  }

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

  .deals-grid {
    gap: 8px;
  }
}