/* ==========================================================================
   Yas Jewellers - Luxury Fine Jewellery Portal
   Theme: Golden Luxury & Executive Portal (100% Pixel-Perfect Mobile Responsive)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,600&display=swap');

:root {
  --bg-page: #FBF8F3;
  --bg-white: #FFFFFF;
  --bg-sand: #F5EDE0;
  --bg-sand-light: #FAF4EB;
  
  --gold-primary: #C59138;
  --gold-light: #E7C174;
  --gold-dark: #875414;
  --gold-accent: #DAA520;
  --gold-gradient: linear-gradient(135deg, #E9C679 0%, #C59138 50%, #905915 100%);
  --gold-bar: linear-gradient(90deg, #DDA43B 0%, #F5CE7C 50%, #C48E33 100%);
  
  --espresso-dark: #2B1502;
  --espresso-main: #3D2005;
  --espresso-card: #4A2808;
  
  --text-dark: #2A1705;
  --text-body: #554432;
  --text-muted: #887460;
  --text-light: #FFFFFF;
  
  --border-subtle: #E6D9C8;
  --border-gold: rgba(197, 145, 56, 0.4);
  --border-gold-strong: #D4A347;
  
  --shadow-sm: 0 2px 8px rgba(43, 21, 2, 0.06);
  --shadow-md: 0 10px 30px rgba(43, 21, 2, 0.08);
  --shadow-lg: 0 18px 45px rgba(43, 21, 2, 0.12);
  --shadow-card: 0 14px 38px rgba(43, 21, 2, 0.1);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-cinzel: 'Cinzel', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

.gold-highlight {
  color: #B57E24;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ==========================================================================
   1. Top Advisory / Live 22K Ticker Bar
   ========================================================================== */
.top-advisory-bar {
  background: var(--gold-bar);
  color: var(--espresso-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 0;
  border-bottom: 1px solid rgba(135, 84, 20, 0.2);
  width: 100%;
}

.top-advisory-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.advisory-ticker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  white-space: nowrap;
}

.advisory-badge {
  background: var(--espresso-dark);
  color: #F8E3B6;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.top-utility-items {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  font-size: 0.78rem;
  white-space: nowrap;
}

.top-utility-items a {
  color: var(--espresso-dark);
  font-weight: 700;
}

/* ==========================================================================
   2. Main Navigation Bar with Responsive Capsule Menu
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 8px 0;
  box-shadow: 0 2px 10px rgba(43, 21, 2, 0.03);
  width: 100%;
}

.nav-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  flex-wrap: nowrap;
}

.brand-section {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.brand-section:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.brand-logo-img {
  height: 46px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  display: block;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

/* Desktop Golden Capsule Menu Bar */
.capsule-nav-bar {
  background: var(--espresso-main);
  border: 1.5px solid var(--border-gold-strong);
  border-radius: var(--radius-full);
  padding: 4px 8px;
  box-shadow: 0 4px 16px rgba(43, 21, 2, 0.15);
}

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

.nav-item-link {
  font-size: 0.8rem;
  font-weight: 700;
  color: #EBD6BD;
  padding: 7px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  display: block;
}

.nav-item-link:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

.nav-item-link.active {
  background: var(--gold-gradient);
  color: var(--espresso-dark);
  box-shadow: 0 2px 8px rgba(197, 145, 56, 0.4);
}

/* Right Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--espresso-main);
  color: #FFFFFF;
  border: 1px solid var(--border-gold-strong);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-header-call:hover {
  background: var(--gold-gradient);
  color: var(--espresso-dark);
  border-color: var(--gold-dark);
}

.btn-call-icon-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--espresso-main);
  color: #FFFFFF;
  border: 1px solid var(--border-gold-strong);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
}

.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--bg-sand);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 1.3rem;
  color: var(--espresso-dark);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

/* ==========================================================================
   3. Hero Section (High-Key Luxury Portal with Golden Light)
   ========================================================================== */
.hero-portal-section {
  position: relative;
  padding: 34px 0 40px;
  background: radial-gradient(circle at 80% 20%, rgba(245, 222, 179, 0.45) 0%, rgba(251, 248, 243, 1) 65%);
  overflow: hidden;
}

.hero-portal-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 26px;
}

.hero-main-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--espresso-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero-main-desc {
  font-size: 1.02rem;
  color: var(--text-body);
  max-width: 520px;
  margin-bottom: 18px;
}

