/* ============================================
   Purely Fresh AB — Premium Business Styles
   ============================================ */

:root {
  /* Brand Colors from Logo */
  --green-600: #2d8a3e;
  --green-500: #3ba34e;
  --green-400: #4abe5e;
  --green-100: #e8f5ea;
  --green-50: #f3faf4;
  
  --orange-600: #e07c15;
  --orange-500: #f59e0b;
  --orange-400: #fbbf24;
  --orange-100: #fef3c7;
  
  --yellow-500: #b3c52a;
  
  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Functional */
  --bg: var(--white);
  --bg-soft: var(--gray-50);
  --text: var(--gray-900);
  --text-muted: var(--gray-600);
  --border: var(--gray-200);
  
  /* Typography */
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Spacing & Sizing */
  --container: 1200px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.15);
  
  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
  max-width: 100%;
}

/* Top Bar */
.topbar {
  background: var(--gray-900);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.topbar__item {
  opacity: 0.9;
  transition: opacity 0.2s var(--ease);
}

a.topbar__item:hover { opacity: 1; }

.topbar__divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gray-500);
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}

.nav.is-scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand__logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand__name {
  font-weight: 800;
  font-size: 17px;
  color: var(--gray-900);
}

.brand__tag {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  padding: 10px 16px;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-700);
  border-radius: var(--radius);
  transition: all 0.2s var(--ease);
}

.nav__link:hover {
  color: var(--green-600);
  background: var(--green-50);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  padding: 12px 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav__toggle.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(45, 138, 62, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 138, 62, 0.35);
}

.btn--outline {
  background: transparent;
  border-color: var(--border);
  color: var(--gray-700);
}

.btn--outline:hover {
  border-color: var(--green-500);
  color: var(--green-600);
  background: var(--green-50);
}

.btn--dark {
  background: var(--gray-900);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--gray-800);
  transform: translateY(-2px);
}

.btn--light {
  background: var(--gray-100);
  color: var(--gray-700);
}

.btn--light:hover {
  background: var(--gray-200);
}

.btn--white {
  background: var(--white);
  color: var(--gray-900);
}

.btn--white:hover {
  background: var(--gray-50);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 15px;
}

.btn--full {
  width: 100%;
}

/* Language Selector */
.lang-selector {
  position: relative;
}

.lang-selector__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.lang-selector__btn:hover {
  border-color: var(--green-400);
  background: var(--green-50);
}

.lang-selector__icon {
  color: var(--green-600);
}

.lang-selector__current {
  min-width: 22px;
}

.lang-selector__arrow {
  transition: transform 0.2s var(--ease);
}

.lang-selector.is-open .lang-selector__arrow {
  transform: rotate(180deg);
}

.lang-selector__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s var(--ease);
  z-index: 100;
}

.lang-selector.is-open .lang-selector__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.15s var(--ease);
}

.lang-option:hover {
  background: var(--gray-50);
}

.lang-option.is-active {
  background: var(--green-50);
  color: var(--green-600);
}

.lang-option__flag {
  font-size: 18px;
}

.lang-option__name {
  flex: 1;
  text-align: left;
}

.lang-option__check {
  opacity: 0;
  color: var(--green-600);
}

.lang-option.is-active .lang-option__check {
  opacity: 1;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(255,255,255,0.97) 0%, 
    rgba(255,255,255,0.92) 40%,
    rgba(255,255,255,0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  padding: 80px 0 60px;
  flex: 1;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--green-50), var(--orange-100));
  border: 1px solid var(--green-100);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-600);
}

.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--orange-500));
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.hero__title {
  margin: 24px 0 0;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.text-gradient {
  background: linear-gradient(135deg, var(--green-500), var(--orange-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__desc {
  margin: 20px 0 0;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Hero Card */
.hero__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.hero__card-header {
  padding: 24px 24px 20px;
  border-bottom: 1px solid var(--border);
}

.hero__card-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
}

.hero__card-header p {
  margin: 6px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}

.hero__card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 20px 24px;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
}

.quick-link:hover {
  border-color: var(--green-400);
  background: var(--green-50);
  transform: translateY(-2px);
}

.quick-link__img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.quick-link__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-link__text {
  line-height: 1.3;
}

.quick-link__text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}

.quick-link__text span {
  font-size: 12px;
  color: var(--text-muted);
}

.hero__card-footer {
  display: flex;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  background: var(--gray-50);
}

.hero__card-footer .btn {
  flex: 1;
}

/* Hero Stats */
.hero__stats {
  position: relative;
  z-index: 1;
  padding: 32px 0 48px;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: all 0.3s var(--ease);
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
}

.stat__value {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--green-600);
  margin-bottom: 4px;
}

.stat__label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Sections */
.section {
  padding: 100px 0;
  overflow: hidden;
}

.section--gray {
  background: var(--gray-50);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section__label {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--green-50), var(--orange-100));
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-600);
  margin-bottom: 16px;
}

.section__title {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.section__desc {
  margin: 16px 0 0;
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-content h3 {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 800;
}

.about-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 16px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tag {
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-700);
  transition: all 0.2s var(--ease);
}

.tag:hover {
  border-color: var(--green-400);
  background: var(--green-50);
  color: var(--green-600);
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-image__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-600);
  box-shadow: var(--shadow);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.value-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s var(--ease);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
}

.value-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-50), var(--orange-100));
  border-radius: 16px;
  color: var(--green-600);
}

