:root {
    --color-sand: #E8DCC4;
    --color-terracotta: #C17855;
    --color-sage: #8B9D83;
    --color-clay: #A68572;
    --color-stone: #5A5550;
    --color-cream: #F5F1E8;
    --color-earth: #4A4238;
    
    --shadow-sm: 0 1px 3px rgba(74, 66, 56, 0.08), 0 1px 2px rgba(74, 66, 56, 0.06);
    --shadow-md: 0 4px 8px rgba(74, 66, 56, 0.1), 0 2px 4px rgba(74, 66, 56, 0.06);
    --shadow-lg: 0 10px 25px rgba(74, 66, 56, 0.12), 0 4px 10px rgba(74, 66, 56, 0.08);
    --shadow-xl: 0 20px 40px rgba(74, 66, 56, 0.15), 0 8px 16px rgba(74, 66, 56, 0.1);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
    font-family: 'Wix Madefor Text', sans-serif;
    color: var(--color-earth);
    background-color: var(--color-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Wix Madefor Display', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.nav-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(245, 241, 232, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 42px;
    width: auto;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--color-earth);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger:hover span {
    background: var(--color-terracotta);
}

/* Side Drawer */
.side-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    background: var(--color-cream);
    box-shadow: var(--shadow-xl);
    z-index: 1002;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.side-drawer.active {
    left: 0;
}

.drawer-content {
    padding: 80px 32px 32px;
}

.drawer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--color-earth);
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}

.drawer-close:hover {
    color: var(--color-terracotta);
    transform: rotate(90deg);
}

.drawer-nav {
    list-style: none;
}

.drawer-nav li {
    margin-bottom: 8px;
}

.drawer-nav a {
    display: block;
    padding: 16px 20px;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-earth);
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
}

.drawer-nav a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--color-terracotta);
    transition: var(--transition);
}

.drawer-nav a:hover,
.drawer-nav a.active {
    background: rgba(193, 120, 85, 0.1);
    color: var(--color-terracotta);
    padding-left: 32px;
}

.drawer-nav a:hover::before,
.drawer-nav a.active::before {
    width: 16px;
    left: 12px;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(74, 66, 56, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1001;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sticky Contact Button */
.sticky-contact {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 58px;
    height: 58px;
    background: var(--color-terracotta);
    color: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.sticky-contact:hover {
    background: var(--color-clay);
    transform: scale(1.1) rotate(8deg);
    box-shadow: var(--shadow-xl);
}

/* Hero Comparison */
.hero-comparison {
    margin-top: 82px;
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
}

.hero-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    position: relative;
}

.hero-problem {
    background: linear-gradient(135deg, rgba(166, 133, 114, 0.15) 0%, rgba(193, 120, 85, 0.1) 100%);
}

.hero-solution {
    background: linear-gradient(135deg, rgba(139, 157, 131, 0.15) 0%, rgba(193, 120, 85, 0.08) 100%);
}

.hero-content {
    max-width: 520px;
}

.hero-label {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(245, 241, 232, 0.9);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.hero-subtitle {
    font-size: clamp(22px, 3vw, 28px);
    color: var(--color-stone);
    margin-bottom: 24px;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 16px;
    color: var(--color-stone);
}

.problem-list i {
    color: var(--color-terracotta);
    font-size: 18px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 28px;
    line-height: 1.1;
}

.typed-container {
    color: var(--color-terracotta);
    position: relative;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 36px;
    color: var(--color-stone);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--color-terracotta);
    color: var(--color-cream);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--color-clay);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--color-terracotta);
    border-color: var(--color-terracotta);
}

.btn-secondary:hover {
    background: var(--color-terracotta);
    color: var(--color-cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 18px 42px;
    font-size: 18px;
}

/* Sections */
section {
    padding: 90px 0;
}

.section-intro {
    background: var(--color-cream);
    padding: 80px 0;
}

.intro-content {
    text-align: center;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 24px;
    color: var(--color-earth);
}

.intro-text {
    font-size: 19px;
    line-height: 1.8;
    color: var(--color-stone);
    max-width: 880px;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 19px;
    color: var(--color-stone);
    margin-top: 16px;
}

/* Services Grid */
.section-services {
    background: linear-gradient(180deg, var(--color-cream) 0%, rgba(232, 220, 196, 0.3) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--color-cream);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(193, 120, 85, 0.2);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(193, 120, 85, 0.15), rgba(139, 157, 131, 0.15));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--color-terracotta);
    margin-bottom: 24px;
}

