/* ============================================
   CREDINVARO - Neo Brutalist Design System
   ============================================ */


@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;500;600;700;800&display=swap');


:root {
  
  --color-primary: #1a1a2e;
  --color-secondary: #f5f0e8;
  --color-accent: #ff6b35;
  --color-accent-alt: #4cc9f0;
  --color-highlight: #ffd60a;
  --color-white: #fafaf8;
  --color-dark: #0d0d1a;
  --color-text: #1a1a2e;
  --color-text-muted: #5a5a7a;
  --color-border: #1a1a2e;
  --color-surface: #fafaf8;
  --color-surface-tinted: #f0eee6;
  --color-surface-dark: #1a1a2e;

  
  --shadow-sm: 3px 3px 0px var(--color-border);
  --shadow-md: 5px 5px 0px var(--color-border);
  --shadow-lg: 8px 8px 0px var(--color-border);
  --shadow-xl: 12px 12px 0px var(--color-border);
  --shadow-accent: 5px 5px 0px var(--color-accent);
  --shadow-highlight: 5px 5px 0px var(--color-highlight);
  --shadow-alt: 5px 5px 0px var(--color-accent-alt);

  
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2rem, 4vw, 4rem);
  --space-2xl: clamp(3rem, 6vw, 6rem);
  --space-3xl: clamp(4rem, 8vw, 8rem);

  
  --font-main: 'Nunito Sans', sans-serif;
  --text-xs: clamp(0.75rem, 1vw, 0.875rem);
  --text-sm: clamp(0.875rem, 1.2vw, 1rem);
  --text-base: clamp(1rem, 1.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.8vw, 1.25rem);
  --text-xl: clamp(1.25rem, 2vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 2.5vw, 2rem);
  --text-3xl: clamp(2rem, 3.5vw, 2.75rem);
  --text-4xl: clamp(2.5rem, 5vw, 4rem);
  --text-5xl: clamp(3rem, 7vw, 5.5rem);

  
  --border-width: 2px;
  --border-heavy: 3px;
  --border-thick: 4px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 100px;

  
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}


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

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

body {
  font-family: var(--font-main);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-main);
  border: none;
  background: none;
}


.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.container--narrow {
  max-width: 900px;
}

.container--wide {
  max-width: 1440px;
}


h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-text);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }

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

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

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

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


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-main);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px var(--color-border);
  background: #e55a28;
}

.btn--secondary {
  background: var(--color-highlight);
  color: var(--color-dark);
  box-shadow: var(--shadow-md);
}

.btn--secondary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px var(--color-border);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-md);
}

.btn--white {
  background: var(--color-white);
  color: var(--color-dark);
  box-shadow: var(--shadow-md);
}

.btn--white:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0px rgba(255,255,255,0.4);
}

.btn--large {
  padding: 1.1rem 2.25rem;
  font-size: var(--text-base);
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition-slow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--color-white);
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1.5rem;
  box-shadow: var(--shadow-lg);
  margin: 0 clamp(0.5rem, 2vw, 1.5rem);
  transition: all var(--transition-slow);
}

.site-header.scrolled .nav-inner {
  box-shadow: var(--shadow-xl);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
}

.nav-logo img,
.nav-logo svg {
  width: 36px;
  height: 36px;
}

.nav-logo span {
  color: var(--color-accent);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  padding: 0.4rem 0.6rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.6rem;
  right: 0.6rem;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-link.active {
  color: var(--color-accent);
}


.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.5rem;
}

.lang-btn {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.6rem;
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-muted);
  transition: all var(--transition-base);
  background: transparent;
}

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

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

.lang-divider {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}


.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-sm);
  background: transparent;
  transition: all var(--transition-base);
}

.nav-toggle:hover {
  background: var(--color-primary);
}

.nav-toggle:hover .hamburger-line {
  background: var(--color-white);
}

.hamburger-line {
  width: 22px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition-base);
  display: block;
}

.nav-toggle.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary);
  z-index: 999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-link {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-white);
  transition: all var(--transition-base);
  text-align: center;
}

.mobile-nav-link:hover {
  color: var(--color-accent);
}