.value-card h4 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
}

.value-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Products Section */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--green-300);
}

.product-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.product-card:hover .product-card__image img {
  transform: scale(1.08);
}

.product-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.product-card:hover .product-card__overlay {
  opacity: 1;
}

.product-card__content {
  padding: 24px;
}

.product-card__content h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.product-card__content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Logistics Section */
.logistics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.logistics-content h3 {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 800;
}

.logistics-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0 0 24px;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process__step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
}

.process__step:hover {
  border-color: var(--orange-400);
  background: var(--orange-100);
}

.process__num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  border-radius: 10px;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.process__text {
  font-weight: 600;
  color: var(--gray-700);
}

.logistics-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.logistics-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.logistics-image__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-600);
  box-shadow: var(--shadow);
}

/* Customers Section */
.customers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.customer-card {
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s var(--ease);
}

.customer-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
}

.customer-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-50), var(--orange-100));
  border-radius: 20px;
  color: var(--green-600);
}

.customer-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 700;
}

.customer-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
  margin-top: 60px;
  padding: 48px;
  background: linear-gradient(135deg, var(--green-500), var(--green-600));
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: var(--white);
}

.cta-banner__content h3 {
  margin: 0 0 20px;
  font-size: 28px;
  font-weight: 800;
}

.cta-banner__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.cta-banner__features span {
  position: relative;
  padding-left: 20px;
  font-weight: 600;
}

.cta-banner__features span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--orange-400);
  border-radius: 50%;
}

.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.cta-banner__actions .btn--primary {
  background: var(--white);
  color: var(--green-600);
  box-shadow: var(--shadow);
}

.cta-banner__actions .btn--outline {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

.cta-banner__actions .btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.contact-info h3 {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 800;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: var(--gray-50);
  border-radius: var(--radius);
}

.contact-row__label {
  font-weight: 700;
  color: var(--gray-600);
}

.contact-row__value {
  font-weight: 600;
  text-align: right;
  color: var(--gray-900);
}

a.contact-row__value:hover {
  color: var(--green-600);
}

.contact-note {
  margin: 24px 0;
  padding: 20px;
  background: linear-gradient(135deg, var(--green-50), var(--orange-100));
  border-radius: var(--radius);
}

.contact-note p {
  margin: 0;
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  gap: 12px;
}

.contact-form-wrapper {
  padding: 40px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}

.contact-form-wrapper h3 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 800;
}

.form-note {
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 14px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--gray-700);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--gray-900);
  transition: all 0.2s var(--ease);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-400);
  box-shadow: 0 0 0 4px var(--green-100);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-disclaimer {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 48px 0 32px;
  overflow: hidden;
}

.footer__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
}

.footer__brand strong {
  display: block;
  font-size: 17px;
}

.footer__brand span {
  font-size: 13px;
  opacity: 0.7;
}

.footer__nav {
  display: flex;
  gap: 32px;
}

.footer__nav a {
  font-weight: 600;
  font-size: 14px;
  opacity: 0.8;
  transition: opacity 0.2s var(--ease);
}

.footer__nav a:hover {
  opacity: 1;
}

.footer__bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  opacity: 0.6;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 90;
}

.floating-btn {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  color: var(--gray-700);
  transition: all 0.25s var(--ease);
}

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  color: var(--green-600);
  border-color: var(--green-300);
}

.floating-btn--top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.floating-btn--top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-animate="fade-up"].is-animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-left"] {
  transform: translateY(30px);
}

[data-animate="fade-left"].is-animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-right"] {
  transform: translateY(30px);
}

[data-animate="fade-right"].is-animated {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero__card {
    max-width: 520px;
  }
  
  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid,
  .logistics-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .values-grid,
  .customers-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-banner {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-banner__features {
    justify-content: center;
  }
  
  .cta-banner__actions {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 768px) {
  .topbar__inner {
    font-size: 12px;
  }
  
  .nav__toggle {
    display: flex;
  }
  
  .nav__menu {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: var(--shadow-xl);
    flex-direction: column;
    gap: 8px;
    display: none;
  }
  
  .nav__menu.is-open {
    display: flex;
  }
  
  .nav__link {
    padding: 14px 16px;
    background: var(--gray-50);
    border-radius: var(--radius);
    text-align: center;
  }
  
  .hero__card-grid {
    grid-template-columns: 1fr;
  }
  
  .hero__card-footer {
    flex-direction: column;
  }
  
  .stats-bar {
    grid-template-columns: 1fr;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section__header {
    margin-bottom: 40px;
  }
  
  .about-image img,
  .logistics-image img {
    height: 300px;
  }
  
  .contact-info,
  .contact-form-wrapper {
    padding: 28px;
  }
  
  .contact-actions {
    flex-direction: column;
  }
  
  .footer__main {
    flex-direction: column;
    text-align: center;
  }
  
  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }
  
  .floating-actions {
    right: 16px;
    bottom: 16px;
  }
  
  .floating-btn {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 32px);
  }
  
  .hero__title {
    font-size: 32px;
  }
  
  .hero__desc {
    font-size: 16px;
  }
  
  .hero__actions {
    flex-direction: column;
  }
  
  .hero__actions .btn {
    width: 100%;
  }
  
  .cta-banner {
    padding: 32px 24px;
  }
  
  .contact-row {
    flex-direction: column;
    gap: 4px;
  }
  
  .contact-row__value {
    text-align: left;
  }
}