:root {
  --primary: #0a2540;
  --secondary: #1a73e8;
  --accent: #00d4aa;
  --surface: #f8fafc;
  --surface-alt: #ffffff;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --gradient-primary: linear-gradient(135deg, #0a2540 0%, #1a4a7a 100%);
  --gradient-accent: linear-gradient(135deg, #00d4aa 0%, #00b894 100%);
  --shadow-sm: 0 1px 3px rgba(10, 37, 64, 0.08);
  --shadow-md: 0 4px 12px rgba(10, 37, 64, 0.12);
  --shadow-lg: 0 8px 32px rgba(10, 37, 64, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

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

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

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

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

h1,
h2,
h3,
h4 {
  line-height: 1.2;
  color: var(--primary);
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
  margin-bottom: 1rem;
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}

.header__logo img {
  width: 44px;
  height: 44px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  color: var(--text);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--primary);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--text);
  font-weight: 500;
  padding: 0.5rem 0;
  cursor: pointer;
  background: none;
  border: none;
  font-size: inherit;
  font-family: inherit;
}

.nav__dropdown-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.nav__dropdown:hover .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--surface-alt);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 200;
}

.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav__dropdown-menu a {
  display: block;
  padding: 0.625rem 1.25rem;
  color: var(--text);
  font-size: 0.9375rem;
  transition: background var(--transition);
}

.nav__dropdown-menu a:hover {
  background: var(--surface);
  color: var(--primary);
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-md);
}

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

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

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

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

.btn--outline:hover {
  background: var(--primary);
  color: #fff;
}

