/* =============================================
   DUNA ASZFALT – ÁRAJÁNLAT PREZENTÁCIÓ
   Light, modern, clean design
   ============================================= */

:root {
  --color-bg: #FAFBFC;
  --color-white: #FFFFFF;
  --color-text: #1A1D23;
  --color-text-secondary: #5A6070;
  --color-text-light: #8890A0;
  --color-primary: #2563EB;
  --color-primary-light: #EFF6FF;
  --color-primary-dark: #1D4ED8;
  --color-accent: #0EA5E9;
  --color-accent-light: #F0F9FF;
  --color-success: #10B981;
  --color-success-light: #ECFDF5;
  --color-border: #E5E7EB;
  --color-border-light: #F3F4F6;
  --color-section-alt: #F5F7FA;
  /* Vibrant timeline palette */
  --tl-blue: #2563EB;
  --tl-blue-light: #EFF6FF;
  --tl-sky: #0EA5E9;
  --tl-sky-light: #F0F9FF;
  --tl-teal: #14B8A6;
  --tl-teal-light: #F0FDFA;
  --tl-violet: #8B5CF6;
  --tl-violet-light: #F5F3FF;
  --tl-amber: #F59E0B;
  --tl-amber-light: #FFFBEB;
  --tl-rose: #F43F5E;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.08);
  --shadow-xl: 0 16px 48px rgba(0,0,0,.10);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-height: 64px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
}

body {
  font-family: var(--font);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.hidden { display: none !important; }

/* ── PASSWORD GATE ── */
#password-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
}

.gate-card {
  text-align: center;
  padding: 48px 40px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 420px;
  width: 90%;
}

.gate-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 24px;
}

.gate-card h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text);
}

.gate-card > p {
  font-size: .95rem;
  color: var(--color-text-secondary);
  margin-bottom: 28px;
}

#password-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#password-input {
  padding: 14px 18px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font);
  outline: none;
  transition: border-color .2s;
  text-align: center;
  letter-spacing: 2px;
}

#password-input:focus {
  border-color: var(--color-primary);
}

#password-form button {
  padding: 14px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: background .2s, transform .1s;
}

#password-form button:hover {
  background: var(--color-primary-dark);
}

#password-form button:active {
  transform: scale(.98);
}

.error-msg {
  color: #EF4444;
  font-size: .875rem;
  margin-top: 4px;
}

/* ── NAVIGATION ── */
#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-light);
  height: var(--nav-height);
  transition: box-shadow .3s;
}

#main-nav.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

#main-nav ul {
  display: flex;
  list-style: none;
  gap: 8px;
}

#main-nav ul a {
  text-decoration: none;
  color: var(--color-text-secondary);
  font-size: .875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}

#main-nav ul a:hover,
#main-nav ul a.active {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

/* ── FLOATING PDF BUTTON ── */
.pdf-download-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-primary);
  color: white;
  text-decoration: none;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg), 0 0 0 0 rgba(37,99,235,.3);
  transition: background .2s, transform .2s, box-shadow .2s;
  animation: pulse-shadow 2.5s ease-in-out infinite;
}

.pdf-download-btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  animation: none;
}

.pdf-download-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@keyframes pulse-shadow {
  0%, 100% { box-shadow: var(--shadow-lg), 0 0 0 0 rgba(37,99,235,.3); }
  50% { box-shadow: var(--shadow-lg), 0 0 0 8px rgba(37,99,235,0); }
}

/* ── LAYOUT ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

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

/* ── SECTION HEADER ── */
.section-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--color-text);
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  max-width: 720px;
  line-height: 1.7;
}

/* ── HERO ── */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--nav-height);
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg) 100%);
}

.hero-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 32px;
}

.hero-label {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: .9rem;
  color: var(--color-text-light);
  margin-bottom: 40px;
}

.hero-meta a {
  color: var(--color-primary);
  text-decoration: none;
}

.hero-meta a:hover {
  text-decoration: underline;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--color-primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  transition: background .2s, transform .15s;
  box-shadow: var(--shadow-md);
}

.cta-btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ── TWO COLUMNS ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}

