/* ==========================================================================
   DESIGN SYSTEM — LIMA FEIGELSON STUDIO (Figma faithful)
   ========================================================================== */
:root {
  --color-purple: #9C3AF4;
  --color-blue: #1915DE;
  --color-nav: #5038C9;
  --color-dark: #02020D;
  --color-light-bg: #EEF1FD;
  --color-white: #ffffff;
  --color-text-dark: #101828;
  --color-text-body: #364153;
  --color-text-muted: #4A5565;

  --gradient-brand: linear-gradient(180deg, #9C3AF4 0%, #1915DE 100%);
  --gradient-brand-lr: linear-gradient(to left, #9C3AF4 0%, #1915DE 100%);
  --gradient-hero: linear-gradient(200.5deg, #E5CCFF 20.7%, #D6DEFE 85.5%);
  --gradient-innovation: linear-gradient(192.8deg, #E5CCFF 20.7%, #D6DEFE 85.5%);

  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--color-text-dark);
  background: var(--color-white);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

li { list-style: none; }
img { max-width: 100%; display: block; }

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
}

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

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.text-gradient {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-white { color: var(--color-white); }

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  text-align: center;
}

.btn-hero-cta {
  background: var(--gradient-brand);
  color: var(--color-white);
  font-size: 1.125rem;
  padding: 18px 28px;
  width: 100%;
  max-width: 383px;
  box-shadow: 0 8px 24px rgba(156, 58, 244, 0.3);
}

.btn-hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(156, 58, 244, 0.45);
}

.btn-nav-cta {
  background: var(--color-white);
  color: #070E24;
  font-family: 'Inter', sans-serif;
  font-size: 0.816rem;
  font-weight: 600;
  padding: 11px 22px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-nav-cta:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
}

.btn-comparison-cta {
  background: var(--color-white);
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  padding: 16px 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.25);
}

.btn-comparison-cta:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
}

.btn-contact-submit {
  background: #05DF72;
  color: #000;
  font-family: 'Inter', sans-serif;
  font-size: 1.065rem;
  font-weight: 600;
  padding: 10px 48px;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.btn-contact-submit:hover {
  background: #04c864;
  transform: translateY(-1px);
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #5038C9;
  height: 80px;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 18px;
  width: auto;
}

.logo-badge {
  display: inline-block;
  background: var(--color-white);
  border-radius: 5.5px;
  padding: 3px 8px;
}

.badge-inner {
  display: block;
  background: var(--gradient-brand-lr);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: -0.04em;
  line-height: 1.4;
}

.arrow-icon {
  width: 19px;
  height: auto;
  display: inline-block;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #5038C9;
  z-index: 90;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mobile-nav a {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-white);
}

.mobile-nav a:hover {
  opacity: 0.8;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding-top: 80px;
  background: url('assets/images/hero/background-hero.png') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 150px;
  width: 100%;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #000;
  margin-bottom: 28px;
}

.hero-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  line-height: 1.3;
}

.hero-cta-group {
  display: flex;
}

.hero-visual-area {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-mockup-img {
  width: 100%;
  max-width: 640px;
}

/* ==========================================================================
   DARK BAND
   ========================================================================== */
.dark-band {
  background-color: var(--color-dark);
  background-image: url('assets/images/dark-band/background.png');
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  min-height: 213px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.dark-band-inner {
  text-align: center;
  padding: 40px 32px;
  max-width: 720px;
  margin: 0 auto;
}

.dark-band-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1.15;
  letter-spacing: 0.04em;
}

.dark-band-text strong {
  color: var(--color-white);
}

/* ==========================================================================
   LIGHT SECTION (EEF1FD)
   ========================================================================== */
.light-section {
  background: var(--color-light-bg);
  padding: 80px 0;
}

/* Clareza */
.clareza-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}

.clareza-text .section-title {
  color: #000;
}

.clareza-text .section-subtitle {
  font-size: 1.125rem;
  color: #000;
  line-height: 1.5;
}

