.hero-section-white {
background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
padding: 5rem 0 4rem;
min-height: auto;
width: 100%;
box-sizing: border-box;
position: relative;
clear: both;
overflow: hidden;
}
.hero-section-white::before {
content: '';
position: absolute;
top: 0;
right: 0;
width: 50%;
height: 100%;
background: radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
pointer-events: none;
}
.hero-section-white .container {
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
box-sizing: border-box;
position: relative;
z-index: 1;
}
.hero-layout {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: 5rem;
align-items: start;
width: 100%;
box-sizing: border-box;
}
.hero-left {
padding-top: 1rem;
width: 100%;
box-sizing: border-box;
min-width: 0;
}
.hero-right {
width: 100%;
box-sizing: border-box;
min-width: 0;
display: flex;
flex-direction: column;
gap: 1.5rem;
}
.hero-badge {
display: inline-flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem 1rem;
background: #ffffff;
color: var(--text-color);
border-radius: 12px;
font-size: 0.875rem;
font-weight: 500;
margin-bottom: 2rem;
border: 1px solid #e5e7eb;
transition: var(--transition);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
max-width: 100%;
}
.hero-badge:hover {
border-color: #d1d5db;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
transform: translateY(-1px);
}
.hero-badge-icon {
font-size: 1.5rem;
line-height: 1;
flex-shrink: 0;
}
.hero-badge-text {
display: flex;
flex-direction: column;
gap: 0.125rem;
flex: 1;
min-width: 0;
}
.hero-badge-title {
font-size: 0.875rem;
font-weight: 600;
color: #374151;
line-height: 1.3;
}
.hero-badge-link {
display: flex;
align-items: center;
justify-content: center;
width: 28px;
height: 28px;
border-radius: 6px;
background: #f3f4f6;
color: #6b7280;
text-decoration: none;
transition: var(--transition);
flex-shrink: 0;
}
.hero-badge-link:hover {
background: #e5e7eb;
color: #374151;
}
.hero-badge-link svg {
width: 16px;
height: 16px;
} @media (max-width: 768px) {
.hero-badge {
padding: 0.625rem 0.875rem;
gap: 0.625rem;
font-size: 0.8125rem;
}
.hero-badge-icon {
font-size: 1.25rem;
}
.hero-badge-title {
font-size: 0.8125rem;
}
.hero-badge-subtitle {
font-size: 0.6875rem;
}
.hero-badge-link {
width: 24px;
height: 24px;
}
.hero-badge-link svg {
width: 14px;
height: 14px;
}
}
.hero-title-white {
font-size: clamp(2.5rem, 5.5vw, 4.75rem);
font-weight: 900;
line-height: 1.1;
margin-bottom: 1.75rem;
color: var(--text-color);
letter-spacing: -0.01em;
text-transform: uppercase;
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.title-part-1 {
display: block;
font-size: clamp(1.5rem, 3.5vw, 2.5rem);
font-weight: 800;
color: var(--text-color);
letter-spacing: 0.05em;
text-transform: uppercase;
opacity: 0.9;
animation: fadeInDown 0.8s ease-out;
}
.title-highlight {
background: linear-gradient(135deg, #6366f1 0%, #14b8a6 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
display: block;
position: relative;
text-transform: uppercase;
letter-spacing: 0.02em;
animation: fadeInUp 0.8s ease-out 0.2s both;
font-size: clamp(2rem, 5.5vw, 4.75rem);
line-height: 1.1;
}
.title-highlight::after {
content: '';
position: absolute;
bottom: 0.25rem;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(135deg, #6366f1, #14b8a6);
border-radius: 3px;
opacity: 0.4;
animation: expandWidth 1s ease-out 0.5s both;
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 0.9;
transform: translateY(0);
}
}
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes expandWidth {
from {
width: 0;
}
to {
width: 100%;
}
}
.hero-description-white {
font-size: 1.25rem;
line-height: 1.75;
color: var(--text-light);
margin-bottom: 2.5rem;
max-width: 650px;
font-weight: 400;
}
.hero-contact-white {
display: inline-flex;
align-items: center;
gap: 0.875rem;
color: var(--text-color);
font-weight: 600;
font-size: 1.0625rem;
padding: 0.875rem 1.5rem;
background: #fff;
border: 2px solid #e5e7eb;
border-radius: 12px;
transition: var(--transition);
text-decoration: none;
max-width: fit-content;
}
.hero-contact-white:hover {
border-color: var(--primary-color);
background: #f9fafb;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.hero-contact-white svg {
color: var(--primary-color);
flex-shrink: 0;
} .profile-card {
background: #fff;
border: 2px solid #e5e7eb;
border-radius: 20px;
padding: 2rem;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
transition: var(--transition);
position: relative;
overflow: hidden;
}
.profile-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #6366f1, #14b8a6);
opacity: 0;
transition: var(--transition);
}
.profile-card:hover {
border-color: var(--primary-color);
transform: translateY(-4px);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.profile-card:hover::before {
opacity: 1;
}
.profile-header {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 1.5rem;
position: relative;
}
.profile-image {
width: 88px;
height: 88px;
border-radius: 50%;
overflow: hidden;
border: 4px solid #f3f4f6;
transition: var(--transition);
position: relative;
}
.profile-image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.profile-card:hover .profile-image {
border-color: var(--primary-color);
transform: scale(1.05);
}
.linkedin-icon {
color: #0a66c2;
transition: var(--transition);
padding: 0.5rem;
border-radius: 8px;
background: rgba(10, 102, 194, 0.05);
display: flex;
align-items: center;
justify-content: center;
}
.linkedin-icon:hover {
transform: scale(1.1) rotate(5deg);
background: rgba(10, 102, 194, 0.1);
color: #004182;
}
.profile-name {
font-size: 1.625rem;
font-weight: 800;
margin-bottom: 0.625rem;
color: var(--text-color);
letter-spacing: -0.01em;
}
.profile-title {
font-size: 1rem;
color: var(--text-light);
margin-bottom: 0.625rem;
font-weight: 500;
line-height: 1.5;
}
.profile-companies {
font-size: 0.9375rem;
color: var(--text-light);
margin-bottom: 1.25rem;
font-weight: 500;
line-height: 1.6;
}
.profile-social {
display: inline-block;
padding: 0.625rem 1.25rem;
background: linear-gradient(135deg, #6366f1, #14b8a6);
color: #fff;
border-radius: 10px;
font-size: 0.9375rem;
font-weight: 700;
text-decoration: none;
transition: var(--transition);
box-shadow: 0 2px 8px rgba(99, 102, 241, 0.2);
}
.profile-social:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
background: linear-gradient(135deg, #5856eb, #0d9488);
} .ai-seo-card {
background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
border: 2px solid #e5e7eb;
border-radius: 20px;
padding: 2rem;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
transition: var(--transition);
position: relative;
overflow: hidden;
}
.ai-seo-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #6366f1, #14b8a6);
opacity: 0;
transition: var(--transition);
}
.ai-seo-card:hover {
border-color: var(--primary-color);
transform: translateY(-4px);
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.ai-seo-card:hover::before {
opacity: 1;
}
.ai-seo-title {
font-size: 1.25rem;
font-weight: 800;
margin-bottom: 0.875rem;
color: var(--text-color);
letter-spacing: -0.01em;
}
.ai-seo-description {
font-size: 1rem;
line-height: 1.7;
color: var(--text-light);
margin-bottom: 1.5rem;
font-weight: 400;
}
.ai-seo-steps {
display: flex;
flex-direction: column;
gap: 0.875rem;
margin-bottom: 1.25rem;
}
.ai-step-link {
display: flex;
align-items: center;
justify-content: space-between;
padding: 1rem 1.25rem;
background: #fff;
border: 2px solid #e5e7eb;
border-radius: 12px;
text-decoration: none;
color: var(--text-color);
font-weight: 700;
font-size: 0.9375rem;
transition: var(--transition);
position: relative;
overflow: hidden;
}
.ai-step-link::before {
content: '';
position: absolute;
left: 0;
top: 0;
bottom: 0;
width: 0;
background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(16, 185, 129, 0.1));
transition: width 0.3s ease;
}
.ai-step-link:hover {
border-color: var(--primary-color);
background: #f9fafb;
transform: translateX(6px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.ai-step-link:hover::before {
width: 4px;
}
.ai-step-link span {
position: relative;
z-index: 1;
}
.ai-step-link svg {
color: var(--primary-color);
transition: var(--transition);
position: relative;
z-index: 1;
flex-shrink: 0;
}
.ai-step-link:hover svg {
transform: translateX(6px);
color: #14b8a6;
}
.ai-seo-footer {
font-size: 0.875rem;
color: var(--text-light);
margin: 0;
font-style: italic;
text-align: center;
padding-top: 1rem;
border-top: 1px solid #e5e7eb;
} .ajansi-process-section {
padding: 80px 0;
background: #f9fafb;
border-top: 1px solid #e5e7eb;
border-bottom: 1px solid #e5e7eb;
}
.ajansi-process-section .container {
max-width: 1100px;
margin: 0 auto;
padding: 0 24px;
}
.ajansi-process-grid {
display: flex;
flex-direction: column;
gap: 32px;
margin-top: 40px;
}
.ajansi-process-card {
position: relative;
padding: 24px 24px 24px 72px;
background: #ffffff;
border-radius: 16px;
border: 1px solid #e5e7eb;
box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.ajansi-process-card::before {
content: '';
position: absolute;
left: 32px;
top: 24px;
bottom: 24px;
width: 2px;
background: linear-gradient(180deg, rgba(99,102,241,0.25), rgba(20,184,166,0.25));
}
.ajansi-process-card:last-child::before {
bottom: 32px;
}
.ajansi-process-step {
position: absolute;
left: 20px;
top: 22px;
width: 36px;
height: 36px;
border-radius: 999px;
background: linear-gradient(135deg, #6366f1, #14b8a6);
border: 2px solid #eef2ff;
display: flex;
align-items: center;
justify-content: center;
font-weight: 800;
font-size: 14px;
color: #ffffff;
box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
}
.ajansi-process-title {
font-size: 1.125rem;
font-weight: 800;
color: #111827;
margin-bottom: 0.5rem;
}
.ajansi-process-text {
font-size: 0.975rem;
line-height: 1.8;
color: #4b5563;
margin-bottom: 0.75rem;
}
.ajansi-process-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 0.25rem;
}
.ajansi-process-list li {
font-size: 0.9375rem;
color: #374151;
position: relative;
padding-left: 1.25rem;
}
.ajansi-process-list li::before {
content: '';
position: absolute;
left: 0.3rem;
top: 0.55rem;
width: 6px;
height: 6px;
border-radius: 999px;
background: linear-gradient(135deg, #6366f1, #14b8a6);
opacity: 0.7;
}
@media (max-width: 768px) {
.ajansi-process-section {
padding: 64px 0;
}
.ajansi-process-card {
padding: 20px 18px 20px 64px;
}
.ajansi-process-card::before {
left: 28px;
}
.ajansi-process-step {
left: 16px;
}
} .page-top-content-section,
.page-content-section {
padding: 72px 0;
background: #ffffff;
}
.page-top-content-section .container,
.page-content-section .container {
max-width: 960px;
margin: 0 auto;
padding: 0 24px;
}
.page-top-content-wrapper,
.page-content-wrapper {
display: flex;
justify-content: center;
}
.page-top-content,
.page-content-inner {
max-width: 760px;
width: 100%;
font-size: 1rem;
line-height: 1.8;
color: var(--text-light);
}
.page-top-content h2,
.page-top-content h3,
.page-top-content h4,
.page-content-inner h2,
.page-content-inner h3,
.page-content-inner h4 {
color: var(--text-color);
font-weight: 800;
margin-bottom: 1rem;
}
.page-top-content p,
.page-content-inner p {
margin-bottom: 1rem;
} .references-logos-grid {
display: grid;
grid-template-columns: repeat(6, minmax(0, 1fr));
gap: 2rem;
align-items: center;
}
.reference-logo-item {
display: flex;
align-items: center;
justify-content: center;
}
.reference-logo-img {
max-width: 100%;
max-height: 80px;
width: auto;
height: auto;
object-fit: contain;
filter: grayscale(100%) opacity(0.8);
transition: var(--transition);
}
.reference-logo-item:hover .reference-logo-img {
filter: grayscale(0%) opacity(1);
transform: scale(1.05);
}
@media (max-width: 1024px) {
.references-logos-grid {
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1.5rem;
}
}
@media (max-width: 640px) {
.references-logos-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 1.25rem;
}
}
@media (max-width: 768px) {
.page-top-content-section,
.page-content-section {
padding: 56px 0;
}
.page-top-content-section .container,
.page-content-section .container {
padding: 0 16px;
}
} .clients-section {
background: #f9fafb;
padding: 3rem 0;
border-top: 1px solid #e5e7eb;
border-bottom: 1px solid #e5e7eb;
width: 100%;
box-sizing: border-box;
position: relative;
clear: both;
}
.clients-section .container {
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
box-sizing: border-box;
}
.clients-title {
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 2px;
color: var(--text-lighter);
text-align: center;
margin-bottom: 2rem;
}
.clients-grid {
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 2rem;
align-items: center;
}
.client-logo-item {
position: relative;
display: flex;
align-items: center;
justify-content: center;
padding: 1.5rem;
background: #fff;
border-radius: 12px;
border: 1px solid #e5e7eb;
transition: var(--transition);
min-height: 120px;
overflow: hidden;
text-decoration: none;
color: inherit;
}
.client-logo-item:hover {
border-color: var(--primary-color);
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.client-logo-img {
max-width: 100%;
max-height: 80px;
width: auto;
height: auto;
object-fit: contain;
filter: grayscale(100%) opacity(0.7);
transition: var(--transition);
display: block;
}
.client-logo-item:hover .client-logo-img {
filter: grayscale(0%) opacity(1);
transform: scale(1.08);
}
.client-logo-fallback {
display: flex;
text-align: center;
font-weight: 600;
color: var(--text-light);
font-size: 0.875rem;
line-height: 1.4;
width: 100%;
align-items: center;
justify-content: center;
height: 100%;
}
.client-logo-item:hover .client-logo-fallback {
color: var(--primary-color);
} .experience-section {
background: #fff;
padding: 4rem 0;
width: 100%;
box-sizing: border-box;
position: relative;
clear: both;
}
.experience-section .container {
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
box-sizing: border-box;
}
.experience-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
align-items: start;
width: 100%;
box-sizing: border-box;
position: relative;
}
.experience-images {
width: 100%;
box-sizing: border-box;
min-width: 0;
position: sticky;
top: 2rem;
}
.experience-text {
width: 100%;
box-sizing: border-box;
min-width: 0;
}
.experience-image-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 1rem;
}
.exp-img {
aspect-ratio: 1;
background: #f3f4f6;
border-radius: 12px;
background-size: cover;
background-position: center;
position: relative;
overflow: hidden;
filter: grayscale(100%);
transition: all 0.4s ease;
cursor: pointer;
}
.exp-img:hover {
filter: grayscale(0%);
transform: scale(1.02);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.exp-img svg {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.exp-img::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
opacity: 0;
transition: opacity 0.4s ease;
}
.exp-img:hover::after {
opacity: 1;
} .exp-img-1 {
grid-column: 1;
grid-row: 1;
}
.exp-img-2 {
grid-column: 2;
grid-row: 1;
}
.exp-img-3 {
grid-column: 1;
grid-row: 2;
}
.exp-img-4 {
grid-column: 2;
grid-row: 2;
}
.experience-badge {
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--text-lighter);
margin-bottom: 0.5rem;
} .experience-title,
.experience-description { }
.experience-badge {
display: inline-block;
padding: 0.5rem 1rem;
background: #f3f4f6;
color: var(--text-light);
border-radius: 20px;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 1rem;
} .experience-stats-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
margin-bottom: 2.5rem;
}
.experience-stat-card {
background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
border: 1px solid #e5e7eb;
border-radius: 12px;
padding: 1rem;
display: flex;
align-items: center;
gap: 0.75rem;
transition: var(--transition);
position: relative;
overflow: hidden;
}
.experience-stat-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 3px;
height: 100%;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
transform: scaleY(0);
transform-origin: bottom;
transition: var(--transition);
}
.experience-stat-card:hover {
border-color: var(--primary-color);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
background: #fff;
}
.experience-stat-card:hover::before {
transform: scaleY(1);
}
.experience-stat-card .stat-icon {
width: 40px;
height: 40px;
min-width: 40px;
background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(16, 185, 129, 0.1));
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary-color);
transition: var(--transition);
}
.experience-stat-card:hover .stat-icon {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: #fff;
transform: scale(1.05) rotate(3deg);
}
.stat-content {
flex: 1;
}
.stat-number {
font-size: 1.5rem;
font-weight: 900;
background: linear-gradient(135deg, var(--text-color), var(--primary-color));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
line-height: 1.2;
margin-bottom: 0.125rem;
}
.experience-stat-card:hover .stat-number {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.stat-label {
font-size: 0.8125rem;
font-weight: 600;
color: var(--text-light);
text-transform: uppercase;
letter-spacing: 0.5px;
}
.experience-companies-title {
font-size: 1rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
color: var(--text-color);
margin-bottom: 1.25rem;
text-align: left;
}
.experience-companies {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.25rem;
}
.company-logo-item {
position: relative;
display: flex;
align-items: center;
justify-content: center;
padding: 1rem 1.5rem;
background: #f9fafb;
border: 1px solid #e5e7eb;
border-radius: 12px;
transition: var(--transition);
min-height: 80px;
width: 100%;
overflow: hidden;
text-decoration: none;
color: inherit;
}
.company-logo-item:hover {
border-color: var(--primary-color);
transform: translateY(-3px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
background: #fff;
}
.company-logo-img {
max-width: 100%;
max-height: 60px;
width: auto;
height: auto;
object-fit: contain;
filter: grayscale(100%) opacity(0.7);
transition: var(--transition);
display: block;
}
.company-logo-item:hover .company-logo-img {
filter: grayscale(0%) opacity(1);
transform: scale(1.1);
}
.company-logo-fallback {
display: flex;
text-align: center;
font-weight: 600;
color: var(--text-color);
font-size: 1.125rem;
line-height: 1.4;
width: 100%;
align-items: center;
justify-content: center;
height: 100%;
}
.company-logo-item:hover .company-logo-fallback {
color: var(--primary-color);
} .company-logo {
font-weight: 600;
color: var(--text-color);
font-size: 1.125rem;
padding: 0.75rem 1.5rem;
background: #f9fafb;
border: 1px solid #e5e7eb;
border-radius: 8px;
} .ai-success-section {
background: #f9fafb;
padding: 3rem 0;
text-align: center;
width: 100%;
box-sizing: border-box;
position: relative;
clear: both;
}
.ai-success-section .container {
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
box-sizing: border-box;
} .ai-success-title,
.ai-success-description { } .ai-success-features {
display: flex;
justify-content: center;
align-items: center;
gap: 2rem;
margin-top: 3rem;
flex-wrap: wrap;
}
.ai-success-feature-item {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem 1.25rem;
background: #fff;
border: 1px solid #e5e7eb;
border-radius: 8px;
transition: var(--transition);
}
.ai-success-feature-item:hover {
border-color: var(--primary-color);
background: #f9fafb;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.ai-feature-icon {
width: 24px;
height: 24px;
min-width: 24px;
display: flex;
align-items: center;
justify-content: center;
color: var(--primary-color);
}
.ai-feature-text {
font-size: 0.9375rem;
font-weight: 500;
color: var(--text-color);
white-space: nowrap;
} .service-packages-section {
background: #fff;
padding: 4rem 0;
width: 100%;
box-sizing: border-box;
position: relative;
clear: both;
}
.service-packages-section .container {
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
box-sizing: border-box;
}
.packages-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
margin-top: 3rem;
width: 100%;
box-sizing: border-box;
}
.package-card {
background: #fff;
border: 2px solid #e5e7eb;
border-radius: 20px;
padding: 2.5rem;
text-align: center;
transition: var(--transition);
position: relative;
}
.package-card:hover {
border-color: var(--primary-color);
transform: translateY(-8px);
box-shadow: var(--shadow-xl);
}
.package-card.featured {
border-color: var(--primary-color);
background: linear-gradient(to bottom, #fff, #f9fafb);
}
.package-badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: #fff;
padding: 0.375rem 1rem;
border-radius: 20px;
font-size: 0.75rem;
font-weight: 700;
text-transform: uppercase;
}
.package-icon {
width: 80px;
height: 80px;
background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(16, 185, 129, 0.1));
border-radius: 16px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
color: var(--primary-color);
}
.package-title {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 1rem;
color: var(--text-color);
}
.package-price {
font-size: 1.25rem;
font-weight: 700;
color: var(--primary-color);
margin-bottom: 1.5rem;
}
.package-features {
list-style: none;
text-align: left;
margin-bottom: 2rem;
padding: 0;
}
.package-features li {
padding: 0.5rem 0;
color: var(--text-light);
position: relative;
padding-left: 1.5rem;
}
.package-features li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--secondary-color);
font-weight: 700;
}
.btn-package {
display: inline-block;
width: 100%;
padding: 1rem 2rem;
background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
color: #fff;
text-decoration: none;
border-radius: 12px;
font-weight: 700;
font-size: 1rem;
transition: var(--transition);
text-align: center;
}
.btn-package:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-lg);
} .features-detailed-section {
background: #f9fafb;
padding: 4rem 0;
width: 100%;
box-sizing: border-box;
position: relative;
clear: both;
}
.features-detailed-section .container {
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
box-sizing: border-box;
}
.features-detailed-content {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 4rem;
align-items: center;
width: 100%;
box-sizing: border-box;
}
.features-detailed-text,
.features-detailed-visual {
width: 100%;
box-sizing: border-box;
min-width: 0;
} .features-detailed-title,
.features-detailed-description { }
.features-detailed-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
}
.feature-detailed-item {
background: #fff;
border: 1px solid #e5e7eb;
border-radius: 16px;
padding: 1.5rem;
transition: var(--transition);
}
.feature-detailed-item:hover {
border-color: var(--primary-color);
box-shadow: var(--shadow-md);
transform: translateY(-4px);
}
.feature-detailed-icon {
width: 56px;
height: 56px;
background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(16, 185, 129, 0.1));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
color: var(--primary-color);
}
.feature-detailed-item h4 {
font-size: 1.125rem;
font-weight: 700;
margin-bottom: 0.5rem;
color: var(--text-color);
}
.feature-detailed-item p {
font-size: 0.9375rem;
color: var(--text-light);
margin: 0;
}
.visual-placeholder {
background: #fff;
border: 1px solid #e5e7eb;
border-radius: 16px;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
box-shadow: var(--shadow-md);
overflow: hidden;
position: relative;
}
.visual-placeholder svg {
width: 100%;
max-width: 400px;
height: auto;
}
.visual-placeholder .visual-image {
width: 100%;
height: auto;
display: block;
border-radius: 16px;
object-fit: cover;
} .latest-posts-section-white {
background: #f9fafb;
padding: 4rem 0;
width: 100%;
box-sizing: border-box;
position: relative;
clear: both;
}
.latest-posts-section-white .container {
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
box-sizing: border-box;
}
.post-card-white {
background: #fff;
border: 1px solid #e5e7eb;
border-radius: 16px;
overflow: hidden;
transition: var(--transition);
}
.post-card-white:hover {
border-color: var(--primary-color);
box-shadow: var(--shadow-lg);
transform: translateY(-4px);
}
.post-thumbnail-white {
width: 100%;
aspect-ratio: 16/9;
overflow: hidden;
}
.post-thumbnail-white img {
width: 100%;
height: 100%;
object-fit: cover;
transition: var(--transition);
}
.post-card-white:hover .post-thumbnail-white img {
transform: scale(1.05);
}
.post-content-white {
padding: 1.5rem;
}
.post-meta-white {
display: flex;
gap: 1rem;
font-size: 0.8125rem;
color: var(--text-lighter);
margin-bottom: 0.75rem;
}
.post-category-white {
background: #f3f4f6;
padding: 0.25rem 0.75rem;
border-radius: 12px;
font-weight: 600;
color: var(--text-color);
}
.post-title-white {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 0.75rem;
}
.post-title-white a {
color: var(--text-color);
text-decoration: none;
transition: var(--transition);
}
.post-title-white a:hover {
color: var(--primary-color);
}
.post-excerpt-white {
font-size: 0.9375rem;
line-height: 1.7;
color: var(--text-light);
margin-bottom: 1rem;
}
.post-read-more-white {
color: var(--primary-color);
text-decoration: none;
font-weight: 600;
font-size: 0.9375rem;
display: inline-flex;
align-items: center;
gap: 0.5rem;
transition: var(--transition);
}
.post-read-more-white:hover {
gap: 1rem;
} .cta-section-white {
background: linear-gradient(135deg, #f9fafb 0%, #fff 100%);
padding: 4rem 0;
border-top: 1px solid #e5e7eb;
width: 100%;
box-sizing: border-box;
position: relative;
clear: both;
}
.cta-section-white .container {
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
box-sizing: border-box;
}
.cta-content-white {
text-align: center;
}
.cta-title-white {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 900;
margin-bottom: 1rem;
color: var(--text-color);
}
.cta-description-white {
font-size: 1.125rem;
color: var(--text-light);
margin-bottom: 2rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
.btn-cta-large {
display: inline-block;
padding: 1.25rem 3rem;
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: #fff;
text-decoration: none;
border-radius: 12px;
font-weight: 700;
font-size: 1.125rem;
text-transform: uppercase;
letter-spacing: 1px;
box-shadow: var(--shadow-lg);
transition: var(--transition);
}
.btn-cta-large:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-xl);
} .section-header {
text-align: center;
margin-bottom: 3rem;
}
.section-tag {
display: inline-block;
padding: 0.5rem 1rem;
background: #f3f4f6;
color: var(--text-light);
border-radius: 20px;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 1rem;
}
.section-title {
font-size: clamp(2rem, 4vw, 3rem);
font-weight: 900;
color: var(--text-color);
margin: 0;
} @media (max-width: 1024px) {
.hero-layout,
.features-detailed-content {
grid-template-columns: 1fr !important;
gap: 3rem;
}
.experience-content {
grid-template-columns: 1fr 1fr !important;
gap: 3rem;
}
.experience-images {
position: relative;
top: 0;
}
.packages-grid {
grid-template-columns: repeat(2, 1fr);
}
.clients-grid {
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
}
.client-logo-item {
min-height: 100px;
padding: 1.25rem;
}
.client-logo-img {
max-height: 60px;
}
.experience-stats-grid {
grid-template-columns: 1fr !important;
gap: 0.875rem;
}
.experience-stat-card {
padding: 0.875rem;
gap: 0.625rem;
}
.experience-companies {
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
}
.company-logo-item {
min-height: 70px;
padding: 0.875rem 1.25rem;
min-width: auto;
}
.company-logo-img {
max-height: 50px;
}
.hero-section-white .container,
.clients-section .container,
.experience-section .container,
.ai-success-features {
gap: 1.25rem;
}
.ai-success-feature-item {
padding: 0.625rem 1rem;
gap: 0.625rem;
}
.ai-feature-text {
font-size: 0.875rem;
}
.ai-success-section .container,
.service-packages-section .container,
.features-detailed-section .container,
.latest-posts-section-white .container,
.cta-section-white .container {
padding: 0 20px;
}
}
@media (max-width: 768px) {
.packages-grid {
grid-template-columns: 1fr !important;
}
.clients-grid {
grid-template-columns: repeat(2, 1fr) !important;
gap: 1rem;
}
.client-logo-item {
min-height: 90px;
padding: 1rem;
}
.client-logo-img {
max-height: 50px;
}
.experience-stats-grid {
grid-template-columns: 1fr !important;
gap: 0.75rem;
}
.experience-stat-card {
padding: 0.875rem;
gap: 0.625rem;
}
.experience-stat-card .stat-icon {
width: 36px;
height: 36px;
min-width: 36px;
}
.stat-number {
font-size: 1.375rem;
}
.stat-label {
font-size: 0.75rem;
}
.experience-companies-title {
text-align: center;
margin-bottom: 1rem;
}
.experience-companies {
grid-template-columns: repeat(2, 1fr);
gap: 0.75rem;
}
.company-logo-item {
min-height: 60px;
padding: 0.75rem 1rem;
min-width: auto;
}
.company-logo-img {
max-height: 40px;
}
.company-logo-fallback {
font-size: 0.9375rem;
}
.features-detailed-grid {
grid-template-columns: repeat(2, 1fr) !important;
gap: 1.5rem;
}
.hero-layout {
gap: 2rem !important;
}
.experience-content {
grid-template-columns: 1fr !important;
gap: 2.5rem !important;
}
.experience-images {
position: relative;
top: 0;
order: -1;
}
.hero-section-white,
.clients-section,
.experience-section,
.ai-success-section,
.service-packages-section,
.features-detailed-section,
.latest-posts-section-white,
.cta-section-white {
padding-left: 0;
padding-right: 0;
}
.hero-section-white .container,
.clients-section .container,
.experience-section .container,
.ai-success-features {
flex-direction: column;
gap: 0.875rem;
align-items: stretch;
}
.ai-success-feature-item {
width: 100%;
justify-content: flex-start;
padding: 0.875rem 1rem;
}
.ai-feature-text {
white-space: normal;
font-size: 0.875rem;
}
.ai-success-section .container,
.service-packages-section .container,
.features-detailed-section .container,
.latest-posts-section-white .container,
.cta-section-white .container {
padding: 0 16px;
}
} .customer-reviews-section {
background: #ffffff;
padding: 5rem 0;
width: 100%;
box-sizing: border-box;
}
.customer-reviews-section .container {
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
box-sizing: border-box;
}
.reviews-content {
width: 100%;
margin-top: 3rem;
}
.reviews-content iframe,
.reviews-content div[id*="trustindex"],
.reviews-content .trustindex-widget {
width: 100% !important;
max-width: 100% !important;
} @media (max-width: 1024px) {
.customer-reviews-section {
padding: 4rem 0;
}
.customer-reviews-section .container {
padding: 0 20px;
}
}
@media (max-width: 768px) {
.customer-reviews-section {
padding: 3rem 0;
}
.customer-reviews-section .container {
padding: 0 16px;
}
.reviews-content {
margin-top: 2rem;
}
}