/* ========================================
   PragmaPro - Site Institucional
   Ferramentas profissionais, resultados garantidos
   ======================================== */

/* --- CSS Variables --- */
:root {
  --color-primary: #B71C1C;
  --color-primary-dark: #8B1515;
  --color-primary-light: #D32F2F;
  --color-secondary: #1A3A5C;
  --color-secondary-dark: #0F2440;
  --color-secondary-light: #2C5A8A;
  --color-accent: #C62828;
  --color-steel: #8BA4B8;
  --color-steel-light: #B0C4D8;
  --color-bg: #FAFBFC;
  --color-bg-alt: #F0F3F6;
  --color-bg-dark: #111827;
  --color-text: #1F2937;
  --color-text-light: #6B7280;
  --color-text-muted: #9CA3AF;
  --color-white: #FFFFFF;
  --color-border: #E5E7EB;
  --color-success: #059669;

  --font-display: 'DM Sans', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-secondary-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

p { margin-bottom: 1rem; }

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

/* --- Utility --- */
.section {
  padding: 80px 0;
}

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

.section--dark {
  background: var(--color-bg-dark);
  color: var(--color-white);
}

.section--dark h2,
.section--dark h3 {
  color: var(--color-white);
}

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

.section-header p {
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-top: 16px;
}

.section--dark .section-header p {
  color: var(--color-steel-light);
}

.label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.section--dark .label {
  color: var(--color-steel-light);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn--primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(183, 28, 28, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-border);
}

.btn--secondary:hover {
  border-color: var(--color-secondary);
  background: var(--color-secondary);
  color: var(--color-white);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-secondary-dark);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--color-white);
}

.btn--whatsapp:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