.mobile-lang-switcher {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.mobile-lang-btn {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.mobile-lang-btn.active,
.mobile-lang-btn:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: all var(--transition-base);
}

.mobile-close:hover {
  color: var(--color-accent);
}


.hero {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: var(--space-3xl);
  background: var(--color-secondary);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: var(--color-primary);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  padding-right: var(--space-lg);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-highlight);
  color: var(--color-dark);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.hero h1 {
  font-size: var(--text-5xl);
  line-height: 1.05;
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.hero h1 .line-accent {
  color: var(--color-accent);
  display: block;
}

.hero-description {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  max-width: 520px;
  line-height: 1.75;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-frame {
  border: var(--border-heavy) solid var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--color-accent);
  color: var(--color-white);
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  font-weight: 700;
  font-size: var(--text-sm);
  max-width: 180px;
  line-height: 1.3;
}

.hero-badge i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: block;
}


.section {
  padding: var(--space-3xl) 0;
}

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

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

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

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

.section-header {
  margin-bottom: var(--space-xl);
}

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  padding: 0.3rem 0.75rem;
  border: var(--border-width) solid var(--color-accent);
  border-radius: var(--radius-sm);
}

.section--dark .section-label {
  color: var(--color-highlight);
  border-color: var(--color-highlight);
}

.section-title {
  font-size: var(--text-4xl);
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 640px;
  line-height: 1.7;
}

.section--dark .section-subtitle {
  color: rgba(255,255,255,0.75);
}


.card {
  background: var(--color-white);
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-xl);
}

.card--tinted {
  background: var(--color-surface-tinted);
}

.card--accent {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-dark);
}

.card--accent h3,
.card--accent p {
  color: var(--color-white);
}

.card--highlight {
  background: var(--color-highlight);
  border-color: var(--color-dark);
  box-shadow: var(--shadow-highlight);
}

.card--dark {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.card--dark h3,
.card--dark p {
  color: var(--color-white);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: var(--color-highlight);
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
  color: var(--color-dark);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.card-icon--accent {
  background: var(--color-accent);
  color: var(--color-white);
}

.card-icon--alt {
  background: var(--color-accent-alt);
  color: var(--color-dark);
}

.card h3 {
  margin-bottom: var(--space-xs);
  font-size: var(--text-xl);
}

.card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.card--accent p {
  color: rgba(255,255,255,0.85);
}


.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}


.features-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: center;
}

.features-content .section-header {
  margin-bottom: var(--space-lg);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.feature-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.feature-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-md);
}

.feature-item-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-item-text h4 {
  font-size: var(--text-base);
  margin-bottom: 0.25rem;
}

.feature-item-text p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.features-image {
  position: relative;
}

.features-image-main {
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.features-image-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.features-image-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.features-image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.course-card {
  background: var(--color-white);
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-xl);
}

.course-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-bottom: var(--border-heavy) solid var(--color-border);
}

.course-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.course-card-body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
  border: var(--border-width) solid currentColor;
}

.course-tag--orange { color: var(--color-accent); }
.course-tag--blue { color: var(--color-accent-alt); }
.course-tag--yellow { color: #c49a00; background: var(--color-highlight); border-color: #c49a00; }

.course-card-body h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  line-height: 1.25;
}

.course-card-body p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  flex: 1;
  margin-bottom: var(--space-md);
}

.course-meta {
  display: flex;
  gap: var(--space-md);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 600;
  padding-top: var(--space-sm);
  border-top: var(--border-width) solid var(--color-surface-tinted);
}

.course-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.course-meta i {
  color: var(--color-accent);
}


.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
  counter-reset: step-counter;
}

.process-step {
  position: relative;
  padding: var(--space-lg);
  background: var(--color-white);
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.process-step:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-xl);
}

.step-number {
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--color-surface-tinted);
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  user-select: none;
  transition: color var(--transition-base);
}

.process-step:hover .step-number {
  color: var(--color-accent);
  opacity: 0.2;
}

.process-step h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  margin-top: var(--space-md);
  position: relative;
  z-index: 1;
}

.process-step p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  position: relative;
  z-index: 1;
}


.resource-card {
  background: var(--color-white);
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.resource-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-xl);
}

.resource-card-header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.resource-icon {
  width: 52px;
  height: 52px;
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.resource-icon--yellow { background: var(--color-highlight); color: var(--color-dark); }
.resource-icon--orange { background: var(--color-accent); color: var(--color-white); }
.resource-icon--blue { background: var(--color-accent-alt); color: var(--color-dark); }
.resource-icon--dark { background: var(--color-primary); color: var(--color-white); }

.resource-card h3 {
  font-size: var(--text-lg);
  line-height: 1.25;
}

.resource-card p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.65;
  flex: 1;
}

