/* ============================================
   Norton Antivirus Landing Page - Compiled CSS
   ============================================ */

/* CSS Variables for Norton Colors */
:root {
  --norton-yellow: #FFC300;
  --norton-yellow-light: #FFD740;
  --norton-yellow-dark: #E6B000;
  --norton-black: #000000;
  --norton-dark: #1A1A1A;
  --norton-gray-dark: #2D2D2D;
  --norton-gray: #4A4A4A;
  --norton-gray-light: #8C8C8C;
  --norton-white: #FFFFFF;
  --norton-off-white: #F5F5F5;
  --accent-green: #00C853;
  --accent-red: #FF3D00;
  --accent-blue: #2196F3;
  --gradient-primary: linear-gradient(135deg, #FFC300 0%, #E6B000 100%);
  --gradient-dark: linear-gradient(180deg, #000000 0%, #1A1A1A 100%);
  --gradient-hero: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 50%, #2D2D2D 100%);
  --shadow-glow: 0 0 30px rgba(255, 195, 0, 0.4);
  --shadow-glow-intense: 0 0 50px rgba(255, 195, 0, 0.6);
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--norton-white);
  background: var(--norton-black);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

::selection {
  background: var(--norton-yellow);
  color: var(--norton-black);
}

:focus-visible {
  outline: 2px solid var(--norton-yellow);
  outline-offset: 2px;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--norton-dark);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb {
  background: var(--norton-gray);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--norton-yellow);
}

/* Scroll Progress */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s ease;
}

/* Announcement Bar */
.announcement-bar {
  background: var(--gradient-primary);
  padding: 0.5rem 0;
  text-align: center;
}

.announcement-bar__text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--norton-black);
}

.announcement-bar__text a {
  text-decoration: underline;
  font-weight: 700;
}

.announcement-bar__text a:hover {
  text-decoration: none;
}

.announcement-bar__timer {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.5rem;
  font-weight: 700;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  padding: 1rem 0;
  transition: all var(--transition-base);
  margin-top: 36px;
}

.header.scrolled {
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0;
}

.header__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.header__logo span {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--norton-yellow);
}

.header__nav {
  display: none;
}

@media (min-width: 992px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.header__nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--norton-white);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.header__nav a:hover {
  color: var(--norton-yellow);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  background: var(--gradient-primary);
  color: var(--norton-black);
  box-shadow: var(--shadow-glow);
}

.header__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-intense);
}

.header__mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 992px) {
  .header__mobile-toggle {
    display: none;
  }
}

.header__mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--norton-white);
  transition: all var(--transition-fast);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--gradient-hero);
  overflow: hidden;
  padding-top: 136px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 195, 0, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(255, 195, 0, 0.05) 0%, transparent 30%);
  pointer-events: none;
}

.hero__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 136px);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero__content {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 1rem;
  background: var(--norton-yellow);
  color: var(--norton-black);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite;
}

.hero__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--norton-white);
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 3rem;
  }
}

@media (min-width: 992px) {
  .hero__title {
    font-size: 3.75rem;
  }
}

.hero__title .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--norton-gray-light);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.25rem;
  }
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 576px) {
  .hero__cta-group {
    flex-direction: row;
    justify-content: center;
  }
}

.hero__cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  background: var(--gradient-primary);
  color: var(--norton-black);
  box-shadow: var(--shadow-glow);
  animation: glow 2s infinite;
}

.hero__cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-intense);
}

.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  border: 2px solid var(--norton-yellow);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  background: transparent;
  color: var(--norton-yellow);
}

.hero__cta-secondary:hover {
  background: var(--norton-yellow);
  color: var(--norton-black);
}

.hero__trust {
  margin-top: 3rem;
}

.hero__trust-text {
  font-size: 0.875rem;
  color: var(--norton-gray-light);
  margin-bottom: 1rem;
}

.hero__trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  opacity: 0.8;
  font-size: 0.875rem;
  color: var(--norton-gray-light);
}

