# CTA Stats & Image
Category: cta
Description: Combines compelling statistics, clear call-to-action buttons, and an engaging image to drive user action.
## Implementation Context
- **Primary**: Use **SenangStart CSS** for the implementation.
- **Reference**: Tailwind CSS is provided for stylistic context only.
## SenangStart CSS Usage
To use SenangStart CSS, simply include the script in your HTML `
`:
```html
My App
Hello SenangStart!
Zero config, instant styling.
```
**Documentation**: [Getting Started Guide](https://bookklik-technologies.github.io/senangstart-css/guide/getting-started.html)
## SenangStart CSS Code
```html
<section layout="container" space="m-x:auto m-y:large p-x:medium-3x tw-lg:m-y:big-3x tw-lg:p-x:big-3x">
<div layout="overflow:hidden" visual="rounded:big bg:blue-600 text:white">
<div layout="grid tw-lg:grid-cols:2" space="g:large">
<!-- Content Side -->
<div space="p:large tw-lg:p:big-3x">
<h2 space="m-b:medium" visual="text-size:grand font:tw-bold tw-lg:text-size:mount">
Ready to Transform Your Business?
</h2>
<p space="m-b:large" visual="text-size:large tw-lg:text-size:big">
Join over 10,000+ companies that have accelerated their growth
with our solutions.
</p>
<!-- Stats Grid -->
<div layout="grid grid-cols:2" space="m-b:large g:large">
<div>
<p visual="text-size:grand font:tw-bold tw-lg:text-size:mount">98%</p>
<p visual="text-size:small tw-lg:text-size:base">Customer Satisfaction</p>
</div>
<div>
<p visual="text-size:grand font:tw-bold tw-lg:text-size:mount">2.5x</p>
<p visual="text-size:small tw-lg:text-size:base">Revenue Growth</p>
</div>
<div>
<p visual="text-size:grand font:tw-bold tw-lg:text-size:mount">24/7</p>
<p visual="text-size:small tw-lg:text-size:base">Expert Support</p>
</div>
<div>
<p visual="text-size:grand font:tw-bold tw-lg:text-size:mount">50+</p>
<p visual="text-size:small tw-lg:text-size:base">Countries Served</p>
</div>
</div>
<!-- CTA Buttons -->
<div layout="flex col tw-xl:row" space="g:medium">
<a
href="#demo"
layout="flex items:center justify:center" space="h:big-2x p-x:large" visual="rounded:medium bg:white text-size:large font:tw-semibold text:blue-600" class="hover:bg-opacity-90"
>
Schedule Demo
</a>
<a
href="#contact"
layout="flex items:center justify:center" space="h:big-2x p-x:large" visual="rounded:medium border-w:regular border:white text-size:large font:tw-semibold hover:bg:white hover:text:blue-600"
>
Contact Sales
</a>
</div>
</div>
<!-- Image Side -->
<div layout="relative hidden tw-lg:block">
<img
src="https://placehold.co/600x800"
alt="Dashboard Preview"
layout="absolute object:cover" space="w:auto" class="-right-24 top-1/2 -translate-y-1/2"
/>
</div>
</div>
</div>
</section>
```
## Tailwind CSS Code
```html
<section class="container mx-auto my-8 px-6 lg:my-16 lg:px-16">
<div class="overflow-hidden rounded-2xl bg-blue-600 text-white">
<div class="grid gap-8 lg:grid-cols-2">
<!-- Content Side -->
<div class="p-8 lg:p-16">
<h2 class="mb-4 text-3xl font-bold lg:text-5xl">
Ready to Transform Your Business?
</h2>
<p class="mb-8 text-lg lg:text-xl">
Join over 10,000+ companies that have accelerated their growth
with our solutions.
</p>
<!-- Stats Grid -->
<div class="mb-8 grid grid-cols-2 gap-8">
<div>
<p class="text-3xl font-bold lg:text-5xl">98%</p>
<p class="text-sm lg:text-base">Customer Satisfaction</p>
</div>
<div>
<p class="text-3xl font-bold lg:text-5xl">2.5x</p>
<p class="text-sm lg:text-base">Revenue Growth</p>
</div>
<div>
<p class="text-3xl font-bold lg:text-5xl">24/7</p>
<p class="text-sm lg:text-base">Expert Support</p>
</div>
<div>
<p class="text-3xl font-bold lg:text-5xl">50+</p>
<p class="text-sm lg:text-base">Countries Served</p>
</div>
</div>
<!-- CTA Buttons -->
<div class="flex flex-col gap-4 xl:flex-row">
<a
href="#demo"
class="flex h-14 items-center justify-center rounded-lg bg-white px-8 text-lg font-semibold text-blue-600 hover:bg-opacity-90"
>
Schedule Demo
</a>
<a
href="#contact"
class="flex h-14 items-center justify-center rounded-lg border-2 border-white px-8 text-lg font-semibold hover:bg-white hover:text-blue-600"
>
Contact Sales
</a>
</div>
</div>
<!-- Image Side -->
<div class="relative hidden lg:block">
<img
src="https://placehold.co/600x800"
alt="Dashboard Preview"
class="absolute -right-24 top-1/2 w-auto -translate-y-1/2 object-cover"
/>
</div>
</div>
</div>
</section>
```