/* =========================================================
   EZ Solutions — Dark Glass Theme (clean build)
   ========================================================= */

/* ---- Tokens ---- */
:root {
  --brand: #00bf63;
  --brand-600: #00a855;

  --text: #e6edf3;
  --muted: #b6c2cc;

  /* Card tones */
  --card: rgba(84, 84, 85, 0.46); /* pricing, service, contact cards */
  --glass: rgba(17, 24, 39, 0.4); /* generic glass surfaces/wrappers */

  --border: rgba(255, 255, 255, 0.09);

  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 22px;
  --pill: 999px;
  --shadow-sm: 0 6px 14px rgba(0, 0, 0, 0.2);
  --shadow: 0 22px 40px -10px rgba(0, 0, 0, 0.45);
  --t: all .28s ease;
}

/* ---- Reset ---- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: var(--t);
}
ul {
  list-style: none;
}
button {
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

/* ---- Page background ---- */
body {
  font-family: "Inter", "Segoe UI", Roboto, system-ui, -apple-system, Arial, sans-serif;
  color: var(--text);
  overflow-x: hidden;
  scroll-snap-type: y proximity;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url("../images/backgrounds/office3.jpg") center / cover no-repeat fixed;
  filter: blur(10px);
  transform: scale(1.04);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(9, 12, 15, 0.55), rgba(9, 12, 15, 0.55));
}

section {
  scroll-snap-align: start;
  scroll-margin-top: 86px;
  position: relative;
  padding-bottom: 94px;
}

section::after {
  content: "";
  position: absolute;
  bottom: 0; /* Changed back to 0 so divider sits at the very bottom of each section */
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 1px 3px rgba(255, 255, 255, 0.08);
}

section:last-of-type::after {
  display: none;
}

/* ---- Global spacing ---- */
h1 {
  font-size: 30px;
  line-height: 1.08;
  margin: 0 0 .75rem;
}
h2 {
  font-size: 30px;
  margin: 0 0 .5rem;
}
h3 {
  font-size: 20px;
  margin: 0 0 .35rem;
}
p {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 1rem;
}
.badge {
  margin-bottom: 1rem;
}

/* Buttons — bigger + pushed down a bit */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  border-radius: 14px;
  padding: 14px 20px;
  transition: var(--t);
  margin: 18px 12px 0 0;
}
.btn i {
  font-size: 1em;
}

/* Layout container */
.container {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  padding: 0 24px;

}
section {
  padding: 64px 0;
}

/* Simple spacer */
.spacer {
  height: 80px;
  display: block;
}

/* ---- Header ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 22, 27, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  height: 90px;
}
.logo img {
  height: 90px;
  width: auto;
  margin-top: 20px;
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  opacity: 0.9;
  font-weight: 500;
  letter-spacing: .2px;
  position: relative;
  font-size: 20px;
}
.nav-links a:hover {
  opacity: 1;
}
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}
.social-icons {
  display: flex;
  gap: 10px;
}
.social-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #1e262e;
  border: 1px solid var(--border);
  opacity: 0.9;
  transition: var(--t);
}
.social-icon:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.mobile-menu-btn {
  display: none;
}

/* ---- Buttons ---- */
.btn-primary {
  background: var(--brand);
  color: #0a0f12;
}
.btn-primary:hover {
  background: var(--brand-600);
  transform: translateY(-1px);
}
.btn-light {
  background: #fff;
  color: var(--brand);
}
.btn-light:hover {
  transform: translateY(-1px);
}

/* ---- Surface (glass) ---- */
.surface {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  color: #e5e7eb;
}
.surface h1,
.surface h2 {
  color: #f4f7fb;
}
.surface p {
  color: #cdd9e3;
}

/* =========================================================
   INDEX — hero + small service cards
   ========================================================= */
.hero-section {
  padding: 30px 0 20px;
}
.hero-content {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 50px;
}