.service-title {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--color-earth);
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-stone);
}

/* Process Section */
.section-process {
    background: var(--color-cream);
}

.process-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.process-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-step {
    display: flex;
    gap: 24px;
}

.step-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-terracotta);
    opacity: 0.3;
    flex-shrink: 0;
}

.step-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--color-earth);
}

.step-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-stone);
}

/* Comparison Section */
.section-comparison {
    background: rgba(232, 220, 196, 0.3);
    padding-top: 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.comparison-card {
    background: var(--color-cream);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.comparison-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.comparison-title {
    font-size: 24px;
    margin-bottom: 28px;
    color: var(--color-earth);
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(193, 120, 85, 0.2);
}

.comparison-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--color-terracotta);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comparison-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.comparison-content li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-stone);
}

.comparison-content li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: var(--color-terracotta);
    font-size: 18px;
}

/* Expertise Section */
.section-expertise {
    background: var(--color-cream);
}

.expertise-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.expertise-intro {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--color-stone);
}

.expertise-items {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.expertise-item {
    display: flex;
    gap: 20px;
}

.expertise-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(193, 120, 85, 0.15), rgba(139, 157, 131, 0.15));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-terracotta);
    font-size: 22px;
    flex-shrink: 0;
}

.expertise-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-earth);
}

.expertise-text p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-stone);
}

.expertise-visual img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* Projects Grid */
.section-projects {
    background: linear-gradient(180deg, rgba(232, 220, 196, 0.3) 0%, var(--color-cream) 100%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 36px;
}

.project-card {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.project-image {
    height: 240px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.08);
}

.project-content {
    padding: 32px 28px;
}

.project-title {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--color-earth);
}

.project-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-stone);
}

/* CTA Section */
.section-cta {
    background: linear-gradient(135deg, rgba(193, 120, 85, 0.15), rgba(139, 157, 131, 0.15));
    text-align: center;
}

.cta-content {
    max-width: 720px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 20px;
    color: var(--color-earth);
}

.cta-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 36px;
    color: var(--color-stone);
}

/* Footer */
.footer {
    background: var(--color-earth);
    color: var(--color-sand);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    height: 38px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-sand);
    opacity: 0.85;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    color: var(--color-cream);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 15px;
    color: var(--color-sand);
    opacity: 0.85;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-cream);
    padding-left: 6px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
    color: var(--color-sand);
    opacity: 0.85;
}

.footer-contact i {
    color: var(--color-terracotta);
    margin-top: 3px;
}

.footer-contact a:hover {
    opacity: 1;
    color: var(--color-cream);
}

.footer-bottom {
    border-top: 1px solid rgba(232, 220, 196, 0.2);
    padding-top: 28px;
    text-align: center;
    font-size: 14px;
    color: var(--color-sand);
    opacity: 0.7;
}

/* Page Header */
.page-header {
    margin-top: 82px;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, rgba(193, 120, 85, 0.12), rgba(139, 157, 131, 0.12));
    text-align: center;
}

.page-title {
    font-size: clamp(40px, 5vw, 56px);
    margin-bottom: 18px;
    color: var(--color-earth);
}

.page-subtitle {
    font-size: 20px;
    color: var(--color-stone);
    max-width: 720px;
    margin: 0 auto;
}

/* Team Section */
.section-team-intro {
    background: var(--color-cream);
    padding: 60px 0;
}

.team-intro-content {
    text-align: center;
}

.section-team {
    background: var(--color-cream);
    padding: 40px 0 90px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.member-image {
    height: 280px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-content {
    padding: 32px 28px;
}

.member-name {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--color-earth);
}

.member-role {
    font-size: 15px;
    color: var(--color-terracotta);
    font-weight: 600;
    margin-bottom: 16px;
}

.member-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-stone);
}

