:root {
--primary-color: #A1A8B3;
--secondary-color: #C6CBD4;
--tertiary-color: #EAEDEF;
--text-dark: #2c3e50;
--text-light: #ffffff;
--gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
--gradient-accent: linear-gradient(45deg, var(--secondary-color), var(--tertiary-color));
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-dark);
background: var(--tertiary-color);
}
header {
background: var(--gradient-primary);
min-height: 80px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 2rem;
position: relative;
box-shadow: 0 4px 20px rgba(161, 168, 179, 0.3);
backdrop-filter: blur(10px);
}
.logo-container {
display: flex;
align-items: center;
z-index: 100;
position: relative;
}
.logo-container img {
height: 45px;
width: auto;
filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
transition: transform 0.3s ease;
}
.logo-container img:hover {
transform: scale(1.05);
}
.nav-container {
display: flex;
align-items: center;
gap: 2rem;
z-index: 10;
}
.nav-container a {
color: var(--text-light);
text-decoration: none;
font-weight: 500;
font-size: clamp(0.9rem, 2vw, 1.1rem);
padding: 0.8rem 1.2rem;
border-radius: 25px;
transition: all 0.3s ease;
position: relative;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
white-space: nowrap;
}
.nav-container a:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.nav-container a:active {
transform: translateY(0);
}
@media (max-width: 768px) {
header {
flex-direction: column;
padding: 1rem;
min-height: 120px;
gap: 1rem;
}
.nav-container {
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
}
.nav-container a {
font-size: 0.9rem;
padding: 0.6rem 1rem;
}
}
@media (max-width: 480px) {
.nav-container {
gap: 0.5rem;
}
.nav-container a {
font-size: 0.8rem;
padding: 0.5rem 0.8rem;
}
}
footer {
background: var(--gradient-primary);
color: var(--text-light);
padding: 3rem 2rem 1.5rem;
margin-top: auto;
position: relative;
overflow: hidden;
}
footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: 
radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
pointer-events: none;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
position: relative;
z-index: 1;
}
.footer-section h3 {
color: var(--text-light);
margin-bottom: 1rem;
font-size: 1.3rem;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.footer-section p,
.footer-section a {
color: var(--text-light);
text-decoration: none;
margin-bottom: 0.5rem;
display: block;
transition: all 0.3s ease;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.footer-section a:hover {
color: var(--tertiary-color);
transform: translateX(5px);
}
.footer-contact {
background: rgba(255, 255, 255, 0.1);
padding: 1.5rem;
border-radius: 15px;
backdrop-filter: blur(5px);
}
.footer-bottom {
text-align: center;
margin-top: 2rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(255, 255, 255, 0.3);
color: var(--text-light);
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.cookie-consent {
position: fixed;
bottom: 20px;
left: 20px;
right: 20px;
background: var(--gradient-primary);
color: var(--text-light);
padding: 1.5rem;
border-radius: 15px;
box-shadow: 0 8px 32px rgba(0,0,0,0.3);
z-index: 1000;
display: none;
backdrop-filter: blur(10px);
}
.cookie-consent.show {
display: block;
}
.cookie-consent p {
margin-bottom: 1rem;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.cookie-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.cookie-btn {
background: rgba(255, 255, 255, 0.2);
color: var(--text-light);
border: 1px solid rgba(255, 255, 255, 0.3);
padding: 0.6rem 1.2rem;
border-radius: 25px;
cursor: pointer;
transition: all 0.3s ease;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.cookie-btn:hover {
background: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
}
@media (max-width: 768px) {
.cookie-consent {
left: 10px;
right: 10px;
bottom: 10px;
}
.cookie-buttons {
justify-content: center;
}
}
.dev-page-wrapper {
width: 100%;
max-width: 1400px;
margin: 0 auto;
background: linear-gradient(135deg, #EAEDEF 0%, #C6CBD4 100%);
min-height: 100vh;
}
.hero-diagonal-section {
position: relative;
min-height: 85vh;
background: linear-gradient(45deg, #A1A8B3 0%, #C6CBD4 50%, #EAEDEF 100%);
clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
overflow: hidden;
}
.hero-diagonal-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: url('/pages/background_gallery/art_1.jpg');
background-size: cover;
background-position: center center;
background-attachment: fixed;
opacity: 0.15;
z-index: 1;
}
.hero-content-asymmetric {
position: relative;
z-index: 3;
padding: 120px 30px 80px;
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1.2fr 0.8fr;
gap: 60px;
align-items: center;
}
.hero-text-block {
transform: translateY(-40px);
}
.hero-main-title {
font-size: 3.2rem;
font-weight: 700;
color: #2c3e50;
line-height: 1.2;
margin-bottom: 25px;
text-shadow: 0 2px 4px rgba(255,255,255,0.8);
}
.hero-subtitle-text {
font-size: 1.3rem;
color: #34495e;
line-height: 1.6;
margin-bottom: 35px;
font-weight: 300;
}
.hero-cta-container {
display: flex;
gap: 20px;
flex-wrap: wrap;
}
.primary-hero-button {
background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
color: white;
padding: 16px 35px;
border: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
position: relative;
z-index: 10;
}
.primary-hero-button:hover {
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(44, 62, 80, 0.4);
background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
}
.secondary-hero-button {
background: transparent;
color: #34495e;
padding: 16px 35px;
border: 2px solid #34495e;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
position: relative;
z-index: 10;
}
.secondary-hero-button:hover {
background: #34495e;
color: white;
transform: translateY(-2px);
}
.hero-visual-element {
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.floating-stats-card {
background: rgba(255, 255, 255, 0.95);
border-radius: 20px;
padding: 40px 30px;
box-shadow: 0 20px 40px rgba(0,0,0,0.1);
backdrop-filter: blur(10px);
transform: rotate(-3deg);
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: rotate(-3deg) translateY(0px); }
50% { transform: rotate(-3deg) translateY(-20px); }
}
.stats-number {
font-size: 2.5rem;
font-weight: 800;
color: #A1A8B3;
text-align: center;
margin-bottom: 10px;
}
.stats-label {
font-size: 1rem;
color: #34495e;
text-align: center;
font-weight: 500;
}
.testimonial-showcase-section {
padding: 100px 30px;
background: white;
position: relative;
overflow: hidden;
}
.testimonial-showcase-section::before {
content: '';
position: absolute;
top: 0;
right: -50%;
width: 100%;
height: 100%;
background: linear-gradient(45deg, transparent 0%, rgba(161, 168, 179, 0.05) 100%);
clip-path: polygon(50% 0, 100% 0, 100% 100%, 0% 100%);
}
.testimonial-content-wrapper {
max-width: 1200px;
margin: 0 auto;
position: relative;
z-index: 2;
}
.section-title-centered {
font-size: 2.8rem;
font-weight: 700;
color: #2c3e50;
text-align: center;
margin-bottom: 60px;
position: relative;
}
.section-title-centered::after {
content: '';
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 4px;
background: linear-gradient(90deg, #A1A8B3, #C6CBD4);
border-radius: 2px;
}
.testimonial-grid-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 50px;
align-items: start;
}
.featured-testimonial-card {
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
border-radius: 25px;
padding: 45px 40px;
position: relative;
box-shadow: 0 15px 35px rgba(0,0,0,0.08);
border-left: 5px solid #A1A8B3;
}
.testimonial-quote-text {
font-size: 1.2rem;
line-height: 1.7;
color: #2c3e50;
margin-bottom: 30px;
font-style: italic;
}
.testimonial-author-info {
display: flex;
align-items: center;
gap: 20px;
}
.author-image-container {
width: 60px;
height: 60px;
border-radius: 50%;
background-image: url('/pages/background_gallery/art_3.jpg');
background-size: cover;
background-position: center center;
border: 3px solid #A1A8B3;
}
.author-details {
flex: 1;
}
.author-name {
font-size: 1.1rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 5px;
}
.author-title {
font-size: 0.95rem;
color: #6c757d;
}
.testimonial-visual-side {
display: flex;
flex-direction: column;
gap: 30px;
}
.stats-highlight-box {
background: linear-gradient(135deg, #A1A8B3 0%, #C6CBD4 100%);
color: white;
padding: 35px 30px;
border-radius: 20px;
text-align: center;
transform: rotate(2deg);
box-shadow: 0 12px 25px rgba(161, 168, 179, 0.3);
}
.highlight-number {
font-size: 2.2rem;
font-weight: 800;
margin-bottom: 10px;
}
.highlight-text {
font-size: 1.1rem;
opacity: 0.95;
}
.secondary-testimonial-mini {
background: white;
border-radius: 15px;
padding: 25px;
border: 1px solid #e9ecef;
transform: rotate(-1deg);
}
.mini-quote {
font-size: 1rem;
color: #495057;
margin-bottom: 15px;
line-height: 1.6;
}
.mini-author {
font-size: 0.9rem;
color: #6c757d;
font-weight: 500;
}
.transformation-journey-section {
padding: 120px 30px;
background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
color: white;
position: relative;
overflow: hidden;
}
.transformation-journey-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-image: url('/pages/background_gallery/art_2.jpg');
background-size: cover;
background-position: center center;
opacity: 0.1;
z-index: 1;
}
.journey-content-container {
max-width: 1200px;
margin: 0 auto;
position: relative;
z-index: 2;
}
.journey-header-text {
text-align: center;
margin-bottom: 80px;
}
.journey-main-title {
font-size: 2.6rem;
font-weight: 700;
margin-bottom: 20px;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.journey-subtitle {
font-size: 1.3rem;
opacity: 0.9;
font-weight: 300;
max-width: 600px;
margin: 0 auto;
line-height: 1.6;
}
.journey-steps-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
margin-bottom: 60px;
}
.journey-step-card {
background: rgba(255, 255, 255, 0.1);
border-radius: 20px;
padding: 40px 30px;
text-align: center;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
transition: transform 0.3s ease;
}
.journey-step-card:hover {
transform: translateY(-10px);
}
.step-number {
font-size: 2rem;
font-weight: 800;
color: #A1A8B3;
margin-bottom: 20px;
}
.step-title {
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 15px;
}
.step-description {
font-size: 1rem;
line-height: 1.6;
opacity: 0.9;
}
.journey-cta-center {
text-align: center;
}
.journey-cta-button {
background: linear-gradient(135deg, #A1A8B3 0%, #C6CBD4 100%);
color: #2c3e50;
padding: 18px 40px;
border: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
box-shadow: 0 6px 20px rgba(161, 168, 179, 0.4);
position: relative;
z-index: 10;
}
.journey-cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(161, 168, 179, 0.5);
background: linear-gradient(135deg, #C6CBD4 0%, #EAEDEF 100%);
}
.methodology-preview-section {
padding: 100px 30px;
background: #f8f9fa;
position: relative;
}
.methodology-container {
max-width: 1200px;
margin: 0 auto;
}
.methodology-header {
text-align: center;
margin-bottom: 70px;
}
.methodology-title {
font-size: 2.6rem;
font-weight: 700;
color: #2c3e50;
margin-bottom: 20px;
}
.methodology-intro {
font-size: 1.2rem;
color: #495057;
max-width: 700px;
margin: 0 auto;
line-height: 1.7;
}
.methodology-features-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 40px;
}
.feature-card-advanced {
background: white;
border-radius: 20px;
padding: 40px 35px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
position: relative;
overflow: hidden;
transition: all 0.3s ease;
}
.feature-card-advanced::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, #A1A8B3, #C6CBD4);
}
.feature-card-advanced:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.feature-icon-shape {
width: 60px;
height: 60px;
background: linear-gradient(135deg, #A1A8B3, #C6CBD4);
border-radius: 50%;
margin-bottom: 25px;
position: relative;
}
.feature-icon-shape::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 24px;
height: 24px;
background: white;
border-radius: 50%;
}
.feature-title-text {
font-size: 1.4rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 15px;
}
.feature-description-text {
font-size: 1rem;
color: #495057;
line-height: 1.6;
}
.success-stories-section {
padding: 100px 30px;
background: linear-gradient(135deg, #EAEDEF 0%, white 100%);
}
.success-container {
max-width: 1200px;
margin: 0 auto;
}
.success-header-area {
margin-bottom: 60px;
}
.success-main-title {
font-size: 2.6rem;
font-weight: 700;
color: #2c3e50;
margin-bottom: 20px;
text-align: center;
}
.success-stories-layout {
display: grid;
grid-template-columns: 1.2fr 0.8fr;
gap: 50px;
align-items: center;
}
.primary-success-story {
background: white;
border-radius: 25px;
padding: 50px 45px;
box-shadow: 0 15px 35px rgba(0,0,0,0.1);
position: relative;
}
.story-quote-large {
font-size: 1.3rem;
line-height: 1.7;
color: #2c3e50;
margin-bottom: 35px;
font-style: italic;
}
.story-author-section {
display: flex;
align-items: center;
gap: 25px;
}
.story-author-image {
width: 70px;
height: 70px;
border-radius: 50%;
background-image: url('/pages/background_gallery/art_4.jpg');
background-size: cover;
background-position: center center;
border: 3px solid #A1A8B3;
}
.story-author-info {
flex: 1;
}
.story-author-name {
font-size: 1.2rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 8px;
}
.story-author-background {
font-size: 1rem;
color: #6c757d;
line-height: 1.5;
}
.success-metrics-sidebar {
display: flex;
flex-direction: column;
gap: 30px;
}
.metric-card-compact {
background: linear-gradient(135deg, #A1A8B3 0%, #C6CBD4 100%);
color: white;
padding: 30px 25px;
border-radius: 18px;
text-align: center;
box-shadow: 0 8px 20px rgba(161, 168, 179, 0.3);
}
.metric-value {
font-size: 2rem;
font-weight: 800;
margin-bottom: 8px;
}
.metric-label {
font-size: 1rem;
opacity: 0.95;
}
.final-cta-section {
padding: 120px 30px;
background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
color: white;
text-align: center;
position: relative;
}
.final-cta-container {
max-width: 800px;
margin: 0 auto;
position: relative;
z-index: 2;
}
.final-cta-title {
font-size: 2.8rem;
font-weight: 700;
margin-bottom: 25px;
text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.final-cta-text {
font-size: 1.3rem;
line-height: 1.6;
margin-bottom: 40px;
opacity: 0.95;
}
.final-cta-buttons {
display: flex;
justify-content: center;
gap: 25px;
flex-wrap: wrap;
}
.primary-final-button {
background: linear-gradient(135deg, #A1A8B3 0%, #C6CBD4 100%);
color: #2c3e50;
padding: 18px 40px;
border: none;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
box-shadow: 0 6px 20px rgba(161, 168, 179, 0.4);
position: relative;
z-index: 10;
}
.primary-final-button:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(161, 168, 179, 0.5);
}
.secondary-final-button {
background: transparent;
color: white;
padding: 18px 40px;
border: 2px solid white;
border-radius: 50px;
font-size: 1.1rem;
font-weight: 600;
text-decoration: none;
display: inline-block;
transition: all 0.3s ease;
position: relative;
z-index: 10;
}
.secondary-final-button:hover {
background: white;
color: #2c3e50;
transform: translateY(-2px);
}
@media (max-width: 768px) {
.dev-page-wrapper {
padding: 0;
}
.hero-diagonal-section {
min-height: 70vh;
clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}
.hero-content-asymmetric {
grid-template-columns: 1fr;
gap: 40px;
padding: 80px 20px 60px;
text-align: center;
}
.hero-main-title {
font-size: 2.2rem;
margin-bottom: 20px;
}
.hero-subtitle-text {
font-size: 1.1rem;
margin-bottom: 25px;
}
.hero-cta-container {
justify-content: center;
flex-direction: column;
align-items: center;
}
.primary-hero-button,
.secondary-hero-button {
width: 100%;
max-width: 280px;
text-align: center;
}
.floating-stats-card {
padding: 30px 25px;
transform: rotate(0deg);
}
.testimonial-showcase-section {
padding: 60px 20px;
}
.section-title-centered {
font-size: 2.2rem;
margin-bottom: 40px;
}
.testimonial-grid-layout {
grid-template-columns: 1fr;
gap: 30px;
}
.featured-testimonial-card {
padding: 30px 25px;
}
.testimonial-quote-text {
font-size: 1.1rem;
}
.stats-highlight-box,
.secondary-testimonial-mini {
transform: rotate(0deg);
}
.transformation-journey-section {
padding: 80px 20px;
}
.journey-main-title {
font-size: 2.1rem;
}
.journey-subtitle {
font-size: 1.1rem;
}
.journey-steps-grid {
grid-template-columns: 1fr;
gap: 25px;
margin-bottom: 40px;
}
.journey-step-card {
padding: 30px 25px;
}
.methodology-preview-section {
padding: 60px 20px;
}
.methodology-title {
font-size: 2.1rem;
}
.methodology-intro {
font-size: 1.1rem;
}
.methodology-features-grid {
grid-template-columns: 1fr;
gap: 25px;
}
.feature-card-advanced {
padding: 30px 25px;
}
.success-stories-section {
padding: 60px 20px;
}
.success-main-title {
font-size: 2.1rem;
}
.success-stories-layout {
grid-template-columns: 1fr;
gap: 30px;
}
.primary-success-story {
padding: 35px 30px;
}
.story-quote-large {
font-size: 1.1rem;
}
.final-cta-section {
padding: 80px 20px;
}
.final-cta-title {
font-size: 2.2rem;
}
.final-cta-text {
font-size: 1.1rem;
}
.final-cta-buttons {
flex-direction: column;
align-items: center;
}
.primary-final-button,
.secondary-final-button {
width: 100%;
max-width: 280px;
}
}