/* ============================================
   SINOBY MARKET — MAIN STYLESHEET
   Design: Refined luxury logistics aesthetic
   Fonts: Cormorant Garamond + Nunito Sans
   ============================================ */

/* ---- VARIABLES ---- */
:root {
  --navy:      #0d1f3c;
  --navy-mid:  #152847;
  --navy-light:#1e3a5f;
  --gold:      #c9a84c;
  --gold-light:#e2c97a;
  --gold-dim:  #9e7d35;
  --white:     #ffffff;
  --off-white: #f5f3ef;
  --gray-light:#eeecec;
  --gray:      #888888;
  --gray-dark: #444444;
  --text:      #1a1a2e;
  --red:       #c0392b;

  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito Sans', 'Helvetica Neue', sans-serif;

  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(13,31,60,0.10);
  --shadow-lg: 0 12px 48px rgba(13,31,60,0.18);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --container: 1200px;
  --header-h:  72px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; font-size: 16px; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.2; letter-spacing: 0.01em; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

/* ---- CONTAINER ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius);
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: var(--transition); cursor: pointer; border: 2px solid transparent; white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-light:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-lg { padding: 16px 40px; font-size: 0.95rem; }
.btn-hero { padding: 15px 36px; }
.btn-full { width: 100%; }

/* ---- SECTION BASE ---- */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-dim); border-top: 2px solid var(--gold); padding-top: 8px; margin-bottom: 14px;
}
.section-title { color: var(--navy); margin-bottom: 16px; }
.section-subtitle { color: var(--gray); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ---- TOP BAR ---- */
.top-bar { background: var(--navy); color: rgba(255,255,255,0.7); font-size: 0.82rem; padding: 8px 0; }
.top-bar-inner { display: flex; align-items: center; justify-content: space-between; }
.top-email { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.top-email:hover { color: var(--gold-light); }
.top-email svg { opacity: 0.7; flex-shrink: 0; }
.lang-switcher { display: flex; align-items: center; gap: 4px; }
.lang-btn {
  padding: 3px 10px; border-radius: 4px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.55); transition: var(--transition); cursor: pointer;
}
.lang-btn:hover { color: var(--white); }
.lang-btn.active { color: var(--gold); background: rgba(201,168,76,0.15); }

/* ---- MAIN NAV ---- */
.main-nav { background: var(--white); box-shadow: 0 1px 0 rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 100; }
.nav-inner { display: flex; align-items: center; gap: 32px; height: var(--header-h); }

.site-logo { flex-shrink: 0; display: flex; align-items: center; }
.site-logo img { height: 44px; width: auto; }
.logo-text { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--navy); letter-spacing: 0.04em; }
.logo-text span { color: var(--gold); }

.nav-menu { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link {
  padding: 8px 14px; font-size: 0.88rem; font-weight: 600; letter-spacing: 0.03em;
  color: var(--gray-dark); border-radius: 6px; transition: var(--transition); white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--gold); transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--navy); }
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 28px); }

.nav-social { display: flex; align-items: center; gap: 8px; margin-left: 8px; flex-shrink: 0; }
.social-icon { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 6px; color: var(--gray); transition: var(--transition); }
.social-icon:hover { color: var(--navy); background: var(--off-white); }
.social-icon svg { width: 16px; height: 16px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ---- HERO ---- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--navy); }
.hero-bg { position: absolute; inset: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,31,60,0.85) 0%, rgba(13,31,60,0.6) 60%, rgba(13,31,60,0.75) 100%);
}
.hero-content { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 48px; padding-top: 80px; padding-bottom: 80px; }
.hero-text { max-width: 640px; }
.hero-badge {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(201,168,76,0.4); padding: 6px 16px; border-radius: 24px;
  margin-bottom: 24px; backdrop-filter: blur(4px);
}
.hero-title { color: var(--white); margin-bottom: 20px; font-weight: 700; line-height: 1.1; }
.hero-title span { color: var(--gold); }
.hero-subtitle { color: rgba(255,255,255,0.72); font-size: 1.1rem; margin-bottom: 36px; max-width: 520px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 24px; flex-direction: column; flex-shrink: 0; }
.stat-item { text-align: center; padding: 20px 28px; background: rgba(255,255,255,0.07); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); }
.stat-num { font-family: var(--font-head); font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-plus { font-family: var(--font-head); font-size: 1.8rem; color: var(--gold); }
.stat-label { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; letter-spacing: 0.06em; text-transform: uppercase; }

.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero-scroll span { display: block; width: 2px; height: 48px; background: linear-gradient(to bottom, transparent, var(--gold)); margin: 0 auto; animation: scrollDown 2s ease-in-out infinite; }
@keyframes scrollDown { 0%,100%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} }