.hero-image .image-wrapper {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.hero-image {
  width: 500px;
  height: auto;
  margin-left: 0px;
}


.services-section {
  padding-top: 10px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
  justify-items: center; /* Centers cards horizontally in each grid cell */
}

.service-card {
  background: var(--card);
  color: #e5e7eb;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
  height: 100%;
  cursor: pointer;
  width: 100%;
  max-width: 420px; /* Keeps consistent card width while centering */
}


/* Center the 7th card in the middle column when it's alone in the last row */
.service-card:nth-child(7) {
  grid-column: 2 / 3;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

/* Added text-align center and margin for h3 in service cards */
.service-card h3 {
  text-align: center;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 16px;
  color: #cbd5e1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  color: var(--brand);
  font-weight: 700;
}
.service-link i {
  margin-left: .4rem;
  transition: var(--t);
}
.service-link:hover i {
  transform: translateX(3px);
}

/* Portfolio grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: center;
  justify-items: center;
}
.portfolio-thumb {
  display: block;
  width: 60%;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  transition: transform .18s ease;
}
.portfolio-thumb:hover {
  transform: scale(1.02);
}
.portfolio-thumb.shot {
  width: 80%;
}
.portfolio-thumb.logo,
.portfolio-thumb.avatar {
  width: 30%;
}

/* Lightbox */
.enlargeable {
  cursor: zoom-in;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.85);
  padding: 24px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: min(92vw, 1400px);
  max-height: 92vh;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
}

/* =========================================================
   PRODUCTS — left text / right images
   ========================================================= */
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Reduced gap from 60px to 30px to bring columns closer together */
  gap: 30px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.product-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Added product-pricing wrapper for right column */
.product-pricing {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

/* General media size for product screenshots */
.product-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Removed margin-top to fix alignment with pricing card */
  margin-top: 0;
}

.product-media img {
  width: 90%;
  max-width: 500px;
  margin: 15px auto;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* Added specific styling for PDF Master screenshots to make them bigger */
#pdf-master .product-media img {
  width: 100%;
  max-width: 650px;
  margin: 10px auto;
}

/* Added margin-top for product-media when it comes after feature-list */
.feature-list + .product-media {
  margin-top: 30px;
}

/* Added image collage grid for Logo and Avatar sections */
.image-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px; /* Reduced from 20px to 10px to bring images closer together */
  width: 60%;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  /* Reduced padding to make pricing card smaller */
  padding: 14px;
  box-shadow: var(--shadow);
  width: 100%;
  /* Reduced max-width to make pricing card smaller */
  max-width: 320px;
}

/* =========================================================
   CONTACT — centered two-column grid
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  align-items: start;

  /* center the whole grid */
  width: min(1100px, 100%);
  margin-inline: auto; /* centers it */
  justify-content: center; /* keeps columns centered */
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px; /* was 14px */
  padding: 16px; /* was 20px */
  box-shadow: var(--shadow-sm);
  margin-top: 10px;
}

.contact-methods {
  display: grid;
  gap: .75rem;
  margin: .75rem 0;
  text-align: center; /* tighter */
}
.contact-method {
  display: flex;
  gap: .75rem;
  justify-content: center;
  align-items: center;
}

.contact-icon {
  width: 22px;
  height: 22px; /* was 28x28 */
  border-radius: 8px; /* was 10px */
  background: rgba(0, 191, 99, 0.18);
  color: #22c55e;
  border: 1px solid rgba(0, 191, 99, 0.4);
  display: grid;
  place-items: center;
  font-size: 12px; /* was 14px */
}

.social-links {
  display: flex;
  gap: .5rem;
}
.social-link {
  width: 28px;
  height: 28px; /* was 34x34 */
  border-radius: 8px; /* was 10px */
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #e5e7eb;
}

/* Headings in the two contact cards */
.contact-card h2 {
  font-size: 26px !important;
  line-height: 1.2;
}
.contact-card h3 {
  font-size: 18px !important;
  line-height: 1.25;
}

/* Body text & links inside the cards */
.contact-card p,
.contact-card a,
.contact-card li {
  font-size: 20px !important;
  line-height: 1.55;
}

/* Labels */
.contact-form label {
  font-size: 16px !important;
}

/* Inputs / selects / textarea text size + tighter padding */
.contact-form input,
.contact-form select,
.contact-form textarea {
  font-size: 16px !important;
  padding: 10px 12px !important;
  border-radius: 10px;
  line-height: 1.4;
}
.contact-form textarea {
  min-height: 140px;
}

/* Submit button inside the right card */
.contact-card .btn {
  font-size: 16px !important;
  padding: 12px 14px !important;
  margin-top: 10px;
  width: 40% !important;
}

