/* ============================================================
   Consiliere s.r.o. – style.css
   Premium Accounting & Advisory Website
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --gold:         #d5ad63;
  --gold-dark:    #b8923f;
  --gold-light:   #e8c882;
  --black:        #0d0d0d;
  --dark:         #1c1c1c;
  --dark-grey:    #3a3a3a;
  --mid-grey:     #6b6b6b;
  --light-grey:   #f5f3ef;
  --lighter:      #faf9f7;
  --white:        #ffffff;
  --border:       #e8e4dc;

  --font-head:    'Playfair Display', serif;
  --font-body:    'Inter', sans-serif;

  --max-w:        1200px;
  --pad-x:        0 24px;

  --ease:         0.3s ease;
  --ease-slow:    0.7s ease;

  --sh-sm:        0 2px 8px  rgba(0,0,0,.08);
  --sh-md:        0 8px 32px rgba(0,0,0,.12);
  --sh-lg:        0 16px 48px rgba(0,0,0,.16);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark-grey);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── Layout helpers ─────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-x);
}

.section-pad { padding: 96px 0; }
.bg-light    { background: var(--light-grey); }
.bg-dark     { background: var(--dark); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.eyebrow-gold { color: var(--gold); }

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 64px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--mid-grey);
  line-height: 1.8;
}

.section-header-light .section-title,
.text-white { color: var(--white) !important; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .05em;
  cursor: pointer;
  transition: all var(--ease);
  border: 2px solid transparent;
  border-radius: 2px;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(213,173,99,.35);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ── Scroll animations ──────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--ease-slow), transform var(--ease-slow);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay { transition-delay: .2s; }
.fade-in-delay-2 { transition-delay: .35s; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: var(--sh-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.logo-link { flex-shrink: 0; }
.logo-img  { height: 40px; width: auto; }

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

.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--dark-grey);
  transition: color var(--ease);
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--ease);
}
.nav-link:hover { color: var(--dark); }
.nav-link:hover::after { width: 100%; }

.nav-cta { flex-shrink: 0; }

/* Hamburger */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none; border: none;
  cursor: pointer; padding: 0;
  flex-shrink: 0;
}
.mobile-menu-btn span {
  display: block; width: 100%; height: 2px;
  background: var(--dark);
  transition: all var(--ease);
  transform-origin: center;
}
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--lighter);
  position: relative;
  overflow: hidden;
}

/* Subtle gold glow top-right */
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 50%; height: 80%;
  background: radial-gradient(ellipse at center, rgba(213,173,99,.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}

.hero-eyebrow {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtext {
  font-size: 1.0625rem;
  color: var(--mid-grey);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.85;
}
.hero-subtext strong { color: var(--dark); font-weight: 600; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dark-grey);
  font-weight: 500;
  font-size: .9375rem;
  transition: color var(--ease);
}
.hero-phone:hover { color: var(--gold); }
.hero-phone i { color: var(--gold); font-size: .875rem; }

/* Hero visual box */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-brand-box {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 380px;
  width: 100%;
  box-shadow: var(--sh-lg);
  position: relative;
}
.hero-brand-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.hero-logo { height: 160px; width: auto; margin-bottom: 24px; }

.hero-divider {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
}

.hero-brand-tagline {
  font-size: .875rem;
  color: var(--mid-grey);
  text-align: center;
  font-style: italic;
  margin-bottom: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  border-top: 1px solid var(--border);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  gap: 4px;
}
.hero-stat:first-child { border-right: 1px solid var(--border); }

.hero-stat strong {
  font-size: 2rem;
  font-family: var(--font-head);
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.hero-stat span {
  font-size: .75rem;
  color: var(--mid-grey);
  text-transform: uppercase;
  letter-spacing: .1em;
  text-align: center;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
}
.hero-scroll-hint a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  color: var(--gold);
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.0125rem;
  line-height: 1.85;
  color: var(--dark-grey);
}
.about-lead {
  font-size: 1.2rem !important;
  font-style: italic;
  color: var(--dark) !important;
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.7 !important;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--lighter);
  border-left: 3px solid var(--gold);
  transition: transform var(--ease), box-shadow var(--ease);
}
.value-item:hover {
  transform: translateX(4px);
  box-shadow: var(--sh-sm);
}

.value-icon {
  flex-shrink: 0;
  font-size: 1.125rem;
  color: var(--gold);
  padding-top: 3px;
  width: 20px;
  text-align: center;
}

.value-text { display: flex; flex-direction: column; gap: 4px; }
.value-text strong { font-weight: 600; color: var(--dark); font-size: .9375rem; }
.value-text span  { font-size: .875rem; color: var(--mid-grey); line-height: 1.65; }

/* ============================================================
   SERVICES OVERVIEW
   ============================================================ */
/* 6-column base so each card spans 2 cols → 3 per row.
   Cards 4 & 5 start at cols 2 and 4 to centre them in the last row. */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.services-grid .service-card { grid-column: span 2; }

.services-grid .service-card:nth-child(4) { grid-column: 2 / span 2; }
.services-grid .service-card:nth-child(5) { grid-column: 4 / span 2; }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 36px 28px;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.service-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.1875rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.service-card p {
  font-size: .9rem;
  color: var(--mid-grey);
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: gap var(--ease);
  margin-top: auto;
}
.service-link:hover { gap: 14px; }
.service-link i { font-size: .75rem; }

/* ============================================================
   DETAILED SERVICES
   ============================================================ */
.services-detail { background: var(--white); }

