/* Proxyline VPN — deep teal + coral on near-white / Faustina + Inter Tight */

:root {
  --primary: #0F766E;
  --primary-deep: #0B5D56;
  --primary-soft: #14B8A6;
  --accent: #F87171;
  --accent-deep: #EF4444;
  --bg: #F8FAFC;
  --bg-alt: #CCFBF1;
  --bg-mint: #ECFDF5;
  --text: #134E4A;
  --text-muted: #475569;
  --card-bg: #FFFFFF;
  --border: #E2E8F0;
  --border-soft: #CBD5E1;
  --dark: #0B1F1D;
  --dark-2: #0F2A27;
  --radius: 12px;
  --radius-sm: 10px;
  --radius-lg: 16px;
  --shadow-xs: 0 1px 2px rgba(15, 118, 110, 0.06);
  --shadow-sm: 0 4px 12px rgba(15, 118, 110, 0.08);
  --shadow-md: 0 10px 28px rgba(15, 118, 110, 0.12);
  --shadow-lg: 0 24px 50px rgba(15, 118, 110, 0.18);
  --grad: linear-gradient(135deg, #0F766E 0%, #14B8A6 50%, #F87171 100%);
  --grad-soft: linear-gradient(135deg, #CCFBF1 0%, #FECACA 100%);
  --grad-hero: linear-gradient(120deg, #0F766E 0%, #14B8A6 60%, #F87171 120%);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter Tight', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  font-feature-settings: "ss01", "cv01";
}

h1, h2, h3, h4, h5 {
  font-family: 'Faustina', Georgia, serif;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  box-shadow: 0 2px 12px rgba(15, 118, 110, 0.07);
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Faustina', Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
}

.logo img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--primary); }

.nav-links a.nav-cta {
  color: #000000;
  font-weight: 800;
  background: var(--bg-alt);
  padding: 9px 18px;
  border-radius: var(--radius);
  border: 1.5px solid var(--primary);
}

.nav-links a.nav-cta:hover {
  color: #000000;
  background: var(--primary-soft);
  border-color: var(--primary-deep);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.burger span {
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

/* ============ MOBILE NAV ============ */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 86%;
  max-width: 380px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 999;
  padding: 80px 30px 30px;
  transition: right 0.35s ease;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-nav.open { right: 0; }
.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a.mobile-cta {
  margin-top: 20px;
  background: var(--primary);
  color: #FFFFFF;
  text-align: center;
  border: 0;
  border-radius: var(--radius);
  padding: 14px;
  font-weight: 700;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.005em;
  transition: all 0.22s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 0;
}

.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(248, 113, 113, 0.3);
}

.btn-accent:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
}

.btn-outline {
  background: #FFFFFF;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline:hover {
  background: var(--bg-alt);
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1.05rem;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--grad-hero);
  padding: 90px 0 110px;
  color: #FFFFFF;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 0.86rem;
  font-weight: 500;
  margin-bottom: 22px;
  color: #FFFFFF;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 8px #4ADE80;
}

.hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  color: #FFFFFF;
  margin-bottom: 22px;
  line-height: 1.1;
}

.hero h1 .accent-line {
  color: #FECACA;
  font-style: italic;
}

.hero-desc {
  font-size: 1.13rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 30px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Hero form card overlay */
.hero-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 30px 70px rgba(11, 31, 29, 0.35);
  color: var(--text);
}

.hero-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--border);
}

.hero-card-title {
  font-family: 'Faustina', serif;
  font-weight: 700;
  font-size: 1.15rem;
}

.hero-card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-mint);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-card-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-soft);
}