@media (max-width: 900px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}
.contact-form label {
  display: block;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: .2px;
  margin-bottom: 6px;
  color: #e6edf3;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font-size: 20px;
  line-height: 1.4;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9fb0bd;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 191, 99, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 191, 99, 0.18);
  background: rgba(255, 255, 255, 0.08);
}
.contact-form button[type="submit"] {
  width: 100%;
  justify-content: center;
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 22px;
}

/* ---- Footer ---- */
.footer {
  padding: 60px 0 28px;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}
.footer .footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 20px;
  padding-top: 14px;
  color: #a9b7c6;
  text-align: center;
}
.footer .footer-logo img {
  height: 90px;
  margin-left: 10px;
}
.footer p {
  font-size: 14px;
}
.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer a {
  font-size: 16px;
  
}
.footer .footer-grid {
  row-gap: 16px;
}
.footer-links li,
.contact-info li {
  margin-bottom: 10px;
  line-height: 1.4;
 
}

/* Footer links styling */
.footer-links a {
  font-weight: 600;
  opacity: 0.85;
  transition: var(--t);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--brand);
}

.footer-links a.active {
  color: var(--brand);
  opacity: 1;
}

/* =========================================================
   MOBILE RESPONSIVE STYLES
   ========================================================= */

/* Added mobile menu overlay styles */
.mobile-nav-overlay {
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(16, 22, 27, 0.98);
  backdrop-filter: blur(12px);
  z-index: 40;
  display: none;
  flex-direction: column;
  padding: 2rem;
  overflow-y: auto;
}

.mobile-nav-overlay.active {
  display: flex;
}

.mobile-nav-overlay .nav-links {
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mobile-nav-overlay .nav-links a {
  font-size: 18px;
  text-align: center;
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-overlay .social-icons {
  justify-content: center;
  margin-top: auto;
}

/* Tablet breakpoint */
@media (max-width: 1024px) {
  /* Show burger menu, hide desktop nav */
  .mobile-menu-btn {
    display: block;
    font-size: 24px;
    color: var(--text);
    padding: 10px;
  }

  .header-content .nav-links,
  .header-content .social-icons {
    display: none;
  }

  /* Stack hero content vertically, center everything */
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .hero-image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Stack service cards in 2 columns */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .service-card {
    width: 100%;
  }

  /* Stack product rows vertically, center content */
  .product-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  /* Added product-pricing centering for tablet */
  .product-pricing {
    align-items: center;
  }

  .product-media {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product-media img {
    width: 90%;
    max-width: 400px;
    margin: 15px auto;
  }

  #logo-design .product-media img,
  #avatar .product-media img {
    width: 50%;
    max-width: 250px;
  }

  .pricing-card {
    width: 100%;
    max-width: 400px;
    /* Adjusted margin for stacked layout */
    margin: 0 auto;
  }

  /* Stack contact grid vertically */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Stack footer columns in 2x2 grid */
  .footer .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  /* Portfolio grid to 2 columns */
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-thumb.shot {
    width: 86%;
  }

  .portfolio-thumb.logo,
  .portfolio-thumb.avatar {
    width: 62%;
  }

  /* Keep 2x2 grid on tablet for collages */
  .image-collage {
    max-width: 500px;
    gap: 8px; /* Reduced from 15px to 8px for tighter spacing on tablet */
  }
}

/* Mobile breakpoint */
@media (max-width: 768px) {
  /* Reduce container padding on mobile */
  .container {
    padding: 0 16px;
  }

  /* Override any inline width constraints on mobile for better readability */
  .container[style*="width"],
  section .container {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Reduce section padding */
  section {
    padding: 40px 0;
  }

  .spacer {
    height: 40px;
  }

  /* Adjust typography for mobile */
  h1 {
    font-size: 20px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 18px;
  }

  p {
    font-size: 16px;
  }

  /* Adjust header height for mobile */
  .header-content {
    height: 70px;
  }

  .logo img {
    height: 90px;
    margin-top: 10px;
  }

  .mobile-nav-overlay {
    top: 70px;
  }

  /* Stack service cards in single column */
  .services-grid {
    grid-template-columns: 1fr;
  }

  /* Remove the 7th card centering on mobile since all cards are now single column */
  .service-card:nth-child(7) {
    grid-column: auto;
  }

  /* Adjust button sizing */
  .btn {
    font-size: 14px;
    padding: 12px 16px;
    margin: 12px 6px 0 0;
  }

  /* Full width buttons on mobile */
  .hero-text .btn {
    width: 100%;
    justify-content: center;
    margin: 12px 0;
  }

  /* Adjust pricing card */
  .pricing-card {
    padding: 16px;
    /* Removed margin-top since layout is stacked */
    margin: 0 auto;
  }

  .pricing-header .price {
    font-size: 28px;
  }

 .footer .footer-content{
  grid-template-columns: 1fr;
  row-gap: 16px;
  justify-items: center;     /* ← centers items inside the grid cells */
  text-align: center;
}

.footer .footer-logo{
  display: flex;
  justify-content: center;   /* ← centers the logo wrapper itself */
}

.footer .footer-logo img{
  height: 70px;
  display: block;
  margin: 0 auto;            /* ← ensures the image is centered */
}

  .footer-social {
    justify-content: center;
  }

  /* Adjust contact form for mobile */
  .contact-form label {
    font-size: 18px !important;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 16px !important;
  }

  .contact-form button[type="submit"] {
    font-size: 18px !important;
  }

  .contact-card .btn {
    width: 100% !important;
  }

  .contact-card h2 {
    font-size: 22px !important;
  }

  .contact-card h3 {
    font-size: 16px !important;
  }

  /* Adjust social icons */
  .social-icon {
    width: 40px;
    height: 40px;
  }

  /* Center hero image */
  .hero-image {
    max-width: 100%;
  }

  /* Adjust product media for mobile */
  .product-media img {
    width: 100%;
    max-width: 100%;
  }

  #logo-design .product-media img,
  #avatar .product-media img {
    width: 70%;
    max-width: 300px;
  }

  /* Stack collage images in single column on mobile */
  .image-collage {
    grid-template-columns: 1fr;
    max-width: 300px;
    gap: 12px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  /* Further reduce spacing on very small screens */
  .container {
    padding: 0 12px;
  }

  h1 {
    font-size: 20px;
  }

  h2 {
    font-size: 20px;
  }

  .logo img {
    height: 50px;
  }

  .header-content {
    height: 60px;
  }

  .mobile-nav-overlay {
    top: 60px;
  }
}

/* =========================================================
   COOKIE BANNER
   ========================================================= */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  max-width: 600px;
  width: calc(100% - 40px);

  /* Match website's glass card design */
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow);

  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 16px;

  animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

#cookie-banner p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

#cookie-banner a {
  color: var(--brand);
  text-decoration: underline;
  transition: var(--t);
}

#cookie-banner a:hover {
  color: var(--brand-600);
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  flex: 1;
  min-width: 120px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--t);
  cursor: pointer;
}