.hero-key-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.key-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--espresso-dark);
  box-shadow: var(--shadow-sm);
}

.key-badge-pill span.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #25D366;
}

/* Hero Right Visual */
.hero-visual-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-jewellery-img {
  width: 100%;
  max-width: 400px;
  filter: drop-shadow(0 15px 35px rgba(43, 21, 2, 0.15));
  transition: transform 0.4s ease;
}

.hero-jewellery-img:hover {
  transform: scale(1.02);
}

/* ==========================================================================
   4. Floating 22K Gold Rate & Smart Value Estimator Card
   ========================================================================== */
.hero-action-card-wrap {
  position: relative;
  z-index: 10;
}

.calculator-portal-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 22px 24px;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 1.55fr 0.85fr;
  gap: 20px;
  align-items: stretch;
}

/* Form Left Section */
.calc-form-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.calc-inputs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.input-box-field {
  background: var(--bg-sand-light);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  transition: all 0.2s ease;
}

.input-box-field:focus-within {
  border-color: var(--gold-primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(197, 145, 56, 0.15);
}

.input-box-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--espresso-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}

.input-box-field input {
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--espresso-dark);
  outline: none;
}

/* Quick weight selector pills */
.quick-weight-pills {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.76rem;
  color: var(--text-muted);
}

.weight-pill-btn {
  background: var(--bg-sand-light);
  border: 1px solid var(--border-subtle);
  color: var(--espresso-dark);
  padding: 4px 9px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.weight-pill-btn:hover, .weight-pill-btn.active {
  background: var(--gold-gradient);
  border-color: var(--gold-primary);
  color: var(--espresso-dark);
}

.calc-action-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-calculate-gold {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--espresso-main);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid var(--espresso-dark);
  box-shadow: 0 4px 14px rgba(43, 21, 2, 0.2);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-calculate-gold:hover {
  background: var(--espresso-dark);
  transform: translateY(-1px);
}

/* Side Action & Live Rate Cards */
.side-action-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
}

.side-live-rate-card {
  background: var(--bg-sand-light);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}

.side-live-rate-card:hover {
  transform: translateX(3px);
  background: #FFFFFF;
  border-color: var(--gold-dark);
}

.rate-card-icon {
  width: 42px;
  height: 42px;
  background: var(--gold-gradient);
  color: var(--espresso-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.rate-card-details h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--espresso-dark);
  margin-bottom: 2px;
}

.rate-card-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: #B57E24;
}

.rate-card-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Calculation Result Box */
.calc-result-banner {
  display: none;
  background: var(--espresso-card);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-top: 8px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeIn 0.3s ease;
}

.calc-result-banner.show {
  display: flex;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   5. Bottom App Download Banner Section (Modular Container)
   ========================================================================== */
.app-banner-section {
  padding: 40px 0;
}

.app-banner-glass-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(245, 237, 224, 0.9) 100%);
  border: 2px solid var(--border-gold-strong);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.app-banner-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 30px;
  align-items: center;
}

.app-banner-mockup-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-phone-frame {
  width: 100%;
  max-width: 240px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(43, 21, 2, 0.18);
  border: 4px solid var(--espresso-dark);
}

.app-banner-text-col h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--espresso-dark);
  margin-bottom: 10px;
}

.app-banner-text-col p.banner-desc {
  font-size: 0.98rem;
  color: var(--text-body);
  margin-bottom: 18px;
  max-width: 540px;
}

.app-badges-and-qr {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.playstore-badge-link {
  display: inline-block;
  transition: transform 0.2s ease;
  height: 48px;
}

.playstore-badge-link:hover {
  transform: translateY(-2px);
}

.playstore-badge-link svg {
  height: 48px;
  width: auto;
}

.qr-code-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.qr-code-box img, .qr-code-box svg {
  width: 40px;
  height: 40px;
}

.qr-code-label {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--espresso-dark);
  line-height: 1.2;
}

.qr-code-label span {
  display: block;
  font-size: 0.64rem;
  color: var(--text-muted);
  font-weight: 400;
}

.banner-feature-pills {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.feature-pill-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--espresso-dark);
}

.feature-pill-item span.icon {
  font-size: 1.1rem;
}

/* ==========================================================================
   6. Trust Pillars & Showroom Section
   ========================================================================== */
.pillars-section {
  padding: 26px 0 42px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.pillar-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-md);
}