/* Expertise Areas */
.section-expertise-areas {
    background: linear-gradient(180deg, var(--color-cream) 0%, rgba(232, 220, 196, 0.4) 100%);
}

.expertise-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.expertise-area {
    background: var(--color-cream);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.expertise-area:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.area-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(193, 120, 85, 0.15), rgba(139, 157, 131, 0.15));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--color-terracotta);
    margin-bottom: 20px;
}

.area-title {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--color-earth);
}

.area-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-stone);
}

/* Collaboration Section */
.section-collaboration {
    background: var(--color-cream);
}

.collaboration-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.collaboration-intro {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--color-stone);
}

.collaboration-points {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.collab-point {
    display: flex;
    gap: 18px;
}

.collab-point i {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(193, 120, 85, 0.15), rgba(139, 157, 131, 0.15));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-terracotta);
    font-size: 20px;
    flex-shrink: 0;
}

.collab-point h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-earth);
}

.collab-point p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-stone);
}

.collaboration-visual img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* Methodology */
.section-methodology {
    background: var(--color-cream);
}

.methodology-intro {
    text-align: center;
    margin-bottom: 60px;
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.method-step {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: start;
}

.method-step-reverse {
    grid-template-columns: 1fr 200px;
}

.method-step-reverse .step-visual {
    order: 2;
}

.method-step-reverse .step-details {
    order: 1;
}

.step-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

.step-number-large {
    font-size: 120px;
    font-weight: 800;
    color: var(--color-terracotta);
    opacity: 0.15;
    line-height: 1;
}

.step-title-large {
    font-size: 32px;
    margin-bottom: 18px;
    color: var(--color-earth);
}

.step-description-large {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--color-stone);
}

.step-checklist {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}

.step-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--color-stone);
}

.step-checklist i {
    color: var(--color-sage);
    font-size: 16px;
}

/* Competencies */
.section-competencies {
    background: linear-gradient(180deg, rgba(232, 220, 196, 0.4) 0%, var(--color-cream) 100%);
}

.competencies-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 36px;
}

.competency-card {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.competency-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.competency-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(193, 120, 85, 0.15);
}

.competency-header i {
    font-size: 32px;
    color: var(--color-terracotta);
}

.competency-header h3 {
    font-size: 24px;
    color: var(--color-earth);
}

.competency-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--color-stone);
}

.competency-content h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-terracotta);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.competency-content ul {
    list-style: none;
}

.competency-content li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-stone);
}

.competency-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-terracotta);
}

/* Technical Section */
.section-technical {
    background: var(--color-cream);
}

.technical-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.technical-intro {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--color-stone);
}

.technical-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.technical-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-earth);
}

.technical-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-stone);
}

.technical-visual img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* Tools Section */
.section-tools {
    background: linear-gradient(180deg, var(--color-cream) 0%, rgba(232, 220, 196, 0.4) 100%);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.tool-card {
    background: var(--color-cream);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.tool-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.tool-card i {
    font-size: 42px;
    color: var(--color-terracotta);
    margin-bottom: 18px;
}

.tool-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--color-earth);
}

.tool-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-stone);
}

/* Project Detail */
.section-project-detail {
    background: var(--color-cream);
}

.section-alt {
    background: rgba(232, 220, 196, 0.4);
}

.project-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.project-detail-reverse {
    grid-template-columns: 1fr 1fr;
}

.project-detail-reverse .project-detail-image {
    order: 2;
}

.project-detail-reverse .project-detail-content {
    order: 1;
}

.project-detail-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.project-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(193, 120, 85, 0.15);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-terracotta);
    margin-bottom: 20px;
}

.project-detail-title {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--color-earth);
}

.project-specs {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--color-stone);
}

.spec-item i {
    color: var(--color-terracotta);
}

.project-detail-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: var(--color-earth);
}

.project-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--color-stone);
}

.project-solutions {
    list-style: none;
}

.project-solutions li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-stone);
}

.project-solutions li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-sage);
    font-weight: 700;
}

/* Learnings Section */
.section-learnings {
    background: var(--color-cream);
}

.learnings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.learning-card {
    background: var(--color-cream);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.learning-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.learning-card i {
    font-size: 48px;
    color: var(--color-terracotta);
    margin-bottom: 20px;
}

.learning-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--color-earth);
}