/* ---- SHIPPING TICKER ---- */
.shipping-ticker { background: var(--gold); overflow: hidden; padding: 14px 0; }
.ticker-track { display: flex; gap: 0; width: max-content; animation: tickerMove 30s linear infinite; }
.ticker-item { font-weight: 700; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); padding: 0 12px; white-space: nowrap; }
.ticker-dot { color: var(--navy); opacity: 0.4; padding: 0 4px; }
@keyframes tickerMove { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ---- SERVICES GRID ---- */
.services-section { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  position: relative; overflow: hidden; transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transition: transform var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-bottom-color: var(--gold); }
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-family: var(--font-head); font-size: 4rem; font-weight: 700; color: var(--gray-light); position: absolute; top: 16px; right: 24px; line-height: 1; }
.service-icon { width: 52px; height: 52px; background: rgba(201,168,76,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--gold-dim); }
.service-icon svg { width: 26px; height: 26px; }
.service-title { font-size: 1.25rem; color: var(--navy); margin-bottom: 12px; }
.service-desc { color: var(--gray); font-size: 0.92rem; line-height: 1.6; margin-bottom: 20px; }
.service-link { font-size: 0.85rem; font-weight: 700; color: var(--gold-dim); letter-spacing: 0.05em; transition: color var(--transition); }
.service-link:hover { color: var(--gold); }

/* ---- WHY US ---- */
.why-section { background: var(--white); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left { }
.why-right { display: flex; flex-direction: column; gap: 28px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border-radius: var(--radius); transition: var(--transition); }
.why-item:hover { background: var(--off-white); }
.why-check { width: 36px; height: 36px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--navy); }
.why-check svg { width: 18px; height: 18px; }
.why-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.why-desc { color: var(--gray); font-size: 0.9rem; line-height: 1.5; }

/* ---- GOODS SECTION ---- */
.goods-section { background: var(--navy); }
.goods-section .section-tag { color: var(--gold-light); }
.goods-section .section-title { color: var(--white); }
.goods-section .section-subtitle { color: rgba(255,255,255,0.55); }
.goods-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.goods-item {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 14px 16px; transition: var(--transition);
}
.goods-item:hover { background: rgba(201,168,76,0.12); border-color: rgba(201,168,76,0.3); }
.goods-num { font-family: var(--font-head); font-size: 1.1rem; color: var(--gold); opacity: 0.7; min-width: 28px; }
.goods-name { font-size: 0.88rem; color: rgba(255,255,255,0.8); font-weight: 400; }

/* ---- CTA SECTION ---- */
.cta-section { position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
.cta-bg::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 80px 0; flex-wrap: wrap; }
.cta-text h2 { color: var(--white); }
.cta-text p { color: rgba(255,255,255,0.65); font-size: 1rem; margin-top: 12px; max-width: 480px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- PAGE HERO ---- */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 60px 0 52px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: -1px; left: 0; right: 0; height: 60px; background: var(--white); clip-path: ellipse(55% 60px at 50% 60px); }
.breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--gold-light); }
.page-hero-title { color: var(--white); position: relative; z-index: 1; }
.page-hero-sub { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-top: 12px; max-width: 520px; }

/* ---- PAGE CONTENT ---- */
.page-content { line-height: 1.8; color: var(--gray-dark); }
.page-content p { margin-bottom: 1.2em; }
.page-content h2, .page-content h3 { color: var(--navy); margin: 1.6em 0 0.6em; }
.page-content ul, .page-content ol { margin: 1em 0 1em 1.5em; }
.page-content li { margin-bottom: 0.5em; }

/* ---- ABOUT PAGE ---- */
.about-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.about-lead-box { background: var(--off-white); border-radius: var(--radius-lg); padding: 40px 36px; position: sticky; top: 100px; }
.about-lead { font-size: 1.1rem; color: var(--gray-dark); line-height: 1.7; margin: 16px 0 24px; }
.company-full-name { font-size: 1.05rem; color: var(--navy); line-height: 1.5; padding-top: 20px; border-top: 2px solid var(--gold); }