.col-text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  color: var(--color-text-secondary);
}

.col-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.benefit-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: transform .2s, box-shadow .2s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.benefit-card h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: .85rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ── SUPPORT BLOCK ── */
.support-block {
  margin-top: 64px;
}

.support-block h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.support-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.support-card {
  background: var(--color-primary-light);
  border: 1px solid rgba(37,99,235,.12);
  border-radius: var(--radius);
  padding: 28px;
}

.support-badge {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.support-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.support-card p {
  font-size: .9rem;
  color: var(--color-text-secondary);
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  margin-top: 56px;
  padding-left: 0;
}

.timeline-line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom,
    var(--tl-blue) 0%,
    var(--tl-sky) 20%,
    var(--tl-teal) 40%,
    var(--tl-violet) 65%,
    var(--tl-amber) 100%
  );
  border-radius: 4px;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: opacity .5s, transform 1.2s cubic-bezier(.22,1,.36,1);
}

.timeline-line.animate {
  opacity: 1;
  transform: scaleY(1);
}

.timeline-item {
  position: relative;
  padding-left: 72px;
  margin-bottom: 32px;
}

.timeline-item:last-of-type {
  margin-bottom: 0;
}

/* Timeline dot */
.timeline-marker {
  position: absolute;
  left: 19px;
  top: 28px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.timeline-dot {
  display: block;
  width: 14px;
  height: 14px;
  background: var(--item-color, var(--tl-blue));
  border-radius: 50%;
  border: 3px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--item-color, var(--tl-blue));
  transition: transform .3s;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.2);
}

/* Chevron arrow between items */
.timeline-chevron {
  display: none;
}

/* Timeline card – colored per item */
.timeline-card {
  background: var(--item-bg, var(--tl-blue-light));
  border: 2px solid var(--item-border, rgba(37,99,235,.2));
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .2s, box-shadow .2s;
}

.timeline-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.timeline-badge {
  display: inline-block;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  color: #fff;
  background: var(--item-color, var(--tl-blue));
}

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

.timeline-focus {
  color: var(--color-text-secondary);
  font-size: .9rem;
  margin-bottom: 14px;
  font-style: italic;
}

.timeline-milestones {
  margin-bottom: 14px;
}

.timeline-milestones h5 {
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-text-light);
  margin-bottom: 8px;
}

.timeline-milestones ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.timeline-milestones li {
  position: relative;
  padding-left: 18px;
  font-size: .85rem;
  color: var(--color-text-secondary);
}

.timeline-milestones li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--item-color, var(--tl-blue));
}

.timeline-impact {
  padding: 12px 16px;
  background: var(--item-impact-bg, rgba(37,99,235,.08));
  border-radius: var(--radius-sm);
  font-size: .85rem;
  color: var(--color-text);
  border-left: 4px solid var(--item-color, var(--tl-blue));
}

.timeline-impact strong {
  color: var(--item-color, var(--tl-blue));
}

/* Timeline end marker */
.timeline-end {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.timeline-end-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
  background: linear-gradient(135deg, var(--tl-amber) 0%, var(--tl-rose) 100%);
  box-shadow: 0 4px 16px rgba(244,63,94,.25);
}

/* Per-item color themes (set via inline style --item-color etc.) */
.tl-theme-blue {
  --item-color: var(--tl-blue);
  --item-bg: var(--tl-blue-light);
  --item-border: rgba(37,99,235,.2);
  --item-impact-bg: rgba(37,99,235,.08);
}
.tl-theme-sky {
  --item-color: var(--tl-sky);
  --item-bg: var(--tl-sky-light);
  --item-border: rgba(14,165,233,.2);
  --item-impact-bg: rgba(14,165,233,.08);
}
.tl-theme-teal {
  --item-color: var(--tl-teal);
  --item-bg: var(--tl-teal-light);
  --item-border: rgba(20,184,166,.2);
  --item-impact-bg: rgba(20,184,166,.08);
}
.tl-theme-violet {
  --item-color: var(--tl-violet);
  --item-bg: var(--tl-violet-light);
  --item-border: rgba(139,92,246,.2);
  --item-impact-bg: rgba(139,92,246,.08);
}
.tl-theme-amber {
  --item-color: var(--tl-amber);
  --item-bg: var(--tl-amber-light);
  --item-border: rgba(245,158,11,.2);
  --item-impact-bg: rgba(245,158,11,.08);
}

