.marketing-page {
    --primary: #6366f1;
    --secondary: #22c55e;
    --accent: #f97316;
    --dark: #020617;
    --muted: #64748b;
    --bg: #f8fafc;
    --gradient: linear-gradient(135deg, #6366f1, #22c55e);

    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--dark);
    line-height: 1.8;
    overflow-x: hidden;
}
.marketing-page{
    margin-top: 30px;
}
.marketing-page * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ================= COMMON ================= */
.marketing-page .marketing {
    padding: 80px 20px;
    position: relative;
}

.marketing-page .marketing.light {
    background: radial-gradient(circle at top, #eef2ff, #f8fafc);
}

.marketing-page .marketing.dark {
    background: #020617;
    color: #ffffff;
}

.marketing-page .container {
    max-width: 1200px;
    margin: auto;
}

/* ================= HERO ================= */
.marketing-page .hero-section {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
}
.marketing-page .hero-section .hero-content{
    text-align: left;
}
.marketing-page .hero {
    min-height: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.marketing-page .hero-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
}

.marketing-page .hero-content h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -1.6px;
    margin-bottom: 24px;
}

.marketing-page .gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.marketing-page .hero-content p {
    font-size: 18px;
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 36px;
    margin-left: 0;
}

.marketing-page .hero-actions {
    display: flex;
    gap: 20px;
}

.marketing-page .hero-image-wrap {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 80px 180px rgba(0, 0, 0, 0.28);
}

.marketing-page .hero-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.35), rgba(34, 197, 94, 0.35));
    mix-blend-mode: overlay;
}

.marketing-page .hero-image-wrap img {
    width: 100%;
    display: block;
    transform: scale(1.05);
    transition: transform 1.2s ease;
}

.marketing-page .hero-image-wrap:hover img {
    transform: scale(1);
}

@media(max-width: 900px) {
    .marketing-page .hero {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .marketing-page .hero-actions {
        justify-content: center;
    }

    .marketing-page .hero-content h1 {
        font-size: 44px;
    }
}

/* ================= ANIMATION ================= */
/* .marketing-page .reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.marketing-page .reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    text-align: left;
} */

/* ================= WHAT WE DO (REDESIGNED) ================= */
.marketing-page .what-we-do {
    background: radial-gradient(circle at top, #eef2ff, #f8fafc);
}

.marketing-page .what-header {
    max-width: 790px;
    margin-bottom: 70px;
}
.marketing_section_title{
    font-weight: 900;
    text-align: center;
}
.marketing-page .section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.marketing-page .what-header h2 {
    font-size: 44px;
    font-weight: 900;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.marketing-page .what-header p {
    font-size: 17px;
    color: var(--muted);
}

.marketing-page .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 36px;
}

.marketing-page .process-card {
    background: #ffffff;
    padding: 44px 38px;
    border-radius: 28px;
    position: relative;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.marketing-page .process-card:hover {
    transform: translateY(-18px);
    box-shadow: 0 60px 140px rgba(0, 0, 0, 0.18);
}

.marketing-page .process-step {
    position: absolute;
    top: -18px;
    right: 26px;
    background: var(--gradient);
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
}

.marketing-page .process-card .icon {
    margin-bottom: 24px;
}

.marketing-page .process-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.marketing-page .process-card p {
    font-size: 15.5px;
    color: var(--muted);
}

/* ================= WHO THIS IS FOR (NEW DESIGN) ================= */
.marketing-page .audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-top: 60px;
}

.marketing-page .audience-card {
    padding: 22px;
    border-radius: 26px;
    background: linear-gradient(180deg, #ffffff, #f1f5f9);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.marketing-page .audience-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0.05;
}

.marketing-page .audience-card .svg-inline--fa {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 18px;
}
.mar_box_title{
    color: var(--dark);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}
/* ================= WHY ALPHANSOTECH (NEW DESIGN) ================= */
.marketing-page .why-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.marketing-page .why-highlight {
    background: linear-gradient(135deg, #1e293b, #020617);
    color: #ffffff;
    padding: 60px;
    border-radius: 32px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.4);
}

.marketing-page .why-points {
    display: grid;
    gap: 22px;
}

.marketing-page .why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #ffffff;
    padding: 22px 26px;
    border-radius: 18px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    align-items: baseline;
}

.marketing-page .why-item i {
    color: var(--secondary);
}

/* ================= CTA ================= */
.marketing-page .cta {
    text-align: center;
}
.process-grid .icon .svg-inline--fa{
    font-size: 32px;
    color: var(--primary);
}
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  /* Global spacing */
  .marketing-page {
    margin-top: 10px;
  }

  .marketing-page .marketing {
    padding: 50px 16px;
  }

  /* HERO */
  .marketing-page .hero-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .marketing-page .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .marketing-page .hero-section .hero-content {
    text-align: center;
  }

  .marketing-page .hero-content h1 {
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -1px;
  }

  .marketing-page .hero-content p {
    font-size: 16px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .marketing-page .hero-actions {
    flex-direction: column;
    gap: 14px;
  }

  .marketing-page .hero-actions .btn {
    width: 100%;
  }

  .marketing-page .hero-image-wrap {
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.2);
  }

  /* WHAT WE DO */
  .marketing-page .what-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .marketing-page .what-header h2 {
    font-size: 32px;
  }

  .marketing-page .process-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .marketing-page .process-card {
    padding: 32px 24px;
  }

  /* WHO THIS IS FOR */
  .marketing-page .audience-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .marketing-page .audience-card {
    padding: 20px;
  }

  /* WHY ALPHANSOTECH */
  .marketing-page .why-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }

  .marketing-page .why-highlight {
    padding: 32px 24px;
    text-align: center;
  }

  .marketing-page .why-item {
    padding: 18px 20px;
  }

  /* CTA */
  .marketing-page .cta h2 {
    font-size: 30px;
  }

  .marketing-page .cta p {
    font-size: 15px;
  }
}