/* --- Header/Nav --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.header--scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.header__logo img {
  height: 38px;
  width: 38px;
  object-fit: contain;
  border-radius: 8px;
}

.header__logo .logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.header__logo .logo-wordmark .pragma { color: var(--color-secondary-dark); }
.header__logo .logo-wordmark .pro { color: var(--color-primary); }

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__nav a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-light);
  position: relative;
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--color-secondary-dark);
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

.header__nav a:hover::after,
.header__nav a.active::after {
  width: 100%;
}

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

.header__cta .btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-secondary-dark);
  margin: 6px 0;
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(165deg, var(--color-bg) 0%, #E8EEF4 50%, #F0F3F6 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(183,28,28,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26,58,92,0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 720px;
}

.hero__logo-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  padding: 10px 22px 10px 12px;
  border-radius: 60px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  margin-bottom: 28px;
}

.hero__logo-pill img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.hero__logo-pill .pill-wordmark {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero__logo-pill .pill-wordmark .pragma { color: var(--color-secondary-dark); }
.hero__logo-pill .pill-wordmark .pro { color: var(--color-primary); }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(183, 28, 28, 0.08);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero__badge svg {
  width: 16px;
  height: 16px;
}

.hero__title {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--color-secondary-dark);
}

.hero__title span {
  background: linear-gradient(135deg, var(--color-primary) 0%, #D32F2F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.hero__stat-text {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-top: 4px;
}

/* --- Differentials / Features --- */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--color-white);
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(183, 28, 28, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-primary);
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Products Section --- */
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  text-align: center;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card__image {
  height: 180px;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.product-card__image svg {
  width: 64px;
  height: 64px;
  color: var(--color-secondary);
  opacity: 0.6;
}

.product-card__content {
  padding: 24px 20px;
}

.product-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--color-secondary-dark) 0%, var(--color-secondary) 50%, var(--color-secondary-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(183,28,28,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner__inner {
  text-align: center;
  padding: 72px 0;
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--color-steel-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- About Page Styles --- */
.about-hero {
  padding: 140px 0 80px;
  background: linear-gradient(165deg, var(--color-bg) 0%, #E8EEF4 100%);
}

.about-hero h1 {
  max-width: 700px;
}

.about-hero p {
  max-width: 600px;
  font-size: 1.1rem;
  color: var(--color-text-light);
  margin-top: 20px;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__content h2 {
  margin-bottom: 20px;
}

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

.about__brand-card {
  background: linear-gradient(135deg, var(--color-secondary-dark), var(--color-secondary));
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about__brand-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(183,28,28,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.about__brand-card img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.about__brand-card .brand-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.about__brand-card .brand-name .pragma { color: #fff; }
.about__brand-card .brand-name .pro { color: #D32F2F; }

.about__brand-card .brand-tagline {
  color: var(--color-steel-light);
  font-size: 0.92rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  text-align: center;
  padding: 36px 24px;
}

.value-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(183, 28, 28, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-primary);
}

.value-card__icon svg {
  width: 28px;
  height: 28px;
}

.value-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* --- Contact Page --- */
.contact-hero {
  padding: 140px 0 80px;
  background: linear-gradient(165deg, var(--color-bg) 0%, #E8EEF4 100%);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact__info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  margin-bottom: 16px;
}

.contact__info-card svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact__info-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.contact__info-card a {
  color: var(--color-primary);
}

.contact__info-card a:hover {
  text-decoration: underline;
}

.contact__form {
  background: var(--color-white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-secondary-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: var(--transition);
  background: var(--color-bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(183, 28, 28, 0.08);
  background: var(--color-white);
}

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

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

/* --- Blog Listing --- */
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

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

.blog-card__image {
  height: 200px;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card__image svg {
  width: 48px;
  height: 48px;
  color: var(--color-steel);
}

.blog-card__content {
  padding: 24px;
}

.blog-card__date {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-weight: 500;
}

.blog-card h3 {
  font-size: 1.05rem;
  margin: 8px 0;
}

.blog-card h3 a:hover {
  color: var(--color-primary);
}

.blog-card p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* --- Footer --- */
.footer {
  background: var(--color-bg-dark);
  color: var(--color-steel-light);
  padding: 64px 0 0;
}

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

.footer__brand .footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.footer__brand .footer-logo-row img {
  height: 40px;
  width: 40px;
  border-radius: 10px;
}

.footer__brand .footer-logo-row .footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer__brand .footer-logo-row .footer-wordmark .pragma { color: #fff; }
.footer__brand .footer-logo-row .footer-wordmark .pro { color: var(--color-primary-light, #D32F2F); }

.footer__brand .footer-tagline {
  font-size: 0.8rem;
  color: var(--color-steel);
  font-style: italic;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-steel);
  max-width: 280px;
}

.footer h4 {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer__links a {
  display: block;
  font-size: 0.9rem;
  color: var(--color-steel);
  padding: 4px 0;
}

.footer__links a:hover {
  color: var(--color-white);
}

.footer__contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: var(--color-steel);
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-primary-light);
}

.footer__contact-item a {
  color: var(--color-steel);
}

.footer__contact-item a:hover {
  color: var(--color-white);
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.footer__bottom a {
  color: var(--color-text-muted);
}

.footer__bottom a:hover {
  color: var(--color-white);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* --- Page Hero (generic) --- */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(165deg, var(--color-bg) 0%, #E8EEF4 100%);
}

.page-hero .label {
  margin-bottom: 12px;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--color-text-light);
  max-width: 600px;
}

/* Page hero color variants */
.page-hero--navy {
  background: linear-gradient(165deg, #1A3A5C 0%, #0F2A44 100%);
}

.page-hero--navy .label {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.page-hero--navy h1 {
  color: #fff;
}

.page-hero--navy p {
  color: var(--color-steel-light);
}

.page-hero--red {
  background: linear-gradient(165deg, #B71C1C 0%, #7F1515 100%);
}

.page-hero--red .label {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.page-hero--red h1 {
  color: #fff;
}

.page-hero--red p {
  color: rgba(255,255,255,0.8);
}

/* --- LGPD Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-dark);
  color: var(--color-steel-light);
  padding: 20px 24px;
  z-index: 9999;
  display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.active {
  display: block;
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner p {
  font-size: 0.88rem;
  margin-bottom: 0;
  flex: 1;
}

.cookie-banner p a {
  color: var(--color-steel-light);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-banner .btn {
  padding: 10px 20px;
  font-size: 0.82rem;
}

/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero__inner {
    flex-direction: column;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header__nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--color-border);
  }

  .header__nav.active {
    display: flex;
  }

  .header__cta {
    display: none;
  }

  .header__mobile-toggle {
    display: block;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero__stats {
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
  }

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

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

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

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

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 60px 0;
  }

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

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero__stats {
    flex-direction: column;
    gap: 16px;
  }

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

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }
}
