/* ===========================
   1. CSS CUSTOM PROPERTIES
   =========================== */
:root {
  --primary:     #FF5C00;
  --charcoal:    #2B2B2B;
  --white:       #FFFFFF;
  --surface:     #F7F7F7;
  --text:        #1A1A1A;
  --text-muted:  #6B6B6B;
  --border:      #E5E5E5;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container:  1280px;
  --pad:        clamp(16px, 4vw, 24px);
  --header-h:   72px;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.07);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.09);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
}

/* ===========================
   2. RESET & BASE
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  background-image: url('../img/bg-hero.webp');
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===========================
   3. TYPOGRAPHY
   =========================== */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 800; }
h2 { font-size: clamp(26px, 3.5vw, 40px); }
h3 { font-size: clamp(17px, 2vw, 22px); font-weight: 600; }
p  { line-height: 1.7; }

/* ===========================
   4. LAYOUT
   =========================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
section { padding: clamp(56px, 8vw, 96px) 0; }

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}
.section-title  { margin-bottom: 14px; }
.section-sub    { color: var(--text-muted); font-size: 17px; max-width: 600px; line-height: 1.7; }

/* ===========================
   5. BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: all 0.2s ease;
  cursor: pointer;
  line-height: 1;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover {
  background: #e05200;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(255,92,0,0.35);
}
/* ===========================
   6. HEADER
   =========================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.12); }
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}
.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--r-sm);
  display: block;
  flex-shrink: 0;
}
.logo-j { color: var(--charcoal); }
.logo-w { color: var(--primary); }
.logo-text  { display: flex; flex-direction: column; }
.logo-name  { font-size: 11.5px; font-weight: 700; letter-spacing: 0.12em; color: var(--charcoal); text-transform: uppercase; }
.logo-sub   { font-size: 9.5px;  font-weight: 500; letter-spacing: 0.18em; color: var(--text-muted); text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 36px; }
.nav a { font-size: 14px; font-weight: 500; color: var(--text); transition: color 0.2s; }
.nav a:hover { color: var(--primary); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all 0.3s; }

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 20px var(--pad);
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { margin-top: 12px; text-align: center; justify-content: center; }

/* ===========================
   7. HERO
   =========================== */
.hero {
  padding-top: 0;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.82);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 56px;
}
.hero-content { max-width: 580px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,92,0,0.07);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
  border: 1px solid rgba(255,92,0,0.18);
  letter-spacing: 0.04em;
}
.hero h1 { margin-bottom: 18px; }
.hero h1 span { color: var(--primary); }
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 34px;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  transition: color 0.2s;
}
.hero-phone:hover { color: var(--primary); }
.hero-phone svg { color: var(--primary); flex-shrink: 0; }

.trust-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.trust-item .ti-icon {
  font-size: 17px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,92,0,0.1);
  border-radius: var(--r-sm);
}

.hero-image { position: relative; }
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  filter: drop-shadow(0 12px 48px rgba(0,0,0,0.08));
}

/* ===========================
   8. SERVICES
   =========================== */
.services { background: rgba(247,247,247,0.88); }
.services-header { text-align: center; margin-bottom: 52px; }
.services-header .section-sub { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,92,0,0.07);
  border-radius: var(--r-sm);
  flex-shrink: 0;
}
.service-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.service-body { flex: 1; min-width: 0; }
.service-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.service-title { font-size: 15px; font-weight: 700; color: var(--charcoal); }
.price-badge {
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.service-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.service-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.service-link:hover { gap: 7px; }

/* ===========================
   9. ABOUT
   =========================== */
.about { background: rgba(255,255,255,0.88); }
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-content p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 18px;
}
.about-list { margin: 4px 0 32px; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.about-list li:last-child { border-bottom: none; }
.about-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.stat {
  text-align: center;
  padding: 22px 12px;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.stat-icon  { font-size: 22px; margin-bottom: 8px; }
.stat-value { font-size: 24px; font-weight: 800; color: var(--primary); display: block; margin-bottom: 4px; }
.stat-label { font-size: 11px; color: var(--text-muted); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

.about-image img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

/* ===========================
   10. WHY US
   =========================== */
.why-us { background: rgba(247,247,247,0.88); }
.why-us-header { text-align: center; margin-bottom: 52px; }
.why-us-header .section-sub { margin: 0 auto; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 30px 24px;
  border: 1px solid var(--border);
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.why-icon {
  font-size: 28px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,92,0,0.07);
  border-radius: 50%;
  margin: 0 auto 18px;
}
.why-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--charcoal); }
.why-text  { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ===========================
   11. TESTIMONIALS
   =========================== */
.testimonials { background: rgba(43,43,43,0.94); }
.testimonials .section-label { color: var(--primary); }
.testimonials .section-title { color: var(--white); }
.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-header .section-sub { color: rgba(255,255,255,0.55); margin: 0 auto; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-md);
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
}
.stars { display: flex; gap: 3px; margin-bottom: 14px; }
.stars span { color: #FFB800; font-size: 16px; }
.testimonial-text {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.72;
  font-style: italic;
  flex: 1;
  margin-bottom: 22px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 600; color: var(--white); }
.author-role { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* ===========================
   12. CONTACT
   =========================== */
.contact { background: rgba(255,255,255,0.88); }
.contact .container {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { color: var(--text-muted); font-size: 15px; margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,92,0,0.07);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-item-value { font-size: 14px; font-weight: 600; color: var(--charcoal); line-height: 1.6; }
.contact-item-value a { color: var(--charcoal); transition: color 0.2s; }
.contact-item-value a:hover { color: var(--primary); }

.contact-form-wrapper {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 36px;
  border: 1px solid var(--border);
}
.form-title { font-size: 20px; font-weight: 700; margin-bottom: 26px; color: var(--charcoal); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 12px; font-weight: 700; color: var(--charcoal); letter-spacing: 0.05em; text-transform: uppercase; }

input, select, textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,92,0,0.1);
}
input::placeholder, textarea::placeholder { color: #ABABAB; }
textarea { resize: vertical; min-height: 96px; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 38px;
  cursor: pointer;
}
.form-submit { width: 100%; margin-top: 6px; justify-content: center; }
.form-note { font-size: 12px; color: var(--text-muted); text-align: center; margin-top: 10px; }

.form-success {
  display: none;
  text-align: center;
  padding: 36px 24px;
}
.success-icon { font-size: 52px; margin-bottom: 16px; }
.form-success h3 { font-size: 22px; color: var(--charcoal); margin-bottom: 10px; }
.form-success p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.form-success a { color: var(--primary); }

/* ===========================
   13. FOOTER
   =========================== */
.footer {
  background: rgba(43,43,43,0.97);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.footer-brand .logo-j { color: var(--white); }
.footer-brand .logo-w { color: var(--primary); }
.footer-brand .logo-name { color: rgba(255,255,255,0.9); }
.footer-brand .logo-sub  { color: rgba(255,255,255,0.4); }
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 14px;
  line-height: 1.7;
  max-width: 240px;
}
.footer h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact p  { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.85; }
.footer-contact a  { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-contact a:hover { color: var(--primary); }
.company-number { font-size: 11px !important; color: rgba(255,255,255,0.28) !important; margin-top: 10px; }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  line-height: 1.9;
}
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--primary); }

/* ===========================
   14. COOKIE BANNER
   =========================== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 780px;
  width: calc(100% - 40px);
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 18px 22px;
  z-index: 9999;
  box-shadow: 0 8px 40px rgba(0,0,0,0.28);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cookie-banner.hidden { display: none; }
.cookie-text { font-size: 13px; color: rgba(255,255,255,0.78); line-height: 1.6; }
.cookie-text a { color: var(--primary); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn {
  padding: 8px 18px;
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-transform: uppercase;
}
.cookie-accept { background: var(--primary); color: var(--white); }
.cookie-accept:hover { background: #e05200; }
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2) !important;
}
.cookie-decline:hover { border-color: rgba(255,255,255,0.5) !important; color: var(--white); }

/* ===========================
   15. LEGAL PAGES
   =========================== */
.legal-hero {
  background: var(--charcoal);
  padding: 56px 0 52px;
}
.legal-hero h1 { color: var(--white); font-size: clamp(26px, 4vw, 40px); }
.legal-hero p  { color: rgba(255,255,255,0.5); margin-top: 10px; font-size: 14px; }

.legal-content {
  padding: 60px var(--pad);
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 { font-size: 20px; margin: 38px 0 14px; color: var(--charcoal); }
.legal-content h3 { font-size: 16px; font-weight: 600; margin: 24px 0 8px; color: var(--charcoal); }
.legal-content p  { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.8; }
.legal-content ul { margin: 0 0 16px 22px; }
.legal-content ul li { font-size: 14px; color: var(--text-muted); margin-bottom: 7px; line-height: 1.7; list-style: disc; }
.legal-content a  { color: var(--primary); text-decoration: underline; }
.legal-content table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 13px; }
.legal-content th, .legal-content td { padding: 10px 14px; border: 1px solid var(--border); text-align: left; }
.legal-content th { background: var(--surface); font-weight: 600; color: var(--charcoal); }
.legal-content td { color: var(--text-muted); }

/* ===========================
   16. BRAND VISUALS
   =========================== */

.services-visual {
  margin-bottom: 52px;
}
.services-visual img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

.brand-strip {
  padding: 0 0 clamp(56px, 8vw, 96px);
  background: rgba(255,255,255,0.88);
}
.brand-strip img {
  width: 100%;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
}

/* ===========================
   17. RESPONSIVE
   =========================== */

@media (max-width: 1024px) {
  .about .container { grid-template-columns: 1fr; gap: 48px; }
  .about-image { max-width: 520px; margin: 0 auto; }
  .contact .container { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero .container { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .trust-bar { justify-content: center; }
  .hero-image { max-width: 460px; margin: 0 auto; }

  .services-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-grid { grid-template-columns: 1fr; }

  .cookie-banner {
    flex-direction: column;
    bottom: 0; left: 0;
    transform: none;
    width: 100%;
    border-radius: var(--r-md) var(--r-md) 0 0;
  }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

@media (max-width: 540px) {
  .why-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .trust-bar { flex-direction: column; gap: 10px; align-items: flex-start; }
}