.values-section { background: var(--off-white); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; transition: var(--transition); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { width: 56px; height: 56px; background: rgba(201,168,76,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--gold-dim); }
.value-icon svg { width: 28px; height: 28px; }
.value-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* ---- SERVICES DETAIL ---- */
.service-detail { display: grid; grid-template-columns: 200px 1fr; gap: 56px; align-items: start; padding: 60px 0; border-bottom: 1px solid var(--gray-light); }
.service-detail:last-child { border-bottom: none; }
.service-detail-reverse { grid-template-columns: 1fr 200px; }
.service-detail-reverse .service-detail-icon { order: 2; }
.service-detail-icon { text-align: center; position: sticky; top: 100px; }
.service-detail-icon svg { width: 80px; height: 80px; color: var(--gold-dim); margin: 0 auto; }
.service-detail-num { font-family: var(--font-head); font-size: 5rem; font-weight: 700; color: var(--gray-light); line-height: 1; margin-top: 8px; }
.service-detail-content h2 { color: var(--navy); margin-bottom: 16px; }
.service-detail-desc { font-size: 1.05rem; color: var(--gray); line-height: 1.7; margin-bottom: 24px; }
.service-detail-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.service-detail-list li { font-size: 0.92rem; color: var(--gray-dark); padding-left: 20px; position: relative; }
.service-detail-list li::before { content: '◆'; position: absolute; left: 0; color: var(--gold); font-size: 0.5rem; top: 0.35em; }

/* ---- CONTACTS PAGE ---- */
.contacts-section { background: var(--off-white); }
.contacts-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contacts-info { padding: 16px 0; }
.contact-info-item { display: flex; gap: 20px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--gray-light); }
.contact-info-item:first-child { padding-top: 0; }
.contact-info-icon { width: 44px; height: 44px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.contact-icon-messenger { background: rgba(201,168,76,0.12); color: var(--gold-dim); }
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.contact-info-val { font-size: 1rem; color: var(--navy); font-weight: 600; }
a.contact-info-val:hover { color: var(--gold-dim); }

/* ---- FORM ---- */
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.contacts-form-wrap .form-title { font-size: 1.8rem; color: var(--navy); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--gray-dark); margin-bottom: 8px; letter-spacing: 0.03em; }
.req { color: var(--gold-dim); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-light); border-radius: var(--radius);
  font-size: 0.95rem; color: var(--text); background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-check-group label { display: flex; align-items: center; gap: 12px; cursor: pointer; font-size: 0.9rem; font-weight: 400; color: var(--gray-dark); }
.form-check-group input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; }
.form-success-msg { background: #d4edda; color: #155724; border-radius: var(--radius); padding: 14px 20px; margin-bottom: 20px; font-size: 0.95rem; }
.form-error-msg { background: #f8d7da; color: #721c24; border-radius: var(--radius); padding: 14px 20px; margin-bottom: 20px; font-size: 0.95rem; }

/* ---- CALCULATOR ---- */
.calc-section { background: var(--off-white); }
.calc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.calc-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.calc-card-title { font-size: 1.5rem; color: var(--navy); margin-bottom: 28px; padding-bottom: 16px; border-bottom: 2px solid var(--off-white); }
.input-with-unit { position: relative; display: flex; }
.input-with-unit input { flex: 1; padding-right: 48px; }
.input-unit { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-weight: 700; color: var(--gray); font-size: 1rem; pointer-events: none; }
.calc-rate-info { margin: 8px 0 24px; }
.rate-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.25); border-radius: 6px; padding: 8px 14px; font-size: 0.88rem; color: var(--gray-dark); }
.rate-tag strong { color: var(--navy); }
.calc-actions { margin-top: 8px; }
.result-rows { display: flex; flex-direction: column; gap: 0; }
.result-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--gray-light); font-size: 0.9rem; }
.result-row-sub { color: var(--gray-dark); }
.result-row-highlight { color: var(--navy); font-weight: 700; background: var(--off-white); margin: 8px -36px; padding: 12px 36px; }
.result-row-total { color: var(--navy); font-weight: 700; font-size: 1.1rem; border-bottom: none; padding-top: 16px; }
.result-row span:last-child { font-weight: 700; text-align: right; }
.rate-badge { font-size: 0.75rem; background: rgba(201,168,76,0.15); color: var(--gold-dim); padding: 2px 8px; border-radius: 12px; margin-left: 6px; }
.calc-disclaimer { font-size: 0.8rem; color: var(--gray); line-height: 1.6; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--gray-light); font-style: italic; }
.calc-results-card { border-top: 4px solid var(--gold); }