/* Hero */
.hero {
  padding: 4rem 0 5rem;
  background: var(--gradient-primary);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(0, 212, 170, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__animation {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
  text-align: left;
}

.stat__value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat__label {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Sections */
.section {
  padding: 5rem 0;
}

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

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section__header h2 {
  margin-bottom: 1rem;
}

.section__header p {
  color: var(--text-muted);
}

/* Cards */
.cards {
  display: grid;
  gap: 1.5rem;
}

.cards--3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.cards--2 {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.card {
  background: var(--surface-alt);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

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

.card__icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Features */
.features {
  display: grid;
  gap: 4rem;
}

.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.feature:nth-child(even) {
  direction: rtl;
}

.feature:nth-child(even)>* {
  direction: ltr;
}

.feature__content h3 {
  margin-bottom: 1rem;
}

.feature__content p {
  color: var(--text-muted);
}

.feature__visual {
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.feature__visual svg {
  width: 80%;
  height: auto;
  opacity: 0.9;
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}

.process__step {
  text-align: center;
  position: relative;
}

.process__step::before {
  counter-increment: step;
  content: counter(step);
  width: 48px;
  height: 48px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  margin: 0 auto 1rem;
}

.process__step h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.process__step p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* Logos Grid */
.logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  opacity: 0.6;
}

.logos svg {
  height: 32px;
  width: auto;
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.pricing__card {
  background: var(--surface-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition);
}

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

.pricing__card--featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: scale(1.04);
}

.pricing__card--featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-accent);
  color: var(--primary);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.375rem 1.25rem;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing__header {
  margin-bottom: 1.5rem;
}

.pricing__name {
  font-size: 1.375rem;
  margin-bottom: 0.5rem;
}

.pricing__desc {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.pricing__amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.pricing__period {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.pricing__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 2rem;
  flex: 1;
}

.pricing__features li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.9375rem;
  color: var(--text);
}

.pricing__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  background: var(--gradient-accent);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 8l2.5 2.5 4.5-5' stroke='%230a2540' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 16px;
  background-repeat: no-repeat;
}

.pricing__btn {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

@media (max-width: 900px) {
  .pricing {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pricing__card--featured {
    transform: none;
  }

  .pricing__card--featured:hover {
    transform: translateY(-4px);
  }
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq__item[open] {
  border-color: var(--accent);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background var(--transition);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform var(--transition);
}

.faq__item[open] .faq__question::after {
  content: '−';
}

.faq__question:hover {
  background: var(--surface);
}

.faq__answer {
  padding: 0 1.5rem 1.25rem;
}

.faq__answer p {
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.7;
}

/* CTA */
.cta {
  background: var(--gradient-primary);
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}

.cta h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Footer */
.footer {
  background: var(--primary);
  color: #fff;
  padding: 4rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand p {
  opacity: 0.7;
  margin-top: 1rem;
  font-size: 0.9375rem;
  max-width: 300px;
}

.footer__col h4 {
  color: var(--accent);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: color var(--transition);
}

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

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  opacity: 0.7;
  text-align: center;
}

/* About Page */
.about-hero {
  padding: 4rem 0;
  background: var(--gradient-primary);
  color: #fff;
}

.about-hero h1 {
  color: #fff;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 700px;
}

.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.value {
  background: var(--surface-alt);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.value h3 {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.value p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.team-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.team-info__visual {
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Contact Page */
.contact-hero {
  padding: 4rem 0;
  background: var(--gradient-primary);
  color: #fff;
}

.contact-hero h1 {
  color: #fff;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.125rem;
  opacity: 0.9;
  max-width: 600px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
}

.form {
  background: var(--surface-alt);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color var(--transition);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form__textarea {
  min-height: 120px;
  resize: vertical;
}

.form {
  position: relative;
}

.form-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 10;
}

.form-overlay--visible {
  opacity: 1;
  visibility: visible;
}

.form-loader,
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.form-loader[hidden],
.form-success[hidden] {
  display: none !important;
}

.form-loader__spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: form-spin 0.8s linear infinite;
}

.form-loader__text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-success__icon {
  color: var(--accent);
  flex-shrink: 0;
}

.form-success__text {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
}

.form-iframe {
  position: absolute;
  width: 0;
  height: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@keyframes form-spin {
  to { transform: rotate(360deg); }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background: var(--surface-alt);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 0.5rem;
}

.legal-updated {
  color: var(--text-muted);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content p {
  color: var(--text);
  line-height: 1.7;
}

.legal-content a {
  color: var(--secondary);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--accent);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.875rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  opacity: 0.5;
}

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

.breadcrumbs a:hover {
  color: var(--secondary);
}

/* Responsive */
@media (max-width: 900px) {
  .feature {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature:nth-child(even) {
    direction: ltr;
  }

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

  .team-info {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 69px;
    left: 0;
    right: 0;
    background: var(--surface-alt);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    border-bottom: 1px solid var(--border);
  }

  .nav--open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 3rem 0 4rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__visual {
    order: -1;
    max-width: 300px;
    margin: 0 auto;
  }

  .section {
    padding: 3rem 0;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero__stats {
    gap: 1.5rem;
  }

  .stat__value {
    font-size: 1.5rem;
  }

  .card {
    padding: 1.5rem;
  }

  .form {
    padding: 1.5rem;
  }
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--surface-alt);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(10, 37, 64, 0.15);
  padding: 1.5rem;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-consent--visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-consent__text {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 280px;
  order: 2;
}

.cookie-consent__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  order: 1;
}

.cookie-consent__icon {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.cookie-consent__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.cookie-consent__description {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.cookie-consent__link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 500;
}

.cookie-consent__link:hover {
  color: var(--secondary);
}

.cookie-consent__btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  white-space: nowrap;
}

.cookie-consent__btn--accept {
  background: var(--gradient-accent);
  color: var(--primary);
}

.cookie-consent__btn--accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cookie-consent__btn--decline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.cookie-consent__btn--decline:hover {
  border-color: var(--text-muted);
  background: var(--surface);
}

@media (max-width: 768px) {
  .cookie-consent {
    padding: 1.25rem;
  }

  .cookie-consent__content {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }

  .cookie-consent__text {
    min-width: auto;
    order: 1;
  }

  .cookie-consent__actions {
    width: 100%;
    flex-direction: column;
    order: 2;
  }

  .cookie-consent__btn {
    width: 100%;
    justify-content: center;
  }
}