.clareza-visual {
  display: flex;
  justify-content: flex-end;
}

.clareza-card {
  background: var(--gradient-brand);
  border-radius: 30px;
  overflow: hidden;
  width: 449px;
  height: 283px;
  flex-shrink: 0;
}

.clareza-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Service Cards */
.service-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.service-card {
  background: linear-gradient(180deg, #FAFAFA 0%, #EEF1FD 100%);
  border-radius: 13.245px;
  padding: 44px 30px;
  box-shadow: 0 9.461px 7.096px rgba(0, 0, 0, 0.1), 0 3.784px 2.838px rgba(0, 0, 0, 0.1);
}

.service-card-icon {
  background: var(--gradient-brand);
  border-radius: 18.3px;
  width: 73px;
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}

.service-card-icon img {
  width: 36.5px;
  height: 36.5px;
  object-fit: contain;
}

.service-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #101828;
  margin-bottom: 16px;
}

.service-card-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--color-text-body);
  line-height: 1.42;
  margin-bottom: 28px;
}

.service-card-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.946rem;
  color: var(--color-text-body);
  line-height: 1.35;
}

.list-icon {
  width: 18.9px;
  height: 18.9px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ==========================================================================
   LOGOS
   ========================================================================== */
.logos-block {
  padding-bottom: 48px;
}

.logos-block .section-title {
  color: #000;
  font-size: 2.25rem;
  margin-bottom: 48px;
}

.logo-marquee {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.logo-marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
  align-items: center;
}

.logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logo-item img {
  max-height: 60px;
  max-width: 165px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: var(--transition-fast);
}

.logo-item img:hover {
  opacity: 1;
}

/* ==========================================================================
   GAINS
   ========================================================================== */
.gains-block {
  padding-top: 60px;
}

.gains-header {
  margin-bottom: 40px;
}

.gains-header .section-title {
  color: #000;
}

.gains-subtitle {
  font-size: 1.5rem;
  color: var(--color-text-muted);
}

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

.gain-card {
  background: var(--gradient-brand);
  border-radius: 13.245px;
  padding: 44px 30px;
  box-shadow: 0 9.461px 7.096px rgba(0, 0, 0, 0.1), 0 3.784px 2.838px rgba(0, 0, 0, 0.1);
}

.gain-card-icon {
  background: var(--color-white);
  border-radius: 18.3px;
  width: 73px;
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
}

.gain-card-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.gain-card-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.gain-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--color-white);
  line-height: 1.42;
}

/* ==========================================================================
   COMPARISON SECTION
   ========================================================================== */
.comparison-section {
  background: var(--gradient-brand);
  padding: 80px 0;
}

.comparison-header {
  margin-bottom: 24px;
}

.comparison-header .section-title {
  color: var(--color-white);
}

.comparison-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
}

.comparison-panel {
  background: #02020D;
  border-radius: 40px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.comp-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.comp-badge-circle {
  width: 36.05px;
  height: 36.05px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comp-badge-red {
  background: rgba(251, 44, 54, 0.2);
}

.comp-badge-green {
  background: rgba(0, 201, 80, 0.2);
}

.comp-badge-circle img {
  width: 21.6px;
  height: 21.6px;
  object-fit: contain;
}

.comp-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-white);
}

.comp-items {
  display: flex;
  flex-direction: column;
  gap: 21.6px;
}