.line-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.line-row:last-of-type { border-bottom: 0; }
.line-label { color: var(--text-muted); }
.line-value {
  font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.line-value.green { color: var(--primary); }
.line-value.coral { color: var(--accent-deep); }

.hero-card-foot {
  margin-top: 22px;
}

.hero-card-foot .btn {
  width: 100%;
}

/* ============ STATS ============ */
.stats {
  background: #FFFFFF;
  padding: 50px 0;
  border-bottom: 1px solid var(--border);
}

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

.stat {
  text-align: center;
  padding: 0 10px;
}

.stat-num {
  font-family: 'Faustina', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.stat-num span { color: var(--accent); }

.stat-label {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============ SECTIONS ============ */
.section {
  padding: 90px 0;
}

.section.alt {
  background: var(--bg-mint);
}

.section.dark {
  background: var(--dark);
  color: #E2E8F0;
}

.section-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}

.section h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.07rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.section.dark .section-eyebrow { color: var(--accent); }
.section.dark h2 { color: #FFFFFF; }
.section.dark .section-sub { color: #94A3B8; }

/* ============ FEATURES — horizontal cards ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.feature-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #FFFFFF;
  padding: 26px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.25s;
}

.feature-row:hover {
  border-color: var(--primary-soft);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-icon {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--bg-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.feature-row:nth-child(2n) .feature-icon {
  background: #FEE2E2;
  color: var(--accent-deep);
}

.feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-body { flex: 1; }
.feature-body h3 {
  font-size: 1.18rem;
  margin-bottom: 7px;
}

.feature-body p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

/* ============ DOWNLOAD / PLATFORMS ============ */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.platform-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

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

.platform-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.platform-icon svg { width: 28px; height: 28px; }

.platform-card h3 {
  font-size: 1.1rem;
  margin: 0;
}

.platform-card p {
  color: var(--text-muted);
  font-size: 0.86rem;
  margin: 0;
}

.platform-link {
  margin-top: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.platform-link:hover { color: var(--accent-deep); }

/* ============ WHY / TEXT BLOCK ============ */
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.why-text h2 { margin-bottom: 22px; }
.why-text p {
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.why-list {
  margin-top: 24px;
}

.why-list li {
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.98rem;
}

.why-list li::before {
  content: '';
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: 9px;
  background: var(--accent);
  transform: rotate(45deg);
}

.why-visual {
  background: linear-gradient(135deg, #CCFBF1 0%, #FFFFFF 60%);
  border-radius: 22px;
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.why-visual h3 {
  font-size: 1.25rem;
  margin-bottom: 18px;
  color: var(--primary);
}

.why-visual .map-line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
}

.why-visual .map-line:last-child { border-bottom: 0; }
.why-visual .map-line span:last-child {
  color: var(--primary);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* ============ USE CASES ============ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.case {
  background: #FFFFFF;
  border-left: 4px solid var(--primary);
  padding: 28px 26px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow-xs);
}

.case:nth-child(2) { border-left-color: var(--accent); }
.case:nth-child(3) { border-left-color: var(--primary-soft); }
.case:nth-child(4) { border-left-color: var(--accent-deep); }
.case:nth-child(5) { border-left-color: var(--primary-deep); }

.case h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.case p {
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* ============ PRICING (3 cols, descriptors) ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: all 0.25s;
}

.price-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.price-card .price-tag {
  position: absolute;
  top: -12px;
  right: 22px;
  background: var(--accent);
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.price-card h3 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.price-card .price-sub {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin-bottom: 22px;
  min-height: 44px;
}

.price-card ul {
  margin-bottom: 26px;
}

.price-card li {
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.94rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-card li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-mint);
  border: 2px solid var(--primary);
  flex-shrink: 0;
}

.price-card .btn {
  width: 100%;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background: var(--grad);
  padding: 72px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1), transparent 40%),
                    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08), transparent 40%);
  pointer-events: none;
}

.cta-banner h2 {
  color: #FFFFFF;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin-bottom: 14px;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.06rem;
  margin-bottom: 28px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-banner .btn {
  position: relative;
  background: #FFFFFF;
  color: var(--primary);
}

.cta-banner .btn:hover {
  background: var(--bg-alt);
  color: var(--primary-deep);
}

/* ============ FAQ accordion ============ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  padding: 22px 26px;
  font-family: 'Faustina', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-toggle {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.25s;
}

.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--primary);
}

.faq-toggle::before {
  width: 12px;
  height: 2px;
}

.faq-toggle::after {
  width: 2px;
  height: 12px;
  transition: 0.25s;
}

.faq-item.active .faq-toggle {
  background: var(--primary);
}

.faq-item.active .faq-toggle::before,
.faq-item.active .faq-toggle::after {
  background: #FFFFFF;
}

.faq-item.active .faq-toggle::after {
  transform: rotate(90deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-a {
  max-height: 500px;
}

.faq-a-inner {
  padding: 0 26px 22px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* ============ FOOTER (two-level) ============ */
.site-footer {
  background: var(--dark);
  color: #94A3B8;
}

.footer-top {
  padding: 70px 0 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-col h4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  color: #94A3B8;
  font-size: 0.93rem;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--accent); }

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  background: var(--dark-2);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.86rem;
}

.footer-bottom a:hover { color: var(--accent); }

/* ============ INSTRUKTSIYA ============ */
.steps-section {
  padding: 80px 0;
}

.step-block {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 26px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  box-shadow: var(--shadow-xs);
}

.step-num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--grad);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Faustina', serif;
  font-size: 2rem;
  font-weight: 700;
}

.step-body h2 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}

.step-body p {
  margin-bottom: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.after-pay {
  background: var(--bg-mint);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin: 40px 0;
}

.after-pay h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.after-pay p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ============ ANIMATIONS ============ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .hero-grid, .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .platforms-grid, .cases-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .section { padding: 64px 0; }
  .hero { padding: 64px 0 80px; }
  .platforms-grid, .cases-grid, .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .step-block {
    grid-template-columns: 1fr;
    padding: 26px;
  }
  .hero-card { padding: 24px; }
  .after-pay { padding: 28px; }
}

@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
}
