This is a title
This is a title
/* =========================================================
IGNITE DIGITAL — AGENCY WEBSITE STYLES
========================================================= */
:root {
--primary: #D72638;
--primary-rgb: 215, 38, 56;
--secondary: #1F2937;
--accent: #F8F9FA;
--bg: #FFFFFF;
--cta-hover: #B91C1C;
--text-main: #1F2937;
--text-muted: #5B6472;
--border-color: #E7E9EC;
--font-body: 'Poppins', sans-serif;
--radius-sm: 8px;
--radius-md: 16px;
--radius-lg: 28px;
--shadow-sm: 0 4px 14px rgba(31, 41, 55, 0.06);
--shadow-md: 0 12px 32px rgba(31, 41, 55, 0.10);
--shadow-red: 0 14px 30px rgba(var(--primary-rgb), 0.28);
--ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
font-family: var(--font-body);
color: var(--text-main);
background: var(--bg);
line-height: 1.6;
overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 24px;
}
.accent-text { color: var(--primary); }
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.001ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.001ms !important;
scroll-behavior: auto !important;
}
}
/* =========================================================
TYPOGRAPHY HELPERS
========================================================= */
.eyebrow {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 0.8rem;
font-weight: 600;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--primary);
margin-bottom: 14px;
}
.eyebrow::before {
content: '';
width: 22px;
height: 2px;
background: var(--primary);
display: inline-block;
}
.section-title {
font-size: clamp(1.9rem, 3.4vw, 2.75rem);
font-weight: 800;
letter-spacing: -0.02em;
line-height: 1.15;
color: var(--secondary);
margin-bottom: 18px;
}
.section-text {
font-size: 1.02rem;
color: var(--text-muted);
font-weight: 400;
max-width: 560px;
}
.section-head {
max-width: 680px;
margin: 0 auto 56px;
text-align: center;
}
.section-head .section-text { margin: 0 auto; }
/* =========================================================
BUTTONS
========================================================= */
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 10px;
padding: 15px 30px;
border-radius: 100px;
font-weight: 600;
font-size: 0.96rem;
transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s ease, color 0.25s ease;
white-space: nowrap;
}
.btn i { font-size: 0.85em; transition: transform 0.3s var(--ease); }
.btn:hover i { transform: translateX(3px); }
.btn--primary {
background: var(--primary);
color: #fff;
box-shadow: var(--shadow-red);
}
.btn--primary:hover { background: var(--cta-hover); transform: translateY(-3px); box-shadow: 0 18px 36px rgba(var(--primary-rgb), 0.35); }
.btn--ghost {
background: transparent;
color: var(--secondary);
border: 1.5px solid var(--border-color);
}
.btn--ghost:hover { border-color: var(--secondary); transform: translateY(-3px); }
.btn--outline {
background: transparent;
color: var(--primary);
border: 1.5px solid var(--primary);
width: 100%;
}
.btn--outline:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }
.btn--light {
background: #fff;
color: var(--primary);
}
.btn--light:hover { background: var(--secondary); color: #fff; transform: translateY(-3px); }
.btn--block { width: 100%; }
/* =========================================================
NAVBAR
========================================================= */
.navbar {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 900;
padding: 22px 0;
transition: all 0.4s var(--ease);
}
.navbar.is-scrolled {
padding: 14px 0;
background: rgba(255, 255, 255, 0.85);
backdrop-filter: blur(14px);
box-shadow: 0 2px 20px rgba(31,41,55,0.06);
}
.navbar__inner {
display: flex;
align-items: center;
justify-content: space-between;
}
.navbar__logo {
display: flex;
align-items: center;
gap: 10px;
font-size: 1.3rem;
font-weight: 800;
color: var(--secondary);
letter-spacing: -0.01em;
}
.navbar__logo-mark {
width: 34px;
height: 34px;
border-radius: 10px;
background: linear-gradient(135deg, var(--primary), var(--cta-hover));
color: #fff;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.9rem;
box-shadow: var(--shadow-red);
}
.navbar__nav {
display: flex;
align-items: center;
gap: 34px;
}
.nav-link {
font-size: 0.94rem;
font-weight: 500;
color: var(--secondary);
position: relative;
padding: 4px 0;
}
.nav-link::after {
content: '';
position: absolute;
left: 0; bottom: -2px;
width: 0;
height: 2px;
background: var(--primary);
transition: width 0.3s var(--ease);
}
.nav-link:hover::after { width: 100%; }
.nav-link--cta {
background: var(--secondary);
color: #fff;
padding: 10px 22px;
border-radius: 100px;
font-weight: 600;
transition: background 0.3s ease, transform 0.3s var(--ease);
}
.nav-link--cta::after { display: none; }
.nav-link--cta:hover { background: var(--primary); transform: translateY(-2px); }
.navbar__toggle {
display: none;
flex-direction: column;
gap: 5px;
width: 28px;
}
.navbar__toggle span {
height: 2px;
background: var(--secondary);
border-radius: 2px;
transition: all 0.3s var(--ease);
}
/* =========================================================
HERO
========================================================= */
.hero {
position: relative;
min-height: 100vh;
display: flex;
align-items: center;
padding: 140px 0 100px;
background: linear-gradient(180deg, #FFFFFF 0%, #FFF6F7 100%);
overflow: hidden;
}
.hero__canvas {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
z-index: 0;
opacity: 0.55;
}
.hero__glow {
position: absolute;
top: -20%;
right: -10%;
width: 55vw;
height: 55vw;
max-width: 700px;
max-height: 700px;
background: radial-gradient(circle, rgba(var(--primary-rgb), 0.16) 0%, rgba(var(--primary-rgb), 0) 70%);
z-index: 0;
animation: float-glow 12s ease-in-out infinite;
}
@keyframes float-glow {
0%, 100% { transform: translate(0, 0) scale(1); }
50% { transform: translate(-30px, 40px) scale(1.08); }
}
.hero__inner {
position: relative;
z-index: 1;
max-width: 780px;
}
.hero__title {
font-size: clamp(2.6rem, 6vw, 4.6rem);
font-weight: 900;
letter-spacing: -0.03em;
line-height: 1.05;
color: var(--secondary);
margin-bottom: 24px;
}
.hero__title-underline {
position: relative;
color: var(--primary);
white-space: nowrap;
}
.hero__title-underline::after {
content: '';
position: absolute;
left: 0; bottom: 6px;
width: 100%;
height: 14px;
background: rgba(var(--primary-rgb), 0.16);
z-index: -1;
border-radius: 4px;
}
.hero__subtitle {
font-size: 1.15rem;
color: var(--text-muted);
max-width: 560px;
margin-bottom: 38px;
}
.hero__actions {
display: flex;
gap: 16px;
flex-wrap: wrap;
margin-bottom: 64px;
}
.hero__stats {
display: flex;
gap: 48px;
flex-wrap: wrap;
}
.hero__stat {
display: flex;
flex-direction: column;
}
.hero__stat-num, .hero__stat-plus {
font-size: 2.1rem;
font-weight: 800;
color: var(--secondary);
display: inline-block;
}
.hero__stat-plus { color: var(--primary); }
.hero__stat-label {
font-size: 0.86rem;
color: var(--text-muted);
margin-top: 2px;
}
.hero__scroll-cue {
position: absolute;
bottom: 34px;
left: 50%;
transform: translateX(-50%);
width: 26px;
height: 42px;
border: 2px solid rgba(31,41,55,0.25);
border-radius: 20px;
z-index: 1;
}
.hero__scroll-cue span {
position: absolute;
top: 8px; left: 50%;
width: 4px; height: 4px;
background: var(--primary);
border-radius: 50%;
transform: translateX(-50%);
animation: scroll-cue 1.8s infinite;
}
@keyframes scroll-cue {
0% { opacity: 1; top: 8px; }
70% { opacity: 0; top: 22px; }
100% { opacity: 0; top: 22px; }
}
/* Reveal on scroll */
[data-reveal] {
opacity: 0;
transform: translateY(24px);
transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible {
opacity: 1;
transform: translateY(0);
}
/* =========================================================
MARQUEE
========================================================= */
.marquee {
background: var(--secondary);
overflow: hidden;
padding: 18px 0;
}
.marquee__track {
display: flex;
gap: 20px;
white-space: nowrap;
width: max-content;
animation: marquee-scroll 26s linear infinite;
}
.marquee__track span {
font-size: 1rem;
font-weight: 600;
letter-spacing: 0.04em;
color: rgba(248, 249, 250, 0.65);
text-transform: uppercase;
}
.marquee__track span:nth-child(odd) { color: var(--primary); }
@keyframes marquee-scroll {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
/* =========================================================
ABOUT
========================================================= */
.about { padding: 120px 0; }
.about__grid {
display: grid;
grid-template-columns: 0.9fr 1.1fr;
gap: 72px;
align-items: center;
}
.about__media { position: relative; }
.about__frame {
border-radius: var(--radius-lg);
overflow: hidden;
aspect-ratio: 4/5;
box-shadow: var(--shadow-md);
}
.about__frame img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
position: absolute;
bottom: -24px;
right: -24px;
background: #fff;
border-radius: var(--radius-md);
box-shadow: var(--shadow-md);
padding: 16px 20px;
display: flex;
align-items: center;
gap: 12px;
}
.about__badge i {
width: 42px; height: 42px;
background: rgba(var(--primary-rgb), 0.1);
color: var(--primary);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
}
.about__badge strong { display: block; font-size: 0.92rem; color: var(--secondary); }
.about__badge span { font-size: 0.78rem; color: var(--text-muted); }
.about__points { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.about__point { display: flex; align-items: flex-start; gap: 12px; font-size: 0.96rem; color: var(--text-main); }
.about__point i {
width: 22px; height: 22px;
background: rgba(var(--primary-rgb), 0.1);
color: var(--primary);
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font-size: 0.7rem;
flex-shrink: 0;
margin-top: 2px;
}
/* =========================================================
SERVICES
========================================================= */
.services { padding: 120px 0; background: var(--accent); }
.services__grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 26px;
}
.service-card {
background: #fff;
border-radius: var(--radius-md);
padding: 38px 30px;
border: 1px solid var(--border-color);
transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s ease;
}
.service-card:hover {
transform: translateY(-8px);
box-shadow: var(--shadow-md);
border-color: transparent;
}
.service-card__icon {
width: 54px; height: 54px;
border-radius: 14px;
background: linear-gradient(135deg, var(--primary), var(--cta-hover));
color: #fff;
display: flex; align-items: center; justify-content: center;
font-size: 1.3rem;
margin-bottom: 22px;
transition: transform 0.4s var(--ease);
}
.service-card:hover .service-card__icon { transform: rotate(-8deg) scale(1.08); }
.service-card h3 { font-size: 1.18rem; font-weight: 700; color: var(--secondary); margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: var(--text-muted); }
/* =========================================================
WHY CHOOSE US
========================================================= */
.why { padding: 120px 0; }
.why__grid {
display: grid;
grid-template-columns: 0.85fr 1.15fr;
gap: 60px;
align-items: center;
}
.why__content .section-text { margin-bottom: 32px; }
.why__cards {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
}
.why-card {
background: var(--secondary);
color: #fff;
border-radius: var(--radius-md);
padding: 30px 24px;
transition: transform 0.4s var(--ease);
}
.why-card:nth-child(2n) { background: var(--primary); }
.why-card:hover { transform: translateY(-6px); }
.why-card__icon {
width: 44px; height: 44px;
border-radius: 12px;
background: rgba(255,255,255,0.14);
display: flex; align-items: center; justify-content: center;
margin-bottom: 18px;
font-size: 1.05rem;
}
.why-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 0.86rem; color: rgba(255,255,255,0.75); }
/* =========================================================
PORTFOLIO
========================================================= */
.portfolio { padding: 120px 0; background: var(--accent); }
.portfolio__filters {
display: flex;
justify-content: center;
gap: 12px;
flex-wrap: wrap;
margin-bottom: 46px;
}
.filter-btn {
padding: 10px 22px;
border-radius: 100px;
font-size: 0.88rem;
font-weight: 600;
color: var(--text-muted);
border: 1.5px solid var(--border-color);
background: #fff;
transition: all 0.3s ease;
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.is-active { background: var(--primary); color: #fff; border-color: var(--primary); }
.portfolio__grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.portfolio-card {
position: relative;
border-radius: var(--radius-md);
overflow: hidden;
aspect-ratio: 4/3.2;
box-shadow: var(--shadow-sm);
transition: opacity 0.4s ease, transform 0.4s ease;
}
.portfolio-card img {
width: 100%; height: 100%; object-fit: cover;
transition: transform 0.6s var(--ease);
}
.portfolio-card:hover img { transform: scale(1.08); }
.portfolio-card__overlay {
position: absolute;
inset: 0;
background: linear-gradient(0deg, rgba(31,41,55,0.92) 0%, rgba(31,41,55,0.1) 55%, rgba(31,41,55,0) 100%);
color: #fff;
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 24px;
}
.portfolio-card__tag {
align-self: flex-start;
background: var(--primary);
font-size: 0.72rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.06em;
padding: 5px 12px;
border-radius: 100px;
margin-bottom: 12px;
}
.portfolio-card__overlay h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 6px; }
.portfolio-card__overlay p { font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.portfolio-card.is-hidden {
display: none;
}
/* =========================================================
TESTIMONIALS
========================================================= */
.testimonials { padding: 120px 0; }
.testimonial-slider {
max-width: 720px;
margin: 0 auto;
text-align: center;
}
.testimonial-track { position: relative; min-height: 260px; }
.testimonial-card {
position: absolute;
inset: 0;
opacity: 0;
transform: translateY(16px);
pointer-events: none;
transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.testimonial-card.is-active {
opacity: 1;
transform: translateY(0);
pointer-events: auto;
position: relative;
}
.testimonial-quote {
font-size: 1.8rem;
color: rgba(var(--primary-rgb), 0.25);
margin-bottom: 18px;
}
.testimonial-card p {
font-size: 1.28rem;
font-weight: 500;
color: var(--secondary);
line-height: 1.55;
margin-bottom: 28px;
}
.testimonial-author {
display: flex;
align-items: center;
justify-content: center;
gap: 14px;
}
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author strong { display: block; font-size: 0.95rem; color: var(--secondary); }
.testimonial-author span { font-size: 0.82rem; color: var(--text-muted); }
.testimonial-nav {
display: flex;
align-items: center;
justify-content: center;
gap: 22px;
margin-top: 40px;
}
.testimonial-nav button {
width: 44px; height: 44px;
border-radius: 50%;
border: 1.5px solid var(--border-color);
color: var(--secondary);
display: flex; align-items: center; justify-content: center;
transition: all 0.3s ease;
}
.testimonial-nav button:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dots span {
width: 8px; height: 8px;
border-radius: 50%;
background: var(--border-color);
cursor: pointer;
transition: all 0.3s ease;
}
.testimonial-dots span.is-active { background: var(--primary); width: 22px; border-radius: 4px; }
/* =========================================================
PRICING
========================================================= */
.pricing { padding: 120px 0; background: var(--accent); }
.pricing__grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 26px;
align-items: stretch;
}
.pricing-card {
background: #fff;
border-radius: var(--radius-md);
padding: 40px 32px;
border: 1px solid var(--border-color);
display: flex;
flex-direction: column;
position: relative;
transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.pricing-card--featured {
background: var(--secondary);
color: #fff;
border-color: transparent;
transform: scale(1.04);
box-shadow: var(--shadow-md);
}
.pricing-card--featured:hover { transform: scale(1.04) translateY(-6px); }
.pricing-card__badge {
position: absolute;
top: -14px; left: 50%;
transform: translateX(-50%);
background: var(--primary);
color: #fff;
font-size: 0.72rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
padding: 6px 16px;
border-radius: 100px;
}
.pricing-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.pricing-card__desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 24px; min-height: 42px; }
.pricing-card--featured .pricing-card__desc { color: rgba(255,255,255,0.7); }
.pricing-card__price {
font-size: 2.4rem;
font-weight: 800;
margin-bottom: 26px;
}
.pricing-card__price span { font-size: 2.4rem; }
.pricing-card__list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; flex: 1; }
.pricing-card__list li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.pricing-card__list i { color: var(--primary); font-size: 0.8rem; }
.pricing-card--featured .pricing-card__list i { color: #fff; }
.pricing-card--featured .btn--outline {
border-color: #fff;
color: #fff;
}
.pricing-card--featured .btn--outline:hover { background: #fff; color: var(--secondary); }
/* =========================================================
CTA BANNER
========================================================= */
.cta-banner {
background: linear-gradient(120deg, var(--primary) 0%, var(--cta-hover) 100%);
padding: 90px 0;
text-align: center;
position: relative;
overflow: hidden;
}
.cta-banner::before {
content: '';
position: absolute;
width: 500px; height: 500px;
border-radius: 50%;
border: 60px solid rgba(255,255,255,0.06);
top: -220px; right: -160px;
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner h2 {
font-size: clamp(1.7rem, 3.4vw, 2.5rem);
font-weight: 800;
color: #fff;
margin-bottom: 14px;
}
.cta-banner p {
color: rgba(255,255,255,0.85);
max-width: 520px;
margin: 0 auto 32px;
font-size: 1.02rem;
}
/* =========================================================
CONTACT
========================================================= */
.contact { padding: 120px 0; }
.contact__grid {
display: grid;
grid-template-columns: 0.85fr 1.15fr;
gap: 64px;
}
.contact__info .section-text { margin-bottom: 34px; }
.contact__detail {
display: flex;
align-items: center;
gap: 14px;
margin-bottom: 18px;
font-size: 0.95rem;
color: var(--text-main);
}
.contact__detail i {
width: 38px; height: 38px;
background: rgba(var(--primary-rgb), 0.1);
color: var(--primary);
border-radius: 10px;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
}
.contact__social { display: flex; gap: 12px; margin-top: 30px; }
.contact__social a {
width: 40px; height: 40px;
border-radius: 50%;
border: 1.5px solid var(--border-color);
display: flex; align-items: center; justify-content: center;
color: var(--secondary);
transition: all 0.3s ease;
}
.contact__social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; transform: translateY(-3px); }
.contact__form {
background: var(--accent);
border-radius: var(--radius-lg);
padding: 44px;
border: 1px solid var(--border-color);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { margin-bottom: 20px; display: flex; flex-direction: column; }
.form-field label { font-size: 0.84rem; font-weight: 600; color: var(--secondary); margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
padding: 13px 16px;
border-radius: var(--radius-sm);
border: 1.5px solid var(--border-color);
background: #fff;
transition: border-color 0.3s ease, box-shadow 0.3s ease;
resize: vertical;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}
.form-field.has-error input,
.form-field.has-error textarea { border-color: var(--primary); }
.form-error {
font-size: 0.78rem;
color: var(--primary);
margin-top: 6px;
min-height: 14px;
}
.form-success {
display: none;
align-items: center;
gap: 8px;
margin-top: 18px;
font-size: 0.9rem;
color: #16794a;
font-weight: 500;
}
.form-success.is-visible { display: flex; }
/* =========================================================
FOOTER
========================================================= */
.footer { background: var(--secondary); color: rgba(255,255,255,0.7); padding-top: 80px; }
.footer__grid {
display: grid;
grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
gap: 40px;
padding-bottom: 60px;
border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand p { margin: 16px 0 20px; font-size: 0.9rem; max-width: 280px; }
.footer .navbar__logo { color: #fff; }
.footer__col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 18px; }
.footer__col a { display: block; font-size: 0.88rem; margin-bottom: 12px; transition: color 0.25s ease; }
.footer__col a:hover { color: var(--primary); }
.footer__col p { font-size: 0.86rem; margin-bottom: 16px; }
.footer__newsletter { display: flex; border-radius: 100px; overflow: hidden; background: rgba(255,255,255,0.08); }
.footer__newsletter input {
flex: 1;
background: transparent;
border: none;
padding: 12px 18px;
color: #fff;
font-size: 0.86rem;
}
.footer__newsletter input::placeholder { color: rgba(255,255,255,0.45); }
.footer__newsletter button {
background: var(--primary);
color: #fff;
width: 44px;
display: flex; align-items: center; justify-content: center;
transition: background 0.3s ease;
}
.footer__newsletter button:hover { background: var(--cta-hover); }
.footer__bottom { padding: 24px 0; }
.footer__bottom-inner {
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 10px;
font-size: 0.82rem;
}
.footer__legal a { color: rgba(255,255,255,0.6); }
.footer__legal a:hover { color: #fff; }
/* =========================================================
BACK TO TOP
========================================================= */
.back-to-top {
position: fixed;
bottom: 28px; right: 28px;
width: 46px; height: 46px;
border-radius: 50%;
background: var(--secondary);
color: #fff;
display: flex; align-items: center; justify-content: center;
box-shadow: var(--shadow-md);
opacity: 0;
visibility: hidden;
transform: translateY(10px);
transition: all 0.35s var(--ease);
z-index: 800;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--primary); }
/* =========================================================
RESPONSIVE
========================================================= */
@media (max-width: 1024px) {
.about__grid, .why__grid, .contact__grid { grid-template-columns: 1fr; }
.about__media { max-width: 460px; margin: 0 auto; }
.services__grid { grid-template-columns: repeat(2, 1fr); }
.portfolio__grid { grid-template-columns: repeat(2, 1fr); }
.pricing__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
.pricing-card--featured { transform: none; }
.pricing-card--featured:hover { transform: translateY(-6px); }
.footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
.navbar__nav {
position: fixed;
top: 0; right: -100%;
width: 78%;
max-width: 320px;
height: 100vh;
background: #fff;
flex-direction: column;
justify-content: center;
align-items: flex-start;
gap: 28px;
padding: 40px;
box-shadow: -10px 0 40px rgba(0,0,0,0.08);
transition: right 0.4s var(--ease);
}
.navbar__nav.is-open { right: 0; }
.navbar__toggle { display: flex; }
.navbar__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.is-open span:nth-child(2) { opacity: 0; }
.navbar__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hero__stats { gap: 30px; }
.form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
.services__grid, .portfolio__grid { grid-template-columns: 1fr; }
.why__cards { grid-template-columns: 1fr; }
.footer__grid { grid-template-columns: 1fr; }
.about__badge { position: static; margin-top: -40px; margin-left: 16px; width: fit-content; }
.contact__form { padding: 28px; }
.hero { padding-top: 120px; }
}