.comp-item {
  border-radius: 9px;
  padding: 21px 22px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.comp-item-problem {
  border: 0.9px solid rgba(251, 44, 54, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.comp-item-dark {
  background: #0F0F19;
}

.comp-item-solution {
  border: 0.9px solid rgba(5, 223, 114, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.comp-item-icon {
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: flex-start;
}

.comp-item-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
  line-height: 1.35;
}

.comp-item-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--color-white);
  line-height: 1.8;
}

/* ==========================================================================
   INNOVATION SECTION
   ========================================================================== */
.innovation-section {
  background: var(--gradient-innovation);
  min-height: 461px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.innovation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 461px;
}

.innovation-text-col {
  display: flex;
  align-items: center;
  padding-left: max(40px, calc((100vw - 1440px) / 2 + 120px));
  padding-right: 60px;
}

.innovation-text {
  padding: 60px 0;
  width: 100%;
}

.innovation-text .section-title {
  font-size: 2.25rem;
  color: #000;
  margin-bottom: 24px;
}

.innovation-text .section-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #000;
  line-height: 1.5;
}

.innovation-img-col {
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.innovation-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 461px;
}

/* ==========================================================================
   STATS + TESTIMONIALS
   ========================================================================== */
.stats-section {
  background: var(--gradient-brand);
  padding: 60px 0 80px;
  overflow: hidden;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding-bottom: 48px;
}

.stat-item {
  text-align: center;
  padding: 0 48px;
}

.stat-number {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(6rem, 11vw, 10.5rem);
  color: var(--color-white);
  line-height: 1;
  letter-spacing: -0.01em;
}

.stat-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
  max-width: 180px;
  margin: 0 auto;
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 66px;
  background: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
}


/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  background-color: #E5CCFF;
  background-image: url('assets/images/contact/background.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 0;
  overflow: hidden;
}

.contact-form-card {
  max-width: 972px;
  margin: 0 auto;
  background: linear-gradient(180deg, #ffffff 0%, #EEF1FD 100%);
  border-radius: 42.6px;
  overflow: hidden;
}

.contact-form-inner {
  padding: 64px 80px 60px;
  position: relative;
}

.contact-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.81rem;
  font-weight: 600;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.contact-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  color: #000;
  margin-bottom: 36px;
  line-height: 1.5;
}

.form-row-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: 'Inter', sans-serif;
  font-size: 1.065rem;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.5;
}

.form-group input,
.form-group textarea {
  padding: 10px 20px;
  border-radius: 42.6px;
  border: none;
  background: #D8D8D8;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #000;
  transition: var(--transition-fast);
  height: 38.8px;
}

.form-group textarea {
  border-radius: 20px;
  resize: none;
  height: 67px;
  padding: 14px 20px;
}

.form-group input:focus,
.form-group textarea:focus {
  background: #c8c8c8;
  outline: none;
}

.form-group-full {
  margin-top: 0;
}

.form-submit-row {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* Form error states */
.form-group.invalid input,
.form-group.invalid textarea {
  background: #f5c0c0;
}

/* Success Overlay */
.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(238, 241, 253, 0.97);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  z-index: 10;
  border-radius: 42.6px;
}

.form-success-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #05DF72;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.form-success-overlay h3 {
  font-size: 1.75rem;
  margin-bottom: 12px;
  color: var(--color-text-dark);
}

