/* ===== OFINanse — Mobile Styles (<768px) ===== */
/* Mobile-first: эти стили применяются по умолчанию */

/* ===== BASE ===== */
.section {
  padding: var(--space-16, 4rem) 0;
}

.section-title {
  font-size: clamp(var(--text-xl, 1.25rem), 6vw, var(--text-2xl, 1.5rem));
  text-align: center;
}

.section-subtitle {
  font-size: var(--text-base, 1rem);
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2, 0.5rem);
  padding: 0.875rem 1.5rem;
  min-height: 48px;
  min-width: 48px;
  font-weight: var(--font-semibold, 600);
  font-size: var(--text-base, 1rem);
  border-radius: var(--radius-md, 0.5rem);
  transition: all 0.3s ease;
  touch-action: manipulation;
  user-select: none;
  cursor: pointer;
}

.btn:active {
  transform: scale(0.98);
  opacity: 0.95;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary, #0f172a), var(--color-primary-light, #1e293b));
  color: white;
  box-shadow: var(--shadow-md, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
}

.btn-outline {
  background: transparent;
  color: var(--color-primary, #0f172a);
  border: 2px solid var(--color-primary, #0f172a);
}

.btn-large {
  padding: var(--space-4, 1rem) var(--space-6, 1.5rem);
  font-size: var(--text-lg, 1.125rem);
  width: 100%;
  max-width: 100%;
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-accent, #059669), var(--color-accent-light, #10b981));
  color: white;
}

/* ===== HEADER ===== */
.header {
  padding: var(--space-3, 0.75rem) 0;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--color-border, #e2e8f0);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky, 100);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2, 0.5rem);
  font-weight: var(--font-bold, 700);
  font-size: var(--text-lg, 1.125rem);
  color: var(--color-primary, #0f172a);
  min-height: 44px;
}

.logo-icon {
  width: 28px;
  height: 28px;
}

/* ===== HERO SECTION ===== */
.hero {
  padding-top: calc(var(--space-16, 4rem) + 70px);
  padding-bottom: var(--space-16, 4rem);
  background: linear-gradient(135deg, var(--color-bg-alt, #f8fafc) 0%, white 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(5, 150, 105, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-8, 2rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2, 0.5rem);
  padding: var(--space-2, 0.5rem) var(--space-3, 0.75rem);
  background: rgba(5, 150, 105, 0.1);
  color: var(--color-accent, #059669);
  border-radius: var(--radius-full, 9999px);
  font-size: var(--text-xs, 0.75rem);
  font-weight: var(--font-semibold, 600);
  margin-bottom: var(--space-4, 1rem);
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.hero-title {
  font-size: clamp(var(--text-xl, 1.25rem), 7vw, var(--text-2xl, 1.5rem));
  font-weight: var(--font-extrabold, 800);
  line-height: 1.2;
  margin-bottom: var(--space-4, 1rem);
  color: var(--color-primary, #0f172a);
}

.hero-title .highlight {
  color: var(--color-accent, #059669);
  position: relative;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(5, 150, 105, 0.15);
  border-radius: var(--radius-sm, 0.375rem);
  z-index: -1;
}

.hero-subtitle {
  font-size: var(--text-base, 1rem);
  color: var(--color-text-light, #64748b);
  max-width: 100%;
  margin: 0 auto var(--space-6, 1.5rem);
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3, 0.75rem);
  margin-bottom: var(--space-8, 2rem);
  width: 100%;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-2, 0.5rem);
  padding-top: var(--space-4, 1rem);
  border-top: 1px solid var(--color-border, #e2e8f0);
  width: 100%;
  max-width: 360px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1, 0.25rem);
  font-size: var(--text-xs, 0.75rem);
  color: var(--color-text-light, #64748b);
  text-align: center;
}

.trust-item i {
  color: var(--color-accent, #059669);
  width: 18px;
  height: 18px;
}

.hero-image {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl, 1rem);
  overflow: hidden;
  box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
  background: var(--color-bg-alt, #f8fafc);
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.hero-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-3, 0.75rem) var(--space-4, 1rem);
  background: linear-gradient(to top, rgba(15, 23, 42, 0.85), transparent);
  color: white;
}

.hero-img-name {
  font-weight: var(--font-bold, 700);
  font-size: var(--text-base, 1rem);
}

.hero-img-role {
  font-size: var(--text-xs, 0.75rem);
  opacity: 0.95;
}

.hero-shape {
  display: none;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-8, 2rem);
}

.about-image {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.about-img-wrapper {
  border-radius: var(--radius-lg, 0.75rem);
  overflow: hidden;
  box-shadow: var(--shadow-md, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
  background: var(--color-bg-alt, #f8fafc);
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: var(--space-3, 0.75rem);
  left: var(--space-3, 0.75rem);
  right: var(--space-3, 0.75rem);
  background: white;
  padding: var(--space-2, 0.5rem) var(--space-3, 0.75rem);
  border-radius: var(--radius-md, 0.5rem);
  box-shadow: var(--shadow-md, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2, 0.5rem);
  font-weight: var(--font-semibold, 600);
  font-size: var(--text-xs, 0.75rem);
  text-align: center;
}

.about-content h3 {
  font-size: var(--text-xl, 1.25rem);
  font-weight: var(--font-extrabold, 800);
  margin-bottom: var(--space-4, 1rem);
  color: var(--color-primary, #0f172a);
  text-align: center;
}

.about-bio {
  color: var(--color-text-light, #64748b);
  margin-bottom: var(--space-6, 1.5rem);
  line-height: 1.7;
  text-align: center;
  font-size: var(--text-base, 1rem);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3, 0.75rem);
}

.stat-card {
  background: var(--color-bg-alt, #f8fafc);
  padding: var(--space-4, 1rem);
  border-radius: var(--radius-md, 0.5rem);
  border-left: 3px solid var(--color-accent, #059669);
  text-align: center;
}

.stat-value {
  font-size: var(--text-2xl, 1.5rem);
  font-weight: var(--font-extrabold, 800);
  color: var(--color-accent, #059669);
  line-height: 1;
}

.stat-label {
  font-size: var(--text-xs, 0.75rem);
  color: var(--color-text-light, #64748b);
  margin-top: var(--space-2, 0.5rem);
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4, 1rem);
}

.service-card {
  background: white;
  border-radius: var(--radius-lg, 0.75rem);
  padding: var(--space-5, 1.25rem);
  box-shadow: var(--shadow-md, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
  border: 1px solid var(--color-border, #e2e8f0);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(217, 119, 6, 0.1));
  border-radius: var(--radius-md, 0.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3, 0.75rem);
  color: var(--color-accent, #059669);
}

.service-icon i {
  width: 24px;
  height: 24px;
}

.service-title {
  font-size: var(--text-lg, 1.125rem);
  font-weight: var(--font-bold, 700);
  margin-bottom: var(--space-2, 0.5rem);
  color: var(--color-primary, #0f172a);
}

.service-problem {
  font-size: var(--text-sm, 0.875rem);
  color: var(--color-text-light, #64748b);
  margin-bottom: var(--space-2, 0.5rem);
  padding-left: var(--space-3, 0.75rem);
  border-left: 2px solid var(--color-gold, #d97706);
  line-height: 1.5;
}

.service-solution {
  font-size: var(--text-sm, 0.875rem);
  color: var(--color-text, #1e293b);
  font-weight: var(--font-medium, 500);
  line-height: 1.5;
}

.service-solution strong {
  color: var(--color-accent, #059669);
}

/* ===== PROCESS ===== */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-4, 1rem);
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--color-border, #e2e8f0);
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3, 0.75rem);
  align-items: start;
  position: relative;
}

.step-number {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-primary, #0f172a), var(--color-primary-light, #1e293b));
  color: white;
  border-radius: var(--radius-full, 9999px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-extrabold, 800);
  font-size: var(--text-lg, 1.125rem);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
}

.step-content {
  background: var(--color-bg-alt, #f8fafc);
  padding: var(--space-3, 0.75rem);
  border-radius: var(--radius-md, 0.5rem);
  border: 1px solid var(--color-border, #e2e8f0);
}

.step-title {
  font-weight: var(--font-bold, 700);
  font-size: var(--text-base, 1rem);
  margin-bottom: var(--space-1, 0.25rem);
  color: var(--color-primary, #0f172a);
}

.step-desc {
  font-size: var(--text-sm, 0.875rem);
  color: var(--color-text-light, #64748b);
  line-height: 1.5;
}

/* ===== CASES ===== */
.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4, 1rem);
}

.case-card {
  background: white;
  border-radius: var(--radius-lg, 0.75rem);
  overflow: hidden;
  box-shadow: var(--shadow-md, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
  border: 1px solid var(--color-border, #e2e8f0);
}

.case-header {
  padding: var(--space-4, 1rem);
  background: linear-gradient(135deg, var(--color-primary, #0f172a), var(--color-primary-light, #1e293b));
  color: white;
}

.case-industry {
  font-size: var(--text-xs, 0.75rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
  margin-bottom: var(--space-1, 0.25rem);
}

.case-title {
  font-size: var(--text-base, 1rem);
  font-weight: var(--font-bold, 700);
  line-height: 1.3;
}

.case-body {
  padding: var(--space-4, 1rem);
}

.case-section {
  margin-bottom: var(--space-4, 1rem);
}

.case-label {
  font-size: var(--text-xs, 0.75rem);
  font-weight: var(--font-semibold, 600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-light, #64748b);
  margin-bottom: var(--space-2, 0.5rem);
}

.case-result {
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: var(--radius-md, 0.5rem);
  padding: var(--space-3, 0.75rem);
  text-align: center;
}

.case-metric {
  font-size: var(--text-2xl, 1.5rem);
  font-weight: var(--font-extrabold, 800);
  color: var(--color-accent, #059669);
  line-height: 1;
}

.case-metric-label {
  font-size: var(--text-xs, 0.75rem);
  color: var(--color-text-light, #64748b);
  margin-top: var(--space-2, 0.5rem);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4, 1rem);
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg, 0.75rem);
  padding: var(--space-5, 1.25rem);
  box-shadow: var(--shadow-md, 0 4px 6px -1px rgba(0, 0, 0, 0.1));
  border-left: 4px solid var(--color-accent, #059669);
}

.testimonial-quote {
  font-style: italic;
  color: var(--color-text, #1e293b);
  margin-bottom: var(--space-4, 1rem);
  position: relative;
  line-height: 1.6;
  font-size: var(--text-sm, 0.875rem);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3, 0.75rem);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full, 9999px);
  background: linear-gradient(135deg, var(--color-primary, #0f172a), var(--color-accent, #059669));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: var(--font-bold, 700);
  font-size: var(--text-base, 1rem);
  flex-shrink: 0;
}

.author-info h4 {
  font-weight: var(--font-bold, 700);
  color: var(--color-primary, #0f172a);
  margin-bottom: 2px;
  font-size: var(--text-sm, 0.875rem);
}

.author-info p {
  font-size: var(--text-xs, 0.75rem);
  color: var(--color-text-light, #64748b);
}

/* ===== CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--color-bg-dark, #0f172a) 0%, #1e293b 100%);
  color: var(--color-text-inverse, #f1f5f9);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(5, 150, 105, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(217, 119, 6, 0.15) 0%, transparent 50%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 100%;
}

.cta-title {
  font-size: clamp(var(--text-xl, 1.25rem), 6vw, var(--text-2xl, 1.5rem));
  font-weight: var(--font-extrabold, 800);
  margin-bottom: var(--space-4, 1rem);
  color: white;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: var(--text-base, 1rem);
  opacity: 0.95;
  margin-bottom: var(--space-6, 1.5rem);
  line-height: 1.6;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-3, 0.75rem);
  max-width: 100%;
}

.form-input {
  padding: var(--space-4, 1rem) var(--space-5, 1.25rem);
  border-radius: var(--radius-md, 0.5rem);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: var(--text-base, 1rem);
  transition: all 0.3s ease;
  min-height: 48px;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-accent-light, #10b981);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
  outline: none;
}

.form-input-white {
  background: white;
  color: var(--color-text, #1e293b);
  border-color: var(--color-border, #e2e8f0);
}

.form-input-white::placeholder {
  color: var(--color-text-light, #64748b);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-bg-dark, #0f172a);
  color: var(--color-text-inverse, #f1f5f9);
  padding: var(--space-12, 3rem) 0 var(--space-6, 1.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-6, 1.5rem);
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2, 0.5rem);
  font-weight: var(--font-bold, 700);
  font-size: var(--text-lg, 1.125rem);
  color: white;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.75);
  max-width: 100%;
  font-size: var(--text-sm, 0.875rem);
  line-height: 1.5;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: var(--space-2, 0.5rem);
}

.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2, 0.5rem);
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm, 0.875rem);
}

.footer-contact i {
  color: var(--color-accent-light, #10b981);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: var(--space-4, 1rem);
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full, 9999px);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
}

.social-link:active {
  background: var(--color-accent, #059669);
  transform: scale(0.95);
}

.footer-bottom {
  padding-top: var(--space-6, 1.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-xs, 0.75rem);
  line-height: 1.5;
}

/* ===== SIDEBAR ===== */
.sidebar {
  position: fixed;
  right: var(--space-3, 0.75rem);
  bottom: var(--space-3, 0.75rem);
  z-index: var(--z-sticky, 100);
  display: flex;
  flex-direction: column;
  gap: var(--space-2, 0.5rem);
}

.sidebar-widget {
  background: white;
  border-radius: var(--radius-lg, 0.75rem);
  padding: var(--space-3, 0.75rem);
  box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
  border: 1px solid var(--color-border, #e2e8f0);
  max-width: 240px;
  font-size: var(--text-xs, 0.75rem);
}

.widget-title {
  font-weight: var(--font-semibold, 600);
  color: var(--color-primary, #0f172a);
  margin-bottom: var(--space-2, 0.5rem);
}

.lead-magnet-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2, 0.5rem);
  width: 100%;
  padding: var(--space-3, 0.75rem);
  background: white;
  color: var(--color-primary, #0f172a);
  border-radius: var(--radius-md, 0.5rem);
  font-weight: var(--font-semibold, 600);
  font-size: var(--text-sm, 0.875rem);
  transition: all 0.3s ease;
  border: 1px solid var(--color-border, #e2e8f0);
}

.lead-magnet-btn:hover {
  background: var(--color-accent, #059669);
  color: white;
}

.lead-magnet-btn i {
  width: 18px;
  height: 18px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  right: var(--space-4, 1rem);
  bottom: calc(var(--space-4, 1rem) + 200px);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full, 9999px);
  background: var(--color-primary, #0f172a);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: var(--z-sticky, 100);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--color-accent, #059669);
  transform: translateY(-4px);
}

.back-to-top i {
  width: 20px;
  height: 20px;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent, #059669), var(--color-gold, #d97706));
  z-index: var(--z-sticky, 100);
  transition: width 0.15s ease;
  width: 0%;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-4, 1rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1, 0.25rem);
  color: var(--color-text-light, #64748b);
  animation: bounce 2s infinite;
  font-size: var(--text-xs, 0.75rem);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll-indicator i {
  width: 18px;
  height: 18px;
}

/* ===== FADE IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.stagger-1 { transition-delay: 0.1s; }
.fade-in.stagger-2 { transition-delay: 0.2s; }
.fade-in.stagger-3 { transition-delay: 0.3s; }

/* ===== TOAST NOTIFICATIONS ===== */
.toast-container {
  position: fixed;
  top: var(--space-4, 1rem);
  right: var(--space-4, 1rem);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: var(--space-2, 0.5rem);
  max-width: 360px;
}

.toast {
  background: white;
  border-radius: var(--radius-lg, 0.75rem);
  padding: var(--space-4, 1rem);
  box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
  border-left: 4px solid var(--color-accent, #059669);
  display: flex;
  gap: var(--space-3, 0.75rem);
  align-items: flex-start;
  animation: slideInRight 0.3s ease;
}

.toast.success { border-left-color: var(--color-accent, #059669); }
.toast.error { border-left-color: #ef4444; }
.toast.info { border-left-color: var(--color-primary, #0f172a); }

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-weight: var(--font-semibold, 600);
  color: var(--color-text, #1e293b);
  margin-bottom: var(--space-1, 0.25rem);
  font-size: var(--text-sm, 0.875rem);
}

.toast-message {
  font-size: var(--text-sm, 0.875rem);
  color: var(--color-text-light, #64748b);
  line-height: 1.5;
}

.toast-close {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full, 9999px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light, #64748b);
  transition: all 0.2s ease;
  cursor: pointer;
  background: transparent;
  border: none;
}

.toast-close:hover {
  background: var(--color-bg-alt, #f8fafc);
  color: var(--color-text, #1e293b);
}