/* ---- FLOATING MESSENGERS ---- */
.float-messengers { position: fixed; right: 20px; bottom: 80px; z-index: 999; display: flex; flex-direction: column; gap: 10px; }
.float-btn { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.2); transition: var(--transition); }
.float-btn:hover { transform: scale(1.12); }
.float-btn svg { width: 22px; height: 22px; }
.float-wa { background: #25D366; color: #fff; }
.float-tg { background: #2CA5E0; color: #fff; }
.float-wc { background: #07C160; color: #fff; }

/* ---- FOOTER ---- */
.site-footer { background: #080e1c; color: rgba(255,255,255,0.6); }
.footer-top { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo img { height: 40px; width: auto; margin-bottom: 16px; }
.logo-text-footer { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: var(--white); display: block; margin-bottom: 16px; }
.logo-text-footer span { color: var(--gold); }
.footer-tagline { font-size: 0.88rem; line-height: 1.6; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; margin-bottom: 16px; }
.footer-social .social-icon { color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }
.footer-social .social-icon:hover { color: var(--gold-light); background: rgba(201,168,76,0.15); }
.footer-messengers { display: flex; gap: 8px; flex-wrap: wrap; }
.msg-link { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; padding: 5px 12px; border-radius: 16px; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.15); transition: var(--transition); }
.msg-link:hover { color: var(--white); border-color: rgba(255,255,255,0.35); }
.footer-col-title { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li { font-size: 0.88rem; }
.footer-links a { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contacts-list li { display: flex; align-items: flex-start; gap: 10px; }
.footer-contacts-list svg { flex-shrink: 0; margin-top: 3px; opacity: 0.4; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); text-align: center; }

/* ---- ANIMATIONS ---- */
[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* ---- NOT FOUND / CUSTOM PAGE ---- */
.not-found, .custom-page { padding: 80px 0; }
.not-found h1 { font-size: 6rem; color: var(--gray-light); }
.not-found p { font-size: 1.1rem; color: var(--gray); margin-top: 16px; }
.not-found a { color: var(--gold-dim); font-weight: 700; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .goods-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-direction: row; gap: 12px; }
  .hero-content { flex-direction: column; align-items: flex-start; }
  .about-layout { grid-template-columns: 1fr; }
  .about-lead-box { position: static; }
  .service-detail { grid-template-columns: 120px 1fr; gap: 32px; }
  .service-detail-reverse { grid-template-columns: 1fr 120px; }
}

@media (max-width: 768px) {
  :root { --header-h: 60px; }
  .section { padding: 56px 0; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--white); flex-direction: column; gap: 0; margin: 0; padding: 16px;
    overflow-y: auto; transform: translateX(100%); transition: transform var(--transition); z-index: 99;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu li { width: 100%; }
  .nav-link { display: block; padding: 14px 16px; font-size: 1rem; border-radius: var(--radius); }
  .nav-link::after { display: none; }
  .nav-social { display: none; }
  .top-bar .top-email { display: none; }
  .hero { min-height: 90vh; }
  .hero-stats { flex-direction: row; gap: 8px; width: 100%; }
  .stat-item { flex: 1; padding: 14px 10px; }
  .stat-num { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .goods-grid { grid-template-columns: repeat(2, 1fr); }
  .contacts-layout { grid-template-columns: 1fr; }
  .calc-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail-reverse { grid-template-columns: 1fr; }
  .service-detail-reverse .service-detail-icon { order: -1; }
  .service-detail-icon { position: static; text-align: left; display: flex; align-items: center; gap: 16px; }
  .service-detail-list { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-text p { margin: 12px auto 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .hero { min-height: 80vh; }
  .goods-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px; }
  .calc-card { padding: 24px; }
}