.resource-download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-base);
  margin-top: auto;
}

.resource-download:hover {
  border-bottom-color: var(--color-accent);
  gap: 0.75rem;
}


.contact-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-white);
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.contact-info-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-md);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--color-accent);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-text {
  flex: 1;
}

.contact-info-text span {
  display: block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}

.contact-info-text a,
.contact-info-text p {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
}

.contact-info-text a:hover {
  color: var(--color-accent);
}

.contact-preview-cta {
  background: var(--color-primary);
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  color: var(--color-white);
}

.contact-preview-cta h3 {
  font-size: var(--text-2xl);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.contact-preview-cta p {
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}


.contact-form-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: start;
}

.form-container {
  background: var(--color-white);
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-main);
  font-size: var(--text-sm);
  color: var(--color-text);
  background: var(--color-surface);
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  outline: none;
}

.form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 3px 3px 0px var(--color-accent);
  background: var(--color-white);
}

.form-control::placeholder {
  color: var(--color-text-muted);
  opacity: 0.7;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.form-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-top: var(--space-md);
}

.form-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  accent-color: var(--color-accent);
  margin-top: 2px;
}

.form-check label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.form-check label a {
  color: var(--color-accent);
  font-weight: 600;
}

.form-check label a:hover {
  text-decoration: underline;
}

.form-error {
  color: #e53e3e;
  font-size: var(--text-xs);
  margin-top: 0.35rem;
  display: none;
}

.form-error.visible {
  display: block;
}


.map-container {
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}


.sticky-contact {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sticky-contact-btn {
  width: 52px;
  height: 52px;
  background: var(--color-accent);
  color: var(--color-white);
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  cursor: pointer;
}

.sticky-contact-btn:hover {
  background: var(--color-primary);
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-lg);
}

.sticky-contact-btn--alt {
  background: var(--color-primary);
}

.sticky-contact-btn--alt:hover {
  background: var(--color-accent);
}


.page-hero {
  padding-top: 140px;
  padding-bottom: var(--space-2xl);
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--color-white);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.page-hero .section-label {
  color: var(--color-highlight);
  border-color: var(--color-highlight);
}

.page-hero h1 {
  color: var(--color-white);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: var(--text-lg);
  max-width: 640px;
  line-height: 1.7;
}

.page-hero--tinted {
  background: var(--color-secondary);
}

.page-hero--tinted h1 {
  color: var(--color-primary);
}

.page-hero--tinted p {
  color: var(--color-text-muted);
}

.page-hero--tinted::after {
  background: var(--color-white);
}


.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-md);
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-base);
}

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

.breadcrumb-sep {
  color: rgba(255,255,255,0.4);
}


.webinar-card {
  background: var(--color-white);
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.webinar-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-xl);
}

.webinar-card-header {
  padding: var(--space-lg);
  background: var(--color-primary);
  border-bottom: var(--border-heavy) solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.webinar-card-header h3 {
  color: var(--color-white);
  font-size: var(--text-lg);
  flex: 1;
  padding-right: var(--space-sm);
}

.webinar-badge {
  background: var(--color-highlight);
  color: var(--color-dark);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  border: var(--border-width) solid var(--color-border);
  white-space: nowrap;
}

.webinar-card-body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.webinar-card-body p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
  flex: 1;
  line-height: 1.7;
}

.webinar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  padding-bottom: var(--space-md);
  border-bottom: var(--border-width) solid var(--color-surface-tinted);
  margin-bottom: var(--space-md);
}

.webinar-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.webinar-meta i {
  color: var(--color-accent);
}


.story-card {
  background: var(--color-white);
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.story-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-xl);
}

.story-card-image {
  aspect-ratio: 16/9;
  overflow: hidden;
  border-bottom: var(--border-heavy) solid var(--color-border);
}

.story-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.story-card-body {
  padding: var(--space-lg);
}

.story-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: var(--border-width) solid var(--color-accent);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.story-card-body h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  line-height: 1.25;
}

.story-card-body p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}


.cta-banner {
  background: var(--color-accent);
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cta-banner-content h2 {
  color: var(--color-white);
  font-size: var(--text-3xl);
  margin-bottom: var(--space-sm);
}

.cta-banner-content p {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-lg);
  max-width: 540px;
}