.form-success-overlay p {
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background: #02020D;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  margin-bottom: 60px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.footer-slogan {
  font-family: 'Inter', sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.footer-email-link {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  color: var(--color-purple);
  font-weight: 600;
  transition: var(--transition-smooth);
}

.footer-email-link:hover {
  color: var(--color-white);
  transform: translateX(4px);
}

.btn-footer-contact {
  background: var(--gradient-brand);
  color: var(--color-white);
  font-size: 0.94rem;
  padding: 12px 28px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(156, 58, 244, 0.2);
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}

.btn-footer-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(156, 58, 244, 0.35);
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.footer-logo-img {
  height: 22px;
  width: auto;
  align-self: flex-start;
}

.footer-addresses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.footer-office {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-office-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-office-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.footer-privacy-link {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  margin-left: 12px;
  transition: var(--transition-fast);
}

.footer-privacy-link:hover {
  color: var(--color-white);
}

.social-icons-footer {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-icon-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
}

.social-icon-footer:hover {
  background: var(--gradient-brand);
  border-color: transparent;
  transform: translateY(-2px);
}

.social-icon-footer img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ==========================================================================
   MATERIAL SYMBOLS
   ========================================================================== */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  font-size: 24px;
  user-select: none;
  line-height: 1;
}

.nav-arrow-icon {
  font-size: 17px;
  color: #5038C9;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}

.service-card-icon .material-symbols-outlined {
  font-size: 38px;
  color: var(--color-white);
  font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 40;
}

.gain-card-icon .material-symbols-outlined {
  font-size: 34px;
  color: var(--color-purple);
  font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 40;
}

.service-list-check {
  font-size: 18px;
  color: var(--color-purple);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
  flex-shrink: 0;
  margin-top: 1px;
}

.comp-header-icon {
  font-size: 20px;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}
.comp-badge-red .comp-header-icon { color: rgba(251, 44, 54, 0.9); }
.comp-badge-green .comp-header-icon { color: rgba(5, 223, 114, 0.9); }

.comp-row-icon {
  font-size: 20px;
  font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24;
}
.comp-item-problem .comp-row-icon { color: rgba(251, 44, 54, 0.65); }
.comp-item-solution .comp-row-icon { color: rgba(5, 223, 114, 0.75); }

/* ==========================================================================
   WIREFRAME PLACEHOLDERS (remover ao subir imagens reais)
   ========================================================================== */

/* Nav logo placeholder */
.ph-navlogo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.85);
  border: 1px dashed rgba(255, 255, 255, 0.35);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Large image placeholder */
.ph-img {
  background: #D8D8D8;
  border: 2px dashed #AAAAAA;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  color: #777;
  padding: 24px;
  width: 100%;
}

.ph-img svg {
  opacity: 0.45;
}

.ph-img-hero {
  min-height: 380px;
  border-radius: 12px;
}

.ph-img-clareza {
  width: 100%;
  height: 100%;
  min-height: 283px;
  background: rgba(0, 0, 0, 0.15);
  border: 2px dashed rgba(255, 255, 255, 0.3);
  border-radius: 0;
}

.ph-img-innovation {
  min-height: 461px;
  border-radius: 0;
  background: #C8C8C8;
}

.ph-label-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
}

.ph-path {
  font-family: monospace;
  font-size: 0.65rem;
  opacity: 0.65;
  background: rgba(0, 0, 0, 0.06);
  padding: 2px 6px;
  border-radius: 3px;
}

/* Logo placeholders */
.ph-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #666;
  border: 1.5px dashed #CCCCCC;
  border-radius: 6px;
  padding: 10px 20px;
  min-height: 52px;
  min-width: 100px;
  opacity: 0.75;
}

/* Footer logo placeholder */
.ph-footer-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 4px;
}

/* Social icon placeholders */
.ph-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.35);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-transform: lowercase;
}

/* ==========================================================================
   VEJA NA PRÁTICA (CASES CARROSSEL)
   ========================================================================== */
.cases-section {
  background: var(--color-white);
  padding: 100px 0;
  overflow: hidden;
}

.cases-section .section-title {
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.cases-section .section-subtitle {
  max-width: 680px;
  margin: 0 auto 56px;
  font-size: 1.125rem;
  color: var(--color-text-body);
}

.cases-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cases-carousel {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  padding: 10px 0;
}

.cases-carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.case-card {
  flex: 0 0 calc((100% - 60px) / 3); /* 3 cards side-by-side with 30px gaps */
  background: var(--color-white);
  border-radius: 20px;
  border: 1px solid rgba(80, 56, 201, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 520px;
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
}

.case-card:hover {
  transform: translateY(-8px);
  border-color: rgba(80, 56, 201, 0.3);
  box-shadow: 0 20px 40px rgba(80, 56, 201, 0.08);
}

.case-card-image {
  width: 100%;
  height: 230px;
  overflow: hidden;
  position: relative;
  background: var(--color-light-bg);
}

.case-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-card:hover .case-card-image img {
  transform: scale(1.05);
}

.case-card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.case-card-tagline {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-nav);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: inline-block;
}

.case-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
  line-height: 1.25;
}