.hero__floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__floating-elements .shield {
  position: absolute;
  font-size: 4rem;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.hero__floating-elements .shield:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.hero__floating-elements .shield:nth-child(2) {
  top: 20%;
  right: 15%;
  animation-delay: 1s;
}

.hero__floating-elements .shield:nth-child(3) {
  bottom: 20%;
  left: 20%;
  animation-delay: 2s;
}

.hero__floating-elements .shield:nth-child(4) {
  bottom: 15%;
  right: 10%;
  animation-delay: 3s;
}

/* Stats Bar */
.stats-bar {
  background: var(--norton-dark);
  border-top: 1px solid rgba(255, 195, 0, 0.2);
  border-bottom: 1px solid rgba(255, 195, 0, 0.2);
}

.stats-bar__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .stats-bar__container {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats-bar__item {
  text-align: center;
}

.stats-bar__item-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--norton-yellow);
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .stats-bar__item-number {
    font-size: 2.25rem;
  }
}

.stats-bar__item-label {
  font-size: 0.875rem;
  color: var(--norton-gray-light);
}

/* Products Section */
.products {
  padding: 6rem 0;
  background: var(--norton-black);
}

@media (max-width: 767px) {
  .products {
    padding: 4rem 0;
  }
}

.products__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.products__header {
  text-align: center;
  margin-bottom: 3rem;
}

.products__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--norton-white);
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .products__title {
    font-size: 2.25rem;
  }
}

.products__subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--norton-gray-light);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.products__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Product Card */
.product-card {
  background: var(--norton-gray-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.product-card--featured {
  border-color: var(--norton-yellow);
}

.product-card--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.2;
}

.product-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 1rem;
  background: var(--norton-yellow);
  color: var(--norton-black);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.product-card__header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.5rem;
}

.product-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: rgba(255, 195, 0, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.product-card__name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--norton-white);
  margin-bottom: 0.25rem;
}

.product-card__tagline {
  font-size: 0.875rem;
  color: var(--norton-gray-light);
}

.product-card__price {
  margin: 1.5rem 0;
  text-align: center;
}

.product-card__price-current {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--norton-yellow);
}

.product-card__price-current span {
  font-size: 1.125rem;
  color: var(--norton-gray-light);
}

.product-card__price-original {
  font-size: 0.875rem;
  color: var(--norton-gray-light);
  text-decoration: line-through;
}

.product-card__price-save {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 1rem;
  background: var(--accent-green);
  color: var(--norton-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius-full);
  margin-top: 0.5rem;
}

.product-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.product-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--norton-white);
}

.product-card__features li::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
  flex-shrink: 0;
}

.product-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  background: var(--gradient-primary);
  color: var(--norton-black);
  box-shadow: var(--shadow-glow);
  width: 100%;
}

.product-card__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-intense);
}

.product-card__secondary-cta {
  display: block;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--norton-yellow);
  text-decoration: none;
}

.product-card__secondary-cta:hover {
  text-decoration: underline;
}

/* Comparison Table */
.comparison {
  padding: 6rem 0;
  background: var(--norton-dark);
}

@media (max-width: 767px) {
  .comparison {
    padding: 4rem 0;
  }
}

.comparison__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.comparison__header {
  text-align: center;
  margin-bottom: 3rem;
}

.comparison__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--norton-white);
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .comparison__title {
    font-size: 2.25rem;
  }
}

.comparison__table-wrapper {
  overflow-x: auto;
}

.comparison__table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.comparison__table th,
.comparison__table td {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison__table th {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--norton-white);
  background: var(--norton-gray-dark);
}

.comparison__table th:first-child {
  text-align: left;
  border-radius: var(--radius-md) 0 0 0;
}

.comparison__table th:last-child {
  border-radius: 0 var(--radius-md) 0 0;
}

.comparison__table th.featured {
  background: rgba(255, 195, 0, 0.2);
  color: var(--norton-yellow);
}

.comparison__table td {
  font-size: 0.875rem;
  color: var(--norton-gray-light);
}

.comparison__table td:first-child {
  text-align: left;
  color: var(--norton-white);
  font-weight: 500;
}

.comparison__table td.featured {
  background: rgba(255, 195, 0, 0.05);
}

.comparison__table .check {
  color: var(--accent-green);
  font-size: 1.25rem;
}

.comparison__table .cross {
  color: var(--accent-red);
  font-size: 1.25rem;
}

.comparison__table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* Features Section */
.features {
  padding: 6rem 0;
  background: var(--norton-black);
}

@media (max-width: 767px) {
  .features {
    padding: 4rem 0;
  }
}

.features__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.features__header {
  text-align: center;
  margin-bottom: 3rem;
}

.features__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--norton-white);
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .features__title {
    font-size: 2.25rem;
  }
}

.features__subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--norton-gray-light);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.features__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 576px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Feature Card */
.feature-card {
  background: var(--norton-gray-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-base);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-card__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 195, 0, 0.1);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.feature-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--norton-white);
  margin-bottom: 0.5rem;
}