#accept-cookies {
  background: var(--brand);
  color: #0a0f12;
  border: none;
}

#accept-cookies:hover {
  background: var(--brand-600);
  transform: translateY(-1px);
}

#decline-cookies {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  border: 1px solid var(--border);
}

#decline-cookies:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

/* Mobile adjustments for cookie banner */
@media (max-width: 640px) {
  #cookie-banner {
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 20px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }
}

/* =========================================================
   DOWNLOAD NOTIFICATION
   ========================================================= */
.download-notification {
  position: fixed;
  top: 120px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  z-index: 1000;
  max-width: 600px;
  width: calc(100% - 40px);

  /* Match website's glass card design */
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow);

  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
}

.download-notification.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.download-notification-content {
  padding: 20px 24px;
  position: relative;
}

.download-notification-content p {
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 8px 0;
}

.download-notification-content p:last-of-type {
  margin-bottom: 0;
}

.download-fallback {
  font-size: 14px !important;
  color: var(--muted);
}

.download-notification-content a {
  color: var(--brand);
  text-decoration: underline;
  font-weight: 600;
  transition: var(--t);
}

.download-notification-content a:hover {
  color: var(--brand-600);
}

.download-notification-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--t);
}

.download-notification-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

/* Mobile adjustments for download notification */
@media (max-width: 640px) {
  .download-notification {
    top: 90px;
    width: calc(100% - 20px);
  }

  .download-notification-content {
    padding: 16px 20px;
  }

  .download-notification-content p {
    font-size: 14px;
  }

  .download-fallback {
    font-size: 13px !important;
  }
}
