* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.7;
    color: #000;
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 120px;
    padding: 0 20px;
}

/* SVG Icons - Delicate Gold Style */
.icon-svg {
    width: 0px;
    height: 30px;
    fill: none;
    stroke: #b59b63;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 2px 4px rgba(181, 155, 99, 0.15));
    transition: all 0.4s ease;

}

.icon-svg:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 3px 8px rgba(181, 155, 99, 0.25));
}

.small-icon {
    width: 26px;
    height: 26px;
    viewBox: "0 0 24 24";
    fill: none;
    stroke: black;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    xmlns: "http://www.w3.org/2000/svg";
}

.medium-icon {
    width: 28px;
    height: 28px;
    stroke-width: 1.6;
    viewBox: "0 0 24 24";
    fill: none;
    stroke: #b59b63;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    xmlns: "http://www.w3.org/2000/svg";
}

/* Header i nawigacja */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    box-shadow: 0 1px 20px rgba(181, 155, 99, 0.08);
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo img {
    height: 75px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    font-family: 'Cormorant Garamond', serif;
}
.nav-links li.active a {
   color: #b59b63;
   transform: translateY(-1px);
}

.nav-links li.active a::after {
   width: 100%;
}
.nav-links a:hover {
    color: #b59b63;
    transform: translateY(-1px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #b59b63, transparent);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 50%, rgba(181, 155, 99, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse at center, rgba(181, 155, 99, 0.03) 0%, transparent 70%);
    animation: gentleFloat 12s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -30%;
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse at center, rgba(181, 155, 99, 0.02) 0%, transparent 70%);
    animation: gentleFloat 15s ease-in-out infinite reverse;
}
.robot-canvas {
    position: absolute;
    top: -120px;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-color: #FBFBFA;
}
@keyframes gentleFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
        opacity: 0.5;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 770px;
}

.hero h1 {
    max-width: 550px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 1.2;
    animation: gentleSlideUp 1.2s ease-out 0.3s both;
}

.hero .subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #6a6a6a;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    animation: gentleSlideUp 1.2s ease-out 0.6s both;
}

@keyframes gentleSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(135deg, #b59b63 0%, #c9a876 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 400;
    font-size: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(181, 155, 99, 0.2);
    position: relative;
    overflow: hidden;
    animation: gentleSlideUp 1.2s ease-out 0.9s both;
    font-family: 'Cormorant Garamond', serif;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: all 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 155, 99, 0.3);
}
@keyframes gentleFloatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.3;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-100px) rotate(180deg);
        opacity: 0;
    }
}

/* Sekcje */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    font-weight: 400;
    position: relative;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 270px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #b59b63, transparent);
    margin: 20px auto;
    border-radius: 1px;
    animation: gentleExpand 0.8s ease-out;
}

@keyframes gentleExpand {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 60px;
        opacity: 1;
    }
}

/* O nas */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
}

.about-text h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #b59b63;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 500;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(181, 155, 99, 0.1);
    transition: all 0.4s ease;
    background: #fafafa;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(181, 155, 99, 0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
    gap: 10%;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(181, 155, 99, 0.08);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(181, 155, 99, 0.02) 0%, rgba(181, 155, 99, 0.01) 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(181, 155, 99, 0.12);
    border-color: rgba(181, 155, 99, 0.15);
}

.service-icon-container {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    animation: gentleBounce 3s infinite;
}

@keyframes gentleBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-4px);
    }

    60% {
        transform: translateY(-2px);
    }
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 500;
}

.service-card p {
    color: #6a6a6a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-size: 0.95rem;
}

.service-price {
    color: #b59b63;
    font-weight: 500;
    font-size: 2.1rem;
    margin-top: 1rem;
    font-family: 'Cormorant Garamond', serif;
}

/* Technologie */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.tech-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #b59b63;
    background-origin: border-box;
    background-clip: content-box, border-box;
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(181, 155, 99, 0.05), transparent);
    transition: all 0.8s;
}

.tech-item:hover::before {
    left: 100%;
}

.tech-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(181, 155, 99, 0.1);
}