.learning-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-stone);
}

/* Projects Intro */
.section-projects-intro {
    background: var(--color-cream);
    padding: 60px 0;
}

.projects-intro-content {
    text-align: center;
}

/* Contact Section */
.section-contact {
    background: var(--color-cream);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--color-earth);
}

.contact-info-text {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 36px;
    color: var(--color-stone);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    gap: 18px;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(193, 120, 85, 0.15), rgba(139, 157, 131, 0.15));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-terracotta);
    font-size: 20px;
    flex-shrink: 0;
}

.method-content h3 {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--color-earth);
    font-weight: 600;
}

.method-content p,
.method-content a {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-stone);
}

.method-content a:hover {
    color: var(--color-terracotta);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-cream);
    padding: 40px 36px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-earth);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(90, 85, 80, 0.2);
    border-radius: var(--radius-md);
    font-family: 'Wix Madefor Text', sans-serif;
    font-size: 15px;
    color: var(--color-earth);
    background: var(--color-cream);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-terracotta);
    box-shadow: 0 0 0 3px rgba(193, 120, 85, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-checkbox {
    display: flex;
    align-items: start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 10px;
    font-size: 14px;
    color: var(--color-stone);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label a {
    color: var(--color-terracotta);
    text-decoration: underline;
}

/* Map Section */
.section-map {
    background: var(--color-cream);
    padding: 0 0 90px;
}

.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Thanks Section */
.section-thanks {
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(193, 120, 85, 0.15), rgba(139, 157, 131, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--color-terracotta);
    margin: 0 auto 32px;
}

.thanks-title {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 20px;
    color: var(--color-earth);
}

.thanks-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 36px;
    color: var(--color-stone);
}

/* Legal Pages */
.section-legal {
    margin-top: 82px;
    padding: 80px 0;
    background: var(--color-cream);
}

.legal-title {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 12px;
    color: var(--color-earth);
}

.legal-updated {
    font-size: 15px;
    color: var(--color-stone);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    margin: 36px 0 16px;
    color: var(--color-earth);
}

.legal-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: var(--color-earth);
}

.legal-content h4 {
    font-size: 17px;
    margin: 18px 0 10px;
    color: var(--color-earth);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: var(--color-stone);
}

.legal-content ul {
    margin: 16px 0 24px 24px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: var(--color-stone);
}

.legal-content a {
    color: var(--color-terracotta);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--color-clay);
}

.legal-content strong {
    font-weight: 600;
    color: var(--color-earth);
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-earth);
    color: var(--color-sand);
    padding: 28px 24px;
    box-shadow: var(--shadow-xl);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.cookie-text a {
    color: var(--color-terracotta);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--color-terracotta);
    color: var(--color-cream);
}

.cookie-btn-accept:hover {
    background: var(--color-clay);
}

.cookie-btn-reject {
    background: transparent;
    color: var(--color-sand);
    border-color: var(--color-sand);
}

.cookie-btn-reject:hover {
    background: rgba(232, 220, 196, 0.1);
}

.cookie-btn-customize {
    background: transparent;
    color: var(--color-sand);
    border-color: transparent;
}

.cookie-btn-customize:hover {
    border-color: var(--color-sand);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .process-layout,
    .expertise-layout,
    .collaboration-layout,
    .technical-layout,
    .contact-layout,
    .project-detail-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .project-detail-reverse .project-detail-image,
    .project-detail-reverse .project-detail-content {
        order: initial;
    }
    
    .method-step,
    .method-step-reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .method-step-reverse .step-visual,
    .method-step-reverse .step-details {
        order: initial;
    }
    
    .step-number-large {
        font-size: 80px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .hero-side {
        padding: 40px 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .services-grid,
    .projects-grid,
    .expertise-areas-grid,
    .learnings-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
    }
    
    .competencies-layout {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container,
    .container-narrow {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 16px;
    }
    
    .side-drawer {
        width: 100%;
    }
    
    .sticky-contact {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
        font-size: 20px;
    }
    
    .hero-comparison {
        margin-top: 70px;
    }
    
    .page-header {
        margin-top: 70px;
        padding: 60px 0 40px;
    }
}