.pillar-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--bg-sand-light);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.pillar-card h3 {
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.pillar-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Showroom Box */
.showroom-strip-card {
  background: var(--espresso-main);
  color: #FFFFFF;
  border-radius: var(--radius-xl);
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-md);
}

.showroom-strip-card h3 {
  color: #FFFFFF;
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.showroom-strip-card p {
  color: #E6D9C8;
  font-size: 0.86rem;
}

.showroom-strip-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-strip-gold {
  background: var(--gold-gradient);
  color: var(--espresso-dark);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-strip-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(197, 145, 56, 0.4);
}

.btn-strip-outline {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  padding: 9px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-strip-outline:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   7. Subpages (About, Contact, Support)
   ========================================================================== */
.page-hero-clean {
  padding: 32px 0 22px;
  text-align: center;
  background: var(--bg-sand);
  border-bottom: 1px solid var(--border-subtle);
}

.page-hero-clean h1 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.page-hero-clean p {
  font-size: 0.95rem;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
}

.subpage-container {
  padding: 32px 0 50px;
}

.card-white {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}

.card-white h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.card-white p {
  font-size: 0.9rem;
  color: var(--text-body);
  margin-bottom: 10px;
  line-height: 1.6;
}

.faq-box {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-q {
  padding: 14px 18px;
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--espresso-dark);
}

.faq-a {
  padding: 0 18px 14px;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.55;
}

/* ==========================================================================
   8. Footer
   ========================================================================== */
.site-footer {
  background: var(--espresso-dark);
  color: #D6C7B2;
  padding: 36px 0 18px;
  font-size: 0.84rem;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 26px;
  margin-bottom: 26px;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  color: #D6C7B2;
}

.footer-link:hover {
  color: var(--gold-light);
}

.footer-bottom {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
}

.footer-legal-links {
  display: flex;
  gap: 16px;
}

.footer-legal-links a {
  color: #D6C7B2;
}

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

/* ==========================================================================
   9. Strict Pixel-Perfect Mobile Responsiveness
   ========================================================================== */
@media (max-width: 992px) {
  .capsule-nav-bar {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 10px;
    right: 10px;
    z-index: 1000;
    background: var(--espresso-main);
    border: 1.5px solid var(--border-gold-strong);
    border-radius: var(--radius-lg);
    padding: 12px 14px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.4);
  }

  .capsule-nav-bar.mobile-open {
    display: block;
    animation: fadeIn 0.2s ease;
  }

  .nav-links-list {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }

  .nav-item-link {
    text-align: center;
    padding: 9px 12px;
    font-size: 0.85rem;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .btn-header-call {
    display: none;
  }

  .btn-call-icon-mobile {
    display: inline-flex;
  }

  .calculator-portal-card {
    grid-template-columns: 1fr;
  }

  .hero-portal-grid, .app-banner-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-main-desc, .app-banner-text-col p.banner-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-key-badges, .app-badges-and-qr, .banner-feature-pills {
    justify-content: center;
  }

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

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

@media (max-width: 768px) {
  .top-advisory-bar {
    padding: 5px 0;
    text-align: center;
  }

  .top-advisory-content {
    justify-content: center;
    gap: 6px;
  }

  .top-utility-items {
    display: none;
  }

  .advisory-ticker {
    font-size: 0.74rem;
    justify-content: center;
    width: 100%;
  }

  .hero-main-title {
    font-size: 2.1rem;
  }

  .calc-inputs-grid {
    grid-template-columns: 1fr;
  }

  .calc-action-row {
    flex-direction: column;
  }

  .calc-result-banner {
    flex-direction: column;
    text-align: center;
  }

  #calc-wa-quote-btn {
    width: 100%;
    text-align: center;
  }

  .showroom-strip-card {
    padding: 20px 16px;
    text-align: center;
    justify-content: center;
  }

  .showroom-strip-actions {
    width: 100%;
    justify-content: center;
  }

  .showroom-strip-actions a {
    width: 100%;
    text-align: center;
  }

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

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

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

  .footer-legal-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .brand-logo-img {
    height: 36px;
    max-width: 135px;
  }

  .footer-logo-img {
    height: 44px;
    max-width: 160px;
  }

  .hero-main-title {
    font-size: 1.75rem;
  }

  .calculator-portal-card {
    padding: 14px 12px;
  }

  .app-banner-glass-box {
    padding: 18px 12px;
  }

  .app-banner-text-col h2 {
    font-size: 1.5rem;
  }
}