.tech-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.tech-item h4 {
    font-family: 'Cormorant Garamond', serif;
    color: #3a3a3a;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.tech-item p {
    color: #6a6a6a;
    line-height: 1.6;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Zespół */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(181, 155, 99, 0.08);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(181, 155, 99, 0.01) 0%, rgba(181, 155, 99, 0.02) 100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.team-member:hover::before {
    opacity: 1;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(181, 155, 99, 0.12);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b59b63 0%, #c9a876 100%);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(181, 155, 99, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover .member-photo {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(181, 155, 99, 0.25);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.member-name {
    font-family: 'Cormorant Garamond', serif;
    color: #3a3a3a;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.member-role {
    color: #b59b63;
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.member-description {
    color: #6a6a6a;
    line-height: 1.6;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #fafafa 0%, rgba(181, 155, 99, 0.02) 100%);
    padding: 60px 0;
    margin: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #b59b63;
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(181, 155, 99, 0.08);
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 500;
    color: #b59b63;
    margin-bottom: 1.2rem;
    display: block;
}

.stat-label {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* Kontakt */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(181, 155, 99, 0.08);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(250, 250, 250, 0.5);
}

.contact-item:hover {
    background: rgba(181, 155, 99, 0.03);
    transform: translateX(5px);
}

.contact-icon-container {
    margin-right: 1rem;
    width: 30px;
    display: flex;
    justify-content: center;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(181, 155, 99, 0.08);
}

.contact-form h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 500;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #5a5a5a;
    font-weight: 400;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(181, 155, 99, 0.2);
    border-radius: 8px;
    font-size: 0.9rem;
    background: rgba(250, 250, 250, 0.8);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b59b63;
    box-shadow: 0 0 0 3px rgba(181, 155, 99, 0.08);
    background: white;
    transform: translateY(-1px);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #b59b63 0%, #c9a876 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Cormorant Garamond', serif;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: all 0.6s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 155, 99, 0.25);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #f8f8f8 0%, #fafafa 100%);
    color: #5a5a5a;
    text-align: center;
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(181, 155, 99, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    font-family: 'Cormorant Garamond', serif;
    color: #b59b63;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 500;
}

.footer-section p,
.footer-section a {
    color: #6a6a6a;
    text-decoration: none;
    line-height: 1.7;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-section a:hover {
    color: #b59b63;
    transform: translateX(3px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(181, 155, 99, 0.08);
    border-radius: 50%;
    transition: all 0.4s ease;
    border: 1px solid rgba(181, 155, 99, 0.15);
}

.social-links a:hover {
    background: linear-gradient(135deg, #b59b63, #c9a876);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(181, 155, 99, 0.2);
}

.social-links a:hover svg {
    stroke: white;
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #b59b63 0%, #c9a876 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(181, 155, 99, 0.2);
}

.scroll-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 155, 99, 0.3);
}

.scroll-top.visible {
    display: flex;
    animation: gentleSlideUp 0.3s ease;
}

/* Responsywność */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero .subtitle {
        font-size: 1.3rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .services-grid,
    .tech-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Animacje scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Loading animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: all 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(181, 155, 99, 0.2);
    border-top: 2px solid #b59b63;
    border-radius: 50%;
    animation: gentleSpin 1.5s linear infinite;
}

@keyframes gentleSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #fafafa 0%, rgba(181, 155, 99, 0.02) 50%, #ffffff 100%);
    padding: 60px 0;
    margin: 40px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(181, 155, 99, 0.08);
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 15px;
    font-size: 3rem;
    color: #b59b63;
    opacity: 0.2;
    font-family: 'Cormorant Garamond', serif;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(181, 155, 99, 0.12);
}

.testimonial-text {
    color: #5a5a5a;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 1.2rem;
    font-weight: 300;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b59b63, #c9a876);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
}

.author-info h4 {
    font-family: 'Cormorant Garamond', serif;
    color: #3a3a3a;
    font-weight: 500;
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.author-info p {
    color: #6a6a6a;
    font-size: 0.85rem;
    font-weight: 300;
}