/* ── BEHAVIOR CARDS ── */
.behavior-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.behavior-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .2s, box-shadow .2s;
}

.behavior-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.behavior-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.behavior-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-light);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.behavior-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-primary);
}

.behavior-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.behavior-card p {
  font-size: .95rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.behavior-change {
  display: flex;
  align-items: center;
  gap: 16px;
}

.behavior-old, .behavior-new {
  flex: 1;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  line-height: 1.5;
}

.behavior-old {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
}

.behavior-new {
  background: var(--color-success-light);
  border: 1px solid #A7F3D0;
  color: #065F46;
}

.change-label {
  display: block;
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.behavior-arrow {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-light);
  flex-shrink: 0;
}

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}

.pricing-card.primary {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary), var(--shadow-md);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-label {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card.primary .pricing-label {
  background: var(--color-primary);
  color: white;
}

.pricing-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  min-height: 2.4em;
}

.pricing-amount {
  margin-bottom: 20px;
}

.price {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.currency {
  display: block;
  font-size: .9rem;
  color: var(--color-text-light);
  margin-top: 6px;
}

.pricing-desc {
  font-size: .9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ── TERMS TIMELINE ── */
.terms-timeline {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.terms-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border-light);
  align-items: start;
}

.terms-item:last-child {
  border-bottom: none;
}

.terms-period {
  flex-shrink: 0;
  width: 130px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--color-primary);
  padding-top: 2px;
}

.terms-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.terms-content p {
  font-size: .95rem;
  color: var(--color-text-secondary);
}

.exclusions {
  margin-top: 48px;
  padding: 28px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.exclusions h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.exclusions ul {
  list-style: none;
}

.exclusions li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: .9rem;
  color: var(--color-text-secondary);
}

.exclusions li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-text-light);
}

.validity {
  margin-top: 40px;
  text-align: center;
  padding: 32px;
  background: var(--color-primary-light);
  border-radius: var(--radius);
}

.validity p {
  font-size: 1rem;
  color: var(--color-text);
}

.validity-date {
  margin-top: 4px;
  color: var(--color-text-secondary) !important;
  font-size: .9rem !important;
}

/* ── FOOTER ── */
.footer {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-brand p {
  font-weight: 600;
  font-size: .9rem;
}

.footer-contact p {
  font-size: .85rem;
  color: var(--color-text-secondary);
  text-align: center;
}

.footer-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--color-primary-light);
  color: var(--color-primary);
  text-decoration: none;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  transition: background .2s, color .2s;
}

.footer-pdf-btn:hover {
  background: var(--color-primary);
  color: white;
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

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

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--delay, 0s);
}

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .col-cards {
    grid-template-columns: 1fr 1fr;
  }

  .support-cards {
    grid-template-columns: 1fr;
  }

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

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

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-logo {
    width: 144px;
    height: 144px;
  }

  #main-nav ul {
    display: none;
  }

  .nav-inner {
    justify-content: center;
  }

  .col-cards {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    padding-left: 52px;
  }

  .timeline-line {
    left: 18px;
  }

  .timeline-marker {
    left: 8px;
  }

  .timeline-marker.large {
    left: 4px;
  }

  .timeline-card {
    padding: 24px 20px;
  }

  .behavior-change {
    flex-direction: column;
    gap: 8px;
  }

  .behavior-arrow {
    transform: rotate(90deg);
  }

  .terms-item {
    flex-direction: column;
    gap: 8px;
  }

  .terms-period {
    width: auto;
  }

  .price {
    font-size: 2rem;
  }

  .pricing-card {
    padding: 28px 24px;
  }

  .pdf-download-btn span {
    display: none;
  }

  .pdf-download-btn {
    padding: 16px;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    justify-content: center;
  }

  .pdf-download-btn svg {
    width: 22px;
    height: 22px;
  }
}