.feature-card__description {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--norton-gray-light);
  font-size: 0.875rem;
}

/* Threats Section */
.threats {
  padding: 6rem 0;
  background: var(--gradient-hero);
}

@media (max-width: 767px) {
  .threats {
    padding: 4rem 0;
  }
}

.threats__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.threats__header {
  text-align: center;
  margin-bottom: 3rem;
}

.threats__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--norton-white);
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .threats__title {
    font-size: 2.25rem;
  }
}

.threats__subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--norton-gray-light);
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

.threats__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .threats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .threats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Threat Card */
.threat-card {
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-base);
}

.threat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 195, 0, 0.3);
}

.threat-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: rgba(255, 61, 0, 0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.threat-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--norton-white);
  margin-bottom: 0.5rem;
}

.threat-card__description {
  font-size: 0.875rem;
  color: var(--norton-gray-light);
  line-height: 1.5;
}

/* Trust Section */
.trust {
  padding: 6rem 0;
  background: var(--norton-dark);
}

@media (max-width: 767px) {
  .trust {
    padding: 4rem 0;
  }
}

.trust__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.trust__header {
  text-align: center;
  margin-bottom: 3rem;
}

.trust__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--norton-white);
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .trust__title {
    font-size: 2.25rem;
  }
}

.trust__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 576px) {
  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .trust__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Trust Card */
.trust-card {
  text-align: center;
  padding: 2rem;
}

.trust-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 195, 0, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--norton-yellow);
}

.trust-card__title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--norton-white);
  margin-bottom: 0.5rem;
}

.trust-card__description {
  font-size: 0.875rem;
  color: var(--norton-gray-light);
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  background: var(--norton-black);
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .cta-section {
    padding: 4rem 0;
  }
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 195, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-section__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--norton-white);
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-section__title {
    font-size: 2.25rem;
  }
}

.cta-section__subtitle {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--norton-gray-light);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  background: var(--gradient-primary);
  color: var(--norton-black);
  box-shadow: var(--shadow-glow);
}

.cta-section__button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-intense);
}

.cta-section__guarantee {
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--norton-gray-light);
}

.cta-section__guarantee span {
  color: var(--accent-green);
}

/* Footer */
.footer {
  background: var(--norton-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0 2rem;
}

.footer__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer__brand-logo span {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--norton-yellow);
}

.footer__brand-description {
  font-size: 0.875rem;
  color: var(--norton-gray-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer__brand-social {
  display: flex;
  gap: 1rem;
}

.footer__brand-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--norton-white);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.footer__brand-social a:hover {
  background: var(--norton-yellow);
  color: var(--norton-black);
}

.footer__column-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--norton-white);
  margin-bottom: 1.5rem;
}

.footer__column-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__column-links li {
  margin-bottom: 0.5rem;
}

.footer__column-links a {
  font-size: 0.875rem;
  color: var(--norton-gray-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__column-links a:hover {
  color: var(--norton-yellow);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer__copyright {
  font-size: 0.875rem;
  color: var(--norton-gray-light);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.875rem;
  color: var(--norton-gray-light);
  text-decoration: none;
}

.footer__legal a:hover {
  color: var(--norton-yellow);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--norton-yellow);
  color: var(--norton-black);
  border: none;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: 300;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--norton-dark);
  border-top: 1px solid rgba(255, 195, 0, 0.2);
  padding: 1.5rem;
  z-index: 300;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .cookie-banner__container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-banner__text {
  font-size: 0.875rem;
  color: var(--norton-gray-light);
}

.cookie-banner__text a {
  color: var(--norton-yellow);
  text-decoration: underline;
}

.cookie-banner__buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-banner__accept {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  background: var(--gradient-primary);
  color: var(--norton-black);
  box-shadow: var(--shadow-glow);
}

.cookie-banner__accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-intense);
}

.cookie-banner__decline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  border: 2px solid var(--norton-yellow);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  background: transparent;
  color: var(--norton-yellow);
}

.cookie-banner__decline:hover {
  background: var(--norton-yellow);
  color: var(--norton-black);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(255, 195, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 40px rgba(255, 195, 0, 0.7);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Animate on Scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }
.delay-8 { transition-delay: 0.8s; }

/* Responsive Typography */
@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .cookie-banner,
  .back-to-top,
  .announcement-bar {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
}