.site-footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: var(--space-3xl) 0 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand-text {
  color: rgba(255,255,255,0.7);
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.footer-logo span {
  color: var(--color-accent);
}

.footer-col h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-highlight);
  margin-bottom: var(--space-md);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-sm);
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-nav a:hover {
  color: var(--color-accent);
  padding-left: 0.35rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
}

.footer-contact-item i {
  color: var(--color-accent);
  font-size: 0.9rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-contact-item p,
.footer-contact-item a {
  color: rgba(255,255,255,0.65);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.footer-contact-item a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-text {
  color: rgba(255,255,255,0.45);
  font-size: var(--text-xs);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: rgba(255,255,255,0.45);
  font-size: var(--text-xs);
  transition: color var(--transition-base);
}

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


.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: var(--text-2xl);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: var(--border-width) solid var(--color-border);
}

.legal-content h3 {
  font-size: var(--text-xl);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  margin-bottom: var(--space-md);
  line-height: 1.8;
  color: var(--color-text-muted);
}

.legal-content ul, .legal-content ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--space-md);
}

.legal-content ul li, .legal-content ol li {
  margin-bottom: 0.5rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.legal-meta {
  background: var(--color-surface-tinted);
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-xl);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}


.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: var(--space-3xl) 0;
}

.thanks-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: var(--color-highlight);
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto var(--space-lg);
  box-shadow: var(--shadow-md);
}

.thanks-content h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
}

.thanks-content p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}


.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  background: var(--color-primary);
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  box-shadow: var(--shadow-xl);
  display: none;
  max-width: 900px;
  margin: 0 auto;
}

.cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cookie-banner-text {
  color: rgba(255,255,255,0.85);
  font-size: var(--text-sm);
  line-height: 1.65;
}

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

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.cookie-btn {
  padding: 0.65rem 1.25rem;
  font-family: var(--font-main);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: var(--border-width) solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
}

.cookie-btn--accept {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.cookie-btn--accept:hover {
  background: #e55a28;
}

.cookie-btn--reject {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.cookie-btn--reject:hover {
  border-color: var(--color-white);
  color: var(--color-white);
}

.cookie-btn--customize {
  background: var(--color-highlight);
  color: var(--color-dark);
  border-color: var(--color-highlight);
}

.cookie-btn--customize:hover {
  background: #e6c200;
}


.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-inner {
  background: var(--color-white);
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  max-width: 600px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-inner h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-md);
}

.cookie-category {
  border: var(--border-width) solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.cookie-category-text h4 {
  font-size: var(--text-base);
  margin-bottom: 0.25rem;
}

.cookie-category-text p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.cookie-toggle {
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.cookie-toggle input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.cookie-modal-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: var(--border-width) solid var(--color-surface-tinted);
}


.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.mt-auto { margin-top: auto; }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.items-center { align-items: center; }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }

.w-full { width: 100%; }


.offset-left {
  padding-left: clamp(0, 5vw, 80px);
}

.offset-right {
  padding-right: clamp(0, 5vw, 80px);
}


.mark-accent {
  background: var(--color-highlight);
  padding: 0 0.2em;
  border-radius: 2px;
}


.deco-line {
  width: 60px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 2px;
  margin-bottom: var(--space-md);
  border: var(--border-width) solid var(--color-border);
}


@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero::before {
    display: none;
  }

  .hero {
    background: var(--color-secondary);
  }

  .hero-image-wrap {
    display: none;
  }

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

  .features-image {
    display: none;
  }

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

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

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .sticky-contact {
    display: none;
  }

  .hero-badge {
    display: none;
  }

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

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

@media (max-width: 480px) {
  .btn {
    padding: 0.75rem 1.25rem;
    font-size: var(--text-xs);
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cookie-banner {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    padding: var(--space-md);
  }

  .page-hero {
    padding-top: 120px;
  }
}


.iti {
  width: 100%;
}

.iti input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 52px !important;
  font-family: var(--font-main);
  font-size: var(--text-sm);
  color: var(--color-text);
  background: var(--color-surface);
  border: var(--border-heavy) solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  outline: none;
}

.iti input:focus {
  border-color: var(--color-accent);
  box-shadow: 3px 3px 0px var(--color-accent);
  background: var(--color-white);
}


[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: all;
}


@media print {
  .site-header,
  .sticky-contact,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
}