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

.aib-wrap * { box-sizing: border-box; margin: 0; padding: 0; }
.aib-wrap { font-family: 'Inter', system-ui, -apple-system, sans-serif; color: #535353; line-height: 1.6; overflow-x: hidden; }
.aib-wrap h1, .aib-wrap h2, .aib-wrap h3, .aib-wrap h4 { color: #323232; line-height: 1.25; }
.aib-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Animations */
.aib-fade { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.aib-fade.aib-visible { opacity: 1; transform: translateY(0); }
.aib-stagger-1 { transition-delay: 0.1s; }
.aib-stagger-2 { transition-delay: 0.2s; }
.aib-stagger-3 { transition-delay: 0.3s; }
.aib-stagger-4 { transition-delay: 0.4s; }
.aib-stagger-5 { transition-delay: 0.5s; }
.aib-stagger-6 { transition-delay: 0.6s; }

/* ===== HERO ===== */
.aib-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: url('/wp-content/uploads/2018/09/Digital-markering-sub.jpg') center/cover no-repeat fixed;
  padding: 100px 0 80px;
}
.aib-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.88);
  z-index: 1;
}
.aib-hero .aib-container { position: relative; z-index: 2; }
.aib-hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff7700, #ff9944);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.aib-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 20px;
  max-width: 700px;
}
.aib-hero h1 span { color: #ff7700; }
.aib-hero-sub {
  font-size: 20px;
  color: #535353;
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.aib-btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #ff7700, #e06600);
  color: #fff !important;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(255,119,0,0.3);
}
.aib-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,119,0,0.4);
  color: #fff !important;
  text-decoration: none;
}
.aib-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.aib-hero-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #323232;
}
.aib-hero-stat span {
  font-size: 14px;
  color: #888;
  font-weight: 500;
}

/* ===== SECTION COMMON ===== */
.aib-section { padding: 90px 0; }
.aib-section-white { background: #ffffff; }
.aib-section-gray { background: #f8f9fa; }
.aib-section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ff7700;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.aib-section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}
.aib-section-sub {
  font-size: 17px;
  color: #777;
  max-width: 600px;
  margin-bottom: 50px;
}
.aib-section-center { text-align: center; }
.aib-section-center .aib-section-sub { margin-left: auto; margin-right: auto; }

/* ===== CARDS GRID ===== */
.aib-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .aib-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .aib-grid-3 { grid-template-columns: 1fr; } }

.aib-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.aib-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.aib-card-icon {
  font-size: 40px;
  margin-bottom: 18px;
  display: block;
}
.aib-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.aib-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
}
.aib-card-price {
  display: inline-block;
  background: #fff4eb;
  color: #ff7700;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 8px;
}

/* ===== CASE STUDY ===== */
.aib-case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) { .aib-case-grid { grid-template-columns: 1fr; } }

.aib-metric-row {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.aib-metric {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  flex: 1;
  min-width: 140px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
}
.aib-metric strong {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: #ff7700;
  margin-bottom: 6px;
}
.aib-metric span {
  font-size: 14px;
  color: #777;
  font-weight: 500;
}
.aib-quote {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-left: 4px solid #ff7700;
  position: relative;
}
.aib-quote p {
  font-size: 17px;
  font-style: italic;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}
.aib-quote-author { font-size: 15px; font-weight: 700; color: #323232; }
.aib-quote-role { font-size: 13px; color: #999; }

/* ===== HOW IT WORKS ===== */
.aib-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 768px) {
  .aib-steps { grid-template-columns: 1fr; gap: 40px; }
  .aib-steps::before { display: none; }
}
.aib-steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 16.6%;
  right: 16.6%;
  height: 2px;
  border-top: 3px dashed #ddd;
  z-index: 0;
}
.aib-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
.aib-step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7700, #ff9944);
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(255,119,0,0.25);
}
.aib-step h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.aib-step p {
  font-size: 15px;
  color: #777;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* ===== PRICING ===== */
.aib-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) { .aib-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

.aib-price-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 2px solid transparent;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.aib-price-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}
.aib-price-card.aib-popular {
  border-color: #ff7700;
  box-shadow: 0 8px 40px rgba(255,119,0,0.15);
  transform: scale(1.04);
}
.aib-price-card.aib-popular:hover {
  transform: scale(1.06);
}
.aib-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff7700, #e06600);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.aib-price-tier {
  font-size: 14px;
  font-weight: 700;
  color: #ff7700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.aib-price-amount {
  font-size: 48px;
  font-weight: 900;
  color: #323232;
  margin-bottom: 4px;
}
.aib-price-amount sup { font-size: 24px; vertical-align: top; position: relative; top: 8px; }
.aib-price-period {
  font-size: 14px;
  color: #999;
  margin-bottom: 28px;
}
.aib-price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  padding: 0;
}
.aib-price-features li {
  font-size: 15px;
  color: #555;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  padding-left: 24px;
  position: relative;
}
.aib-price-features li::before {
  content: '\2713';
  color: #ff7700;
  font-weight: 700;
  position: absolute;
  left: 0;
}
.aib-btn-outline {
  display: inline-block;
  border: 2px solid #ff7700;
  color: #ff7700 !important;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s;
  background: transparent;
}
.aib-btn-outline:hover {
  background: #ff7700;
  color: #fff !important;
  text-decoration: none;
}

/* ===== TESTIMONIALS ===== */
.aib-testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 768px) { .aib-testimonial-grid { grid-template-columns: 1fr; } }

.aib-testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.aib-testimonial-stars { color: #ff7700; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.aib-testimonial p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.aib-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.aib-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff7700, #ff9944);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 18px;
}
.aib-testimonial-name { font-weight: 700; color: #323232; font-size: 15px; }
.aib-testimonial-company { font-size: 13px; color: #999; }

/* ===== CTA ===== */
.aib-cta-section {
  background: linear-gradient(135deg, #ff7700, #e06600);
  padding: 90px 0;
  text-align: center;
}
.aib-cta-section h2 {
  color: #fff;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
}
.aib-cta-section .aib-cta-sub {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.aib-cta-form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.aib-cta-form input,
.aib-cta-form textarea {
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-family: 'Inter', system-ui, sans-serif;
  background: rgba(255,255,255,0.95);
  color: #323232;
  outline: none;
  transition: box-shadow 0.3s;
}
.aib-cta-form input:focus,
.aib-cta-form textarea:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.4);
}
.aib-cta-form textarea { resize: vertical; min-height: 100px; }
.aib-btn-white {
  display: inline-block;
  background: #fff;
  color: #ff7700 !important;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  font-family: 'Inter', system-ui, sans-serif;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.aib-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