.case-card-desc {
  font-size: 0.94rem;
  color: var(--color-text-body);
  line-height: 1.5;
  margin-bottom: auto; /* Push link to the bottom */
}

.case-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--color-blue);
  margin-top: 24px;
  transition: var(--transition-fast);
  text-decoration: none;
}

.case-card-link .link-arrow {
  font-size: 1.15rem;
  transition: transform 0.3s ease;
}

.case-card:hover .case-card-link {
  color: var(--color-purple);
}

.case-card:hover .case-card-link .link-arrow {
  transform: translateX(4px);
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid rgba(80, 56, 201, 0.15);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
  color: var(--color-nav);
}

.carousel-btn:hover:not(:disabled) {
  background: var(--color-nav);
  color: var(--color-white);
  border-color: var(--color-nav);
  box-shadow: 0 10px 24px rgba(80, 56, 201, 0.25);
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn:disabled {
  opacity: 0;
  pointer-events: none;
}

.carousel-btn.prev-btn {
  left: -26px;
}

.carousel-btn.next-btn {
  right: -26px;
}

/* Dots Navigation */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(80, 56, 201, 0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.carousel-dots .dot:hover {
  background: rgba(80, 56, 201, 0.5);
}

.carousel-dots .dot.active {
  width: 28px;
  border-radius: 5px;
  background: var(--gradient-brand-lr);
}

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-in {
  opacity: 1;
  transform: translate(0);
}

/* Float loop on right elements after reveal */
.slide-in-right.animate-in .ph-img-hero,
.slide-in-right.animate-in .hero-mockup-img,
.slide-in-right.animate-in .clareza-card,
.slide-in-right.animate-in .innovation-img {
  animation: float-y 5s ease-in-out infinite;
  animation-delay: 0.8s;
}

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

/* Nav scrolled state */
.main-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
  transition: box-shadow 0.3s ease;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1280px) {
  .container { padding: 0 60px; }
}

@media (max-width: 1024px) {
  .container { padding: 0 40px; }
  .hero-title { font-size: 2.5rem; }
  .clareza-card { width: 100%; }
  .comparison-panel { gap: 28px; padding: 36px; }
  .gains-grid { gap: 16px; }
  .innovation-text-col { padding-left: max(40px, calc((100vw - 1440px) / 2 + 60px)); padding-right: 40px; }

  /* Cases section */
  .cases-section { padding: 80px 0; }
  .case-card { flex: 0 0 calc((100% - 30px) / 2); height: 490px; }
  .cases-carousel-track { gap: 30px; }
  .carousel-btn.prev-btn { left: -15px; }
  .carousel-btn.next-btn { right: -15px; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-cta { display: none; }
  .mobile-toggle { display: flex; z-index: 101; }
  .mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .mobile-toggle.active span:nth-child(2) { opacity: 0; }
  .mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
  .logo-img { height: 24px; }

  /* Hero */
  .hero-section { min-height: auto; padding-top: 110px; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 30px; padding-bottom: 48px; gap: 32px; }
  .hero-visual-area { display: flex; justify-content: center; }
  .hero-mockup-img { max-width: 88%; }
  .hero-title { font-size: 2rem; letter-spacing: -0.01em; }
  .hero-description { font-size: 1.1rem; margin-bottom: 32px; }
  .btn-hero-cta { max-width: 100%; font-size: 1rem; padding: 16px 24px; }

  /* Dark band */
  .dark-band { min-height: auto; }
  .dark-band-inner { padding: 36px 24px; }

  /* Light section */
  .light-section { padding: 60px 0; }
  .clareza-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .clareza-card { height: 220px; width: 100%; }
  .service-cards-grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 24px; }

  /* Logos marquee */
  .logo-marquee { -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%); }
  .logo-marquee-track { gap: 32px; }

  /* Gains */
  .gains-grid { grid-template-columns: 1fr; gap: 16px; }
  .gain-card { padding: 36px 24px; }
  .gains-subtitle { font-size: 1.1rem; }

  /* Comparison */
  .comparison-section { padding: 60px 0; }
  .comparison-subtitle { font-size: 1.1rem; }
  .comparison-panel {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    border-radius: 20px;
    gap: 32px;
  }
  .comp-item { padding: 16px; }
  .comp-col-title { font-size: 1.2rem; }

  /* Innovation */
  .innovation-grid { grid-template-columns: 1fr; }
  .innovation-img-col { display: none; }
  .innovation-text-col { padding: 0 24px; }
  .innovation-text { padding: 52px 0; }

  /* Stats */
  .stats-section { padding: 52px 0 64px; }
  .stats-grid { flex-direction: column; align-items: center; gap: 24px; padding-bottom: 0; }
  .stat-item { padding: 0 20px; text-align: center; }
  .stat-divider { width: 60px; height: 1px; }
  .stat-number { font-size: 5rem; letter-spacing: -0.02em; }

  /* Contact */
  .contact-section { padding: 60px 0; }
  .contact-form-card { border-radius: 24px; margin: 0 4px; }
  .contact-form-inner { padding: 40px 28px; }
  .form-row-two { grid-template-columns: 1fr; gap: 0; }
  .form-group { margin-bottom: 16px; }
  .form-group input { height: 44px; }
  .form-group textarea { height: 88px; }
  .form-group label { font-size: 0.9rem; }
  .btn-contact-submit { width: 100%; padding: 14px 24px; }
  .contact-title { font-size: 2rem; }
  .contact-subtitle { font-size: 1rem; }

  /* Footer */
  .main-footer { padding: 60px 0 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-addresses-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 24px; text-align: center; }
  .footer-copyright { display: flex; flex-direction: column; gap: 8px; align-items: center; }
  .footer-privacy-link { margin-left: 0; }
  .footer-slogan { font-size: 1.75rem; }

  /* Typography */
  .section-title { font-size: 1.85rem; letter-spacing: -0.02em; }
  .section-subtitle { font-size: 1rem; }

  /* Cases section */
  .cases-section { padding: 60px 0; }
  .cases-section .section-subtitle { margin-bottom: 40px; font-size: 1rem; }
  .cases-carousel-track { gap: 20px; }
  .case-card { flex: 0 0 100%; height: auto; min-height: 460px; }
  .case-card-image { height: 200px; }
  .case-card-content { padding: 24px; }
  .carousel-btn { width: 44px; height: 44px; }
  .carousel-btn.prev-btn { left: -10px; }
  .carousel-btn.next-btn { right: -10px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-title { font-size: 1.75rem; }
  .hero-description { font-size: 1rem; }
  .hero-mockup-img { max-width: 100%; }
  .dark-band-text { font-size: 1.55rem; }
  .section-title { font-size: 1.55rem; }
  .contact-form-inner { padding: 32px 20px; }
  .contact-form-card { margin: 0; border-radius: 20px; }
  .contact-title { font-size: 1.75rem; }
  .stat-number { font-size: 3.75rem; }
  .service-card { padding: 28px 20px; }
  .gain-card { padding: 28px 20px; }
  .gain-card-title { font-size: 1.25rem; }
  .service-card-title { font-size: 1.25rem; }
  .comparison-panel { padding: 20px 16px; border-radius: 16px; }
  .comp-item { padding: 14px 12px; gap: 12px; }
  .logo-marquee-track { gap: 24px; }
  .logos-block .section-title { font-size: 1.45rem; }
  .gains-header .section-title { font-size: 1.45rem; }

  /* Cases section */
  .cases-section { padding: 52px 0; }
  .carousel-btn { display: none; }
  .cases-carousel-wrapper { padding: 0; }
}