.service-detail-block {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail-block:first-child { padding-top: 0; }
.service-detail-block:last-child  { border-bottom: none; padding-bottom: 0; }

.service-detail-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

.service-detail-icon {
  font-size: 1.75rem;
  color: var(--gold);
  background: rgba(213,173,99,.1);
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 2px;
}

.service-detail-title {
  font-size: 1.875rem;
  color: var(--dark);
  margin-top: 6px;
}

.service-detail-content > p {
  font-size: 1rem;
  color: var(--dark-grey);
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 720px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 40px;
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9375rem;
  color: var(--dark-grey);
  line-height: 1.55;
}
.service-list li i {
  color: var(--gold);
  font-size: .6875rem;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ============================================================
   WHY CONSILIERE
   ============================================================ */
/* Same 6-column pattern as services – items 4 & 5 centred. */
.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}

.why-grid .why-item { grid-column: span 2; }

.why-grid .why-item:nth-child(4) { grid-column: 2 / span 2; }
.why-grid .why-item:nth-child(5) { grid-column: 4 / span 2; }

.why-item {
  padding: 32px 24px;
  border: 1px solid rgba(213,173,99,.18);
  background: rgba(255,255,255,.03);
  transition: all var(--ease);
}
.why-item:hover {
  border-color: var(--gold);
  background: rgba(213,173,99,.07);
  transform: translateY(-3px);
}

.why-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 18px;
}

.why-item h3 {
  font-size: 1.0625rem;
  color: var(--white);
  margin-bottom: 12px;
}

.why-item p {
  font-size: .875rem;
  color: rgba(255,255,255,.58);
  line-height: 1.8;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  margin-bottom: 56px;
}

.contact-info-title,
.contact-form-title {
  font-size: 1.375rem;
  color: var(--dark);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 40px; height: 40px;
  background: rgba(213,173,99,.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
  font-size: .875rem;
}

.contact-detail strong {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--mid-grey);
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-text-link {
  color: var(--dark);
  font-size: .9375rem;
  font-weight: 500;
  transition: color var(--ease);
  line-height: 1.55;
}
.contact-text-link:hover { color: var(--gold); }

/* Billing */
.billing-info {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.billing-title {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--mid-grey);
  font-weight: 600;
  margin-bottom: 14px;
  font-family: var(--font-body);
}

.billing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}
.billing-table tr td {
  padding: 7px 0;
  color: var(--dark-grey);
  border-bottom: 1px solid var(--border);
}
.billing-table tr:last-child td { border-bottom: none; }
.billing-table tr td:first-child {
  color: var(--mid-grey);
  font-size: .825rem;
  width: 44%;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: .8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--dark-grey);
}
.required { color: var(--gold); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  background: var(--lighter);
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--dark);
  transition: all var(--ease);
  outline: none;
  border-radius: 2px;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(107,107,107,.55); }

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(213,173,99,.12);
}

.form-group textarea { resize: vertical; min-height: 130px; }

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

.btn-submit { min-width: 200px; }

.form-message {
  padding: 14px 18px;
  border-radius: 2px;
  font-size: .9rem;
  display: none;
  margin-top: 4px;
  line-height: 1.6;
}
.form-message.success {
  background: rgba(74,166,109,.09);
  border: 1px solid rgba(74,166,109,.3);
  color: #2d7a47;
  display: block;
}
.form-message.error {
  background: rgba(220,80,80,.09);
  border: 1px solid rgba(220,80,80,.3);
  color: #b83232;
  display: block;
}

/* Map */
.contact-map {
  border: 1px solid var(--border);
  overflow: hidden;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.6);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo  { height: 36px; width: auto; margin-bottom: 20px; }

.footer-tagline {
  font-size: .875rem;
  line-height: 1.75;
  max-width: 280px;
  font-style: italic;
  color: rgba(255,255,255,.45);
}

.footer-contact h4,
.footer-nav h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-contact p {
  font-size: .875rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.footer-contact i {
  color: var(--gold);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}
.footer-contact a:hover { color: var(--gold); transition: color var(--ease); }

.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--ease);
}
.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.35); }

/* ============================================================
   RESPONSIVE – Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  /* Reset to a simple 2-col layout; cancel the 6-col centring offsets */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card         { grid-column: span 1; }
  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) { grid-column: span 1; }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid .why-item         { grid-column: span 1; }
  .why-grid .why-item:nth-child(4),
  .why-grid .why-item:nth-child(5) { grid-column: span 1; }

  .about-grid    { gap: 48px; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .footer-brand  { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE – Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }

  /* Header */
  .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; }

  .main-nav {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    padding: 8px 24px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--sh-md);
  }
  .main-nav.open { display: block; }
  .main-nav .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .main-nav .nav-list li { border-bottom: 1px solid var(--border); }
  .nav-link { display: block; padding: 14px 0; font-size: 1rem; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 48px; padding-bottom: 48px; }
  .hero-visual { order: -1; }
  .hero-headline { font-size: 2.25rem; }
  .hero-brand-box { padding: 32px 24px; max-width: 100%; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card,
  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) { grid-column: span 1; }
  .service-list  { grid-template-columns: 1fr; }

  /* Service detail */
  .service-detail-header { flex-direction: column; gap: 12px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }
  .why-grid .why-item,
  .why-grid .why-item:nth-child(4),
  .why-grid .why-item:nth-child(5) { grid-column: span 1; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .form-row-2   { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ============================================================
   RESPONSIVE – Small mobile (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  :root { --pad-x: 0 16px; }
  .section-pad { padding: 48px 0; }

  .section-header { margin-bottom: 40px; }

  .hero { min-height: auto; padding: 0; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 2rem; }
  .hero-actions { flex-direction: column; width: 100%; gap: 16px; }
  .btn { width: 100%; }
  .hero-phone { justify-content: center